/* =========================================================
   BURCLAR SAYFASI + FİKSTÜR SAYFASI + WIDGET STILLERI
   ========================================================= */

/* ===== BURÇLAR SAYFASI ===== */
.burclar-page { padding: 30px 0 60px; background: #f5f5f5; min-height: 80vh; }
.burclar-page .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Burç Seçim Grid */
.burc-page-title { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; color: #1a1a1a; }
.burc-page-title i { color: var(--primary-color, #e41e26); margin-right: 8px; }

.burc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 30px;
}
.burc-dropdown-mobile { display: none; }

.burc-item {
    display: flex; flex-direction: column; align-items: center;
    padding: 14px 8px; background: #fff; border-radius: 12px;
    text-decoration: none; color: #333; transition: all .25s;
    border: 2px solid transparent; text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.burc-item:hover, .burc-item.active {
    border-color: var(--burc-color);
    box-shadow: 0 4px 16px rgba(0,0,0,.12);
    transform: translateY(-2px);
}
.burc-item.active { background: var(--burc-color); color: #fff; }
.burc-symbol { font-size: 2rem; margin-bottom: 4px; }
.burc-name { font-weight: 700; font-size: .85rem; }
.burc-date-short { font-size: .65rem; opacity: .7; margin-top: 2px; }

/* Burç Header */
.burc-header {
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; border-radius: 16px; padding: 28px;
    margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border-left: 5px solid var(--burc-color);
}
.burc-header__left { display: flex; align-items: center; gap: 20px; }
.burc-header__symbol { font-size: 4rem; }
.burc-header__info h2 { font-size: 1.8rem; font-weight: 800; margin: 0; }
.burc-header__date { font-size: .9rem; color: #666; margin: 4px 0; }
.burc-header__date i { margin-right: 4px; }
.burc-header__motto { font-style: italic; color: var(--burc-color); font-weight: 600; }

.burc-header__meta {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.burc-meta-item {
    background: #f8f8f8; padding: 10px 14px; border-radius: 8px; text-align: center;
}
.meta-label { display: block; font-size: .7rem; color: #999; text-transform: uppercase; letter-spacing: .5px; }
.meta-value { display: block; font-weight: 700; font-size: .9rem; color: #333; margin-top: 2px; }

/* Grafikler */
.burc-charts {
    background: #fff; border-radius: 16px; padding: 24px;
    margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.burc-charts h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.burc-charts h3 i { margin-right: 6px; color: var(--primary-color, #e41e26); }
.burc-charts__grid { display: flex; flex-direction: column; gap: 12px; }
.chart-item { display: flex; align-items: center; gap: 12px; }
.chart-label { width: 70px; font-weight: 600; font-size: .85rem; color: #555; }
.chart-bar { flex: 1; height: 24px; background: #eee; border-radius: 12px; overflow: hidden; }
.chart-bar__fill { height: 100%; border-radius: 12px; transition: width .8s ease; }
.chart-value { width: 45px; text-align: right; font-weight: 700; font-size: .85rem; color: #333; }

/* Tab Sistemi */
.burc-tabs {
    background: #fff; border-radius: 16px;
    margin-bottom: 24px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
    overflow: hidden;
}
.burc-tabs__nav {
    display: flex; background: #f0f0f0; overflow-x: auto;
    scrollbar-width: none;
}
.burc-tabs__nav::-webkit-scrollbar { display: none; }
.burc-tab {
    flex: 1; min-width: 120px; padding: 14px 16px;
    border: none; background: transparent; cursor: pointer;
    font-weight: 600; font-size: .85rem; color: #666;
    transition: all .2s; white-space: nowrap;
    border-bottom: 3px solid transparent;
}
.burc-tab:hover { color: #333; background: rgba(0,0,0,.03); }
.burc-tab.active {
    color: var(--primary-color, #e41e26);
    border-bottom-color: var(--primary-color, #e41e26);
    background: #fff;
}
.burc-tab i { margin-right: 6px; }

.burc-tabs__content { padding: 24px; }
.burc-tab-panel { display: none; }
.burc-tab-panel.active { display: block; animation: fadeTab .3s ease; }

@keyframes fadeTab { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.burc-yorum .yorum-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid #eee;
}
.burc-yorum .yorum-header h3 { font-size: 1.1rem; margin: 0; }
.burc-yorum .yorum-header h3 i { margin-right: 6px; color: var(--primary-color, #e41e26); }
.yorum-date { font-size: .8rem; color: #999; }
.burc-yorum p { line-height: 1.8; color: #444; font-size: .95rem; }

/* Özellikler */
.ozellik-section { margin-bottom: 24px; }
.ozellik-section h4 { font-size: 1rem; margin-bottom: 12px; color: #333; }
.ozellik-section h4 i { margin-right: 6px; }
.ozellik-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ozellik-tag {
    padding: 6px 14px; border: 2px solid; border-radius: 20px;
    font-size: .8rem; font-weight: 600; color: #555;
}
.uyum-burclar { display: flex; flex-wrap: wrap; gap: 10px; }
.uyum-burc {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 16px; border-radius: 10px;
    text-decoration: none; font-weight: 600; font-size: .85rem;
    transition: transform .2s;
}
.uyum-burc:hover { transform: scale(1.05); }
.uyum-burc.uyumlu { background: #e8f5e9; color: #2e7d32; }
.uyum-burc.uyumsuz { background: #ffebee; color: #c62828; }
.uyum-symbol { font-size: 1.3rem; }

/* Gezegen Konumları */
.burc-gezegenler {
    background: #fff; border-radius: 16px; padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.burc-gezegenler h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 16px; }
.burc-gezegenler h3 i { margin-right: 6px; color: var(--primary-color, #e41e26); }

.gezegen-table { border-radius: 10px; overflow: hidden; }
.gezegen-row {
    display: grid; grid-template-columns: 1fr 1fr 80px;
    padding: 10px 16px; border-bottom: 1px solid #f0f0f0;
    font-size: .85rem;
}
.gezegen-row:last-child { border-bottom: none; }
.gezegen-header { background: #f8f8f8; font-weight: 700; color: #555; font-size: .75rem; text-transform: uppercase; }
.gezegen-name i { margin-right: 6px; font-size: .5rem; vertical-align: middle; color: var(--primary-color, #e41e26); }
.gezegen-sign { font-weight: 600; }
.gezegen-degree { text-align: right; color: #666; }


/* ===== FİKSTÜR SAYFASI ===== */
.fikstur-page { padding: 30px 0 60px; background: #f5f5f5; min-height: 80vh; }
.fikstur-page .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.fikstur-page-header h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; color: #1a1a1a; }
.fikstur-page-header h1 i { margin-right: 8px; color: var(--primary-color, #e41e26); }

/* Lig Tabs */
.lig-tabs { margin-bottom: 24px; }
.lig-tabs__scroll {
    display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px;
    scrollbar-width: none;
}
.lig-tabs__scroll::-webkit-scrollbar { display: none; }
.lig-dropdown-mobile { display: none; }

.lig-tab {
    display: flex; flex-direction: column; align-items: center;
    padding: 10px 16px; background: #fff; border-radius: 10px;
    text-decoration: none; color: #555; white-space: nowrap;
    transition: all .2s; border: 2px solid transparent; min-width: 100px;
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.lig-tab:hover { border-color: var(--lig-color); }
.lig-tab.active { background: var(--lig-color); color: #fff; border-color: var(--lig-color); }
.lig-tab i { font-size: 1.2rem; margin-bottom: 4px; }
.lig-tab__name { font-weight: 700; font-size: .75rem; }
.lig-tab__country { font-size: .6rem; opacity: .7; }

/* Aktif Lig Başlık */
.aktif-lig-header {
    display: flex; align-items: center; gap: 12px;
    padding: 16px 20px; background: #fff; border-radius: 12px;
    margin-bottom: 20px; border-left: 4px solid;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.aktif-lig-header i { font-size: 1.5rem; }
.aktif-lig-header h2 { font-size: 1.3rem; font-weight: 800; margin: 0; }
.aktif-lig-country { font-size: .8rem; color: #999; margin-left: auto; }

/* İçerik Tab */
.fikstur-content-tabs {
    display: flex; gap: 0; margin-bottom: 20px;
    background: #fff; border-radius: 10px; overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.fc-tab {
    flex: 1; padding: 14px; border: none; background: transparent;
    cursor: pointer; font-weight: 700; font-size: .9rem; color: #888;
    transition: all .2s; border-bottom: 3px solid transparent;
}
.fc-tab:hover { color: #333; }
.fc-tab.active { color: var(--primary-color, #e41e26); border-bottom-color: var(--primary-color, #e41e26); }
.fc-tab i { margin-right: 6px; }

.fc-panel { display: none; }
.fc-panel.active { display: block; animation: fadeTab .3s ease; }

/* Fikstür Listesi */
.fikstur-date-header {
    display: flex; align-items: center; gap: 8px;
    padding: 10px 16px; background: #333; color: #fff;
    border-radius: 8px; margin: 16px 0 8px; font-size: .8rem; font-weight: 600;
}
.fikstur-date-header:first-child { margin-top: 0; }
.fikstur-date-header i { opacity: .7; }
.hafta-badge {
    margin-left: auto; background: rgba(255,255,255,.2);
    padding: 2px 10px; border-radius: 12px; font-size: .7rem;
}

.mac-card {
    display: flex; align-items: center; gap: 16px;
    background: #fff; padding: 14px 20px; border-radius: 10px;
    margin-bottom: 6px; transition: all .2s;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.mac-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); transform: translateY(-1px); }
.mac-card.bitmis { border-left: 3px solid #4caf50; }

.mac-saat { min-width: 60px; text-align: center; }
.mac-saat span { font-weight: 700; font-size: .85rem; color: #333; }
.mac-bitmis-badge { background: #4caf50; color: #fff; padding: 3px 8px; border-radius: 4px; font-size: .65rem; font-weight: 700; }
.mac-canli-badge { background: #e41e26; color: #fff; padding: 3px 8px; border-radius: 4px; font-size: .65rem; font-weight: 700; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .6; } }

.mac-takimlar { flex: 1; display: flex; align-items: center; justify-content: center; gap: 16px; }
.mac-takim { display: flex; align-items: center; gap: 8px; flex: 1; }
.mac-takim.ev { justify-content: flex-end; text-align: right; }
.mac-takim.deplasman { justify-content: flex-start; }
.takim-adi { font-weight: 600; font-size: .85rem; color: #333; }
.takim-logo { width: 28px; height: 28px; object-fit: contain; }
.takim-logo--placeholder { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 1.2rem; }

.mac-skor-area { text-align: center; min-width: 70px; }
.mac-skor { font-size: 1.1rem; font-weight: 800; color: #1a1a1a; }
.mac-ilkyari { display: block; font-size: .65rem; color: #999; margin-top: 2px; }
.mac-vs { font-size: .8rem; font-weight: 700; color: #ccc; }

/* Puan Durumu Tablo */
.puan-durumu-table {
    background: #fff; border-radius: 12px; overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.pd-header, .pd-row {
    display: grid;
    grid-template-columns: 40px 1fr repeat(4, 36px) repeat(3, 36px) 50px;
    align-items: center; padding: 10px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.pd-header {
    background: #1a1a1a; color: #fff; font-size: .7rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    border-bottom: none;
}
.pd-row:last-child { border-bottom: none; }
.pd-sira { text-align: center; font-weight: 700; font-size: .8rem; }
.pd-takim { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .8rem; }
.pd-logo { width: 22px; height: 22px; object-fit: contain; }
.pd-stat { text-align: center; font-size: .8rem; color: #555; }
.pd-puan { text-align: center; font-weight: 800; font-size: .9rem; color: #1a1a1a; }

.sampiyon-zone { border-left: 3px solid #1565c0; }
.avrupa-zone { border-left: 3px solid #ff8f00; }
.dusme-zone { border-left: 3px solid #c62828; }

.pd-legends { display: flex; gap: 20px; padding: 12px 16px; font-size: .75rem; color: #666; }
.pd-legend { display: flex; align-items: center; gap: 6px; }
.pd-legend.sampiyon span { width: 12px; height: 12px; background: #1565c0; border-radius: 3px; display: inline-block; }
.pd-legend.avrupa span { width: 12px; height: 12px; background: #ff8f00; border-radius: 3px; display: inline-block; }
.pd-legend.dusme span { width: 12px; height: 12px; background: #c62828; border-radius: 3px; display: inline-block; }

.fikstur-empty {
    text-align: center; padding: 60px 20px; color: #999;
    background: #fff; border-radius: 12px;
}
.fikstur-empty i { font-size: 3rem; margin-bottom: 16px; display: block; }


/* ===== FİKSTÜR SLIDER WIDGET ===== */
.fikstur-widget { margin-bottom: 10px; }
.fikstur-slider-wrapper { position: relative; margin-bottom: 16px; }

.fiks-card {
    background: #fff; border-radius: 12px; padding: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06); transition: all .2s;
    height: 100%;
}
.fiks-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.fiks-card--bitmis { border-top: 3px solid #4caf50; }
.fiks-card__date {
    display: flex; justify-content: space-between; align-items: center;
    font-size: .7rem; color: #999; margin-bottom: 12px;
    padding-bottom: 8px; border-bottom: 1px solid #f0f0f0;
}
.fiks-hafta { background: #f0f0f0; padding: 2px 8px; border-radius: 8px; font-size: .6rem; }
.fiks-card__teams { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.fiks-team { display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; }
.fiks-team img { width: 36px; height: 36px; object-fit: contain; }
.fiks-team__placeholder { font-size: 1.5rem; color: #ddd; }
.fiks-team__name { font-size: .7rem; font-weight: 600; color: #333; text-align: center; line-height: 1.2; }
.fiks-score { text-align: center; padding: 0 8px; }
.fiks-score__result { font-size: 1.1rem; font-weight: 800; color: #1a1a1a; }
.fiks-score__time { font-size: .85rem; font-weight: 700; color: var(--primary-color, #e41e26); }

.fikstur-prev, .fikstur-next {
    width: 32px; height: 32px; background: #fff !important;
    border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,.15);
    top: 50%; transform: translateY(-50%);
}
.fikstur-prev::after, .fikstur-next::after { font-size: 14px !important; color: #333 !important; }
.fikstur-prev { left: -16px; }
.fikstur-next { right: -16px; }

/* Puan Mini */
.puan-mini {
    background: #1a1a1a; border-radius: 12px; padding: 14px;
}
.puan-mini__header {
    display: flex; justify-content: space-between; align-items: center;
    color: #fff; font-weight: 700; font-size: .85rem; margin-bottom: 12px;
}
.puan-mini__header a { color: var(--primary-color, #e41e26); text-decoration: none; font-size: .75rem; }
.puan-card {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,.08); padding: 8px 10px;
    border-radius: 8px; white-space: nowrap;
}
.puan-card__pos { font-weight: 800; color: #fff; font-size: .8rem; min-width: 18px; text-align: center; }
.puan-card__logo { width: 20px; height: 20px; object-fit: contain; }
.puan-card__logo-ph { color: #666; font-size: .9rem; }
.puan-card__name { font-size: .75rem; color: #ccc; font-weight: 500; }
.puan-card__pts { font-weight: 800; color: var(--primary-color, #e41e26); font-size: .8rem; margin-left: auto; }


/* ===== PUAN DURUMU SLIDER WIDGET ===== */
.puan-slider-widget { margin-bottom: 10px; }
.pd-slide-card {
    background: #fff; border-radius: 12px; padding: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06); position: relative;
    transition: all .2s; overflow: hidden;
}
.pd-slide-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }
.pd-slide-card.sampiyon { border-top: 3px solid #1565c0; }
.pd-slide-card.avrupa { border-top: 3px solid #ff8f00; }
.pd-slide-card.dusme { border-top: 3px solid #c62828; }
.pd-slide-card__rank {
    position: absolute; top: 8px; right: 10px;
    font-size: 2rem; font-weight: 900; color: rgba(0,0,0,.06);
}
.pd-slide-card__team {
    display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.pd-slide-card__team img { width: 32px; height: 32px; object-fit: contain; }
.pd-slide-card__ph { font-size: 1.5rem; color: #ddd; }
.pd-slide-card__team span { font-weight: 700; font-size: .8rem; color: #333; }
.pd-slide-card__stats { display: flex; gap: 8px; margin-bottom: 8px; }
.pd-mini-stat { text-align: center; flex: 1; }
.pd-mini-stat span { display: block; font-size: .6rem; color: #999; }
.pd-mini-stat strong { font-size: .8rem; color: #333; }
.pd-slide-card__points {
    text-align: center; font-size: 1.4rem; font-weight: 900;
    color: var(--primary-color, #e41e26);
}
.puan-scrollbar { bottom: 0 !important; }


/* ===== BURÇ LİSTESİ WIDGET ===== */
.burc-widget { margin-bottom: 10px; }
.burc-card {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border-radius: 12px; padding: 16px;
    text-decoration: none; color: #333; transition: all .2s;
    box-shadow: 0 2px 8px rgba(0,0,0,.06); height: 100%;
    border-left: 4px solid var(--burc-accent);
}
.burc-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); transform: translateY(-2px); }
.burc-card__symbol { font-size: 2.2rem; min-width: 44px; text-align: center; }
.burc-card__info { flex: 1; min-width: 0; }
.burc-card__info h4 { font-size: .9rem; font-weight: 700; margin: 0 0 2px; }
.burc-card__date { font-size: .65rem; color: #999; }
.burc-card__summary {
    font-size: .75rem; color: #666; margin: 6px 0 0; line-height: 1.4;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.burc-card__arrow { color: var(--burc-accent); font-size: .8rem; opacity: .5; transition: opacity .2s; }
.burc-card:hover .burc-card__arrow { opacity: 1; }


/* ===== FİNANS TİCKER WIDGET ===== */
.finans-ticker-bar {
    display: flex; align-items: stretch;
    background: #1a1a1a; border-radius: 10px;
    overflow: hidden; margin-bottom: 20px;
}
.finans-ticker__label {
    display: flex; align-items: center; gap: 6px;
    background: var(--primary-color, #e41e26); color: #fff;
    padding: 10px 16px; font-weight: 700; font-size: .8rem;
    white-space: nowrap;
}
.finans-ticker__scroll { flex: 1; overflow: hidden; position: relative; }
.finans-ticker__track {
    display: flex; gap: 0;
    animation: tickerScroll 40s linear infinite;
    width: max-content;
}
.finans-ticker__track:hover { animation-play-state: paused; }

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.finans-tick {
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px; border-right: 1px solid rgba(255,255,255,.08);
    white-space: nowrap;
}
.finans-tick__name { color: #aaa; font-size: .7rem; font-weight: 600; }
.finans-tick__value { color: #fff; font-size: .8rem; font-weight: 700; }
.finans-tick__change { font-size: .7rem; font-weight: 600; }
.finans-tick__change.up { color: #4caf50; }
.finans-tick__change.down { color: #ef5350; }
.finans-tick__change i { margin-right: 2px; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .burc-grid { grid-template-columns: repeat(4, 1fr); }
    .pd-header, .pd-row {
        grid-template-columns: 35px 1fr repeat(4, 32px) 45px;
    }
    .pd-hide-mobile { display: none; }
}

@media (max-width: 768px) {
    .burc-grid { display: none; }
    .burc-dropdown-mobile, .lig-dropdown-mobile { display: block; margin-bottom: 20px; }
    .burc-dropdown-mobile select, .lig-dropdown-mobile select {
        width: 100%; padding: 12px 16px; border: 2px solid #ddd;
        border-radius: 10px; font-size: .9rem; font-weight: 600;
        background: #fff; appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: right 14px center;
    }
    .lig-tabs__scroll { display: none; }

    .burc-header { flex-direction: column; gap: 16px; padding: 20px; }
    .burc-header__symbol { font-size: 3rem; }
    .burc-header__meta { grid-template-columns: repeat(4, 1fr); width: 100%; }

    .burc-tab { min-width: 90px; padding: 10px 8px; font-size: .75rem; }

    .mac-card { flex-direction: column; gap: 8px; padding: 12px; }
    .mac-takimlar { width: 100%; }
    .mac-saat { min-width: auto; }
    .takim-adi { font-size: .75rem; }

    .aktif-lig-header { padding: 12px 16px; }
    .aktif-lig-header h2 { font-size: 1.1rem; }

    .fikstur-prev, .fikstur-next { display: none !important; }
}

@media (max-width: 480px) {
    .burc-header__meta { grid-template-columns: repeat(2, 1fr); }
    .burc-tabs__content { padding: 16px; }
    .mac-takim { gap: 4px; }
    .takim-logo { width: 22px; height: 22px; }
    .mac-skor { font-size: .95rem; }
    .pd-takim { font-size: .7rem; gap: 4px; }
    .pd-logo { width: 18px; height: 18px; }
}
