/* ==========================================================================
   Premium Light Theme for Van'ın Enleri (Gold Accent #B66D15)
   ========================================================================== */
:root {
    --gold-primary: #B66D15;
    --gold-light: #d68a2b;
    --gold-dark: #8c520f;
    --bg-light: #fdfdfd;
    --bg-lighter: #ffffff;
    --card-bg: #ffffff;
    --card-border: rgba(182, 109, 21, 0.15);
    --text-main: #212529;
    --text-muted: #6c757d;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Typography & Utilities */
.text-gradient-gold {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.divider-gold {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    border-radius: 2px;
}

.bg-darker {
    background-color: #f4f6f9; /* changed to light grey section bg */
}

.bg-gold {
    background-color: var(--gold-primary) !important;
}

.text-gold {
    color: var(--gold-primary) !important;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-light));
    color: #fff !important;
    border: none;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(182, 109, 21, 0.3);
}

.btn-gold-solid {
    background-color: var(--gold-primary);
    color: #fff !important;
    border: 1px solid var(--gold-light);
    transition: all 0.3s ease;
}
.btn-gold-solid:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(182, 109, 21, 0.2);
}

.btn-outline-gold {
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    background: transparent;
    transition: all 0.3s ease;
}
.btn-outline-gold:hover {
    background: var(--gold-primary);
    color: #fff;
    transform: scale(1.05);
}

/* ===== Navbar ===== */
.custom-navbar {
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    min-height: 72px;
}
.nav-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}
.nav-logo-link {
    border-right: 1px solid rgba(0,0,0,0.08);
    margin-right: 0;
}

/* Sponsor strip */
.sponsor-strip { 
    gap: 10px; 
    max-width: calc(100vw - 180px); /* Hamburger ve logo için yer bırak */
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sponsor-strip::-webkit-scrollbar { display: none; }

.sponsor-chip {
    background: #f8f9fa;
    border: 1px solid rgba(182,109,21,0.15);
    border-radius: 8px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    transition: border-color 0.2s;
    flex-shrink: 0;
}
.sponsor-chip:hover { border-color: var(--gold-primary); }
.sponsor-chip-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.special-logo-link {
    display: block;
    text-decoration: none;
}
.sponsor-chip-img {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* ===== Mobile Navbar Layout (below lg breakpoint) ===== */
@media (max-width: 991.98px) {
    /*
     * Düzen: [Site Logosu] | [Orta: Üst(2×2 grid) / Alt(Kurumsal|İletişim)] | [Hamburger]
     * Logo ve hamburger tam boy uzanır, orta bölüm dikey iki alana bölünür.
     */

    /* Ana satır: nowrap + stretch (tam boy uzatma) */
    .custom-navbar .container-fluid {
        flex-wrap: wrap !important;
        align-items: stretch !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        gap: 0;
    }

    /* ── SOL: Site logosu — tam boy ── */
    .nav-left-area {
        order: 1;
        flex: 0 0 auto;
        display: flex;
        align-items: stretch;
        justify-content: center;
        padding: 4px 6px;
        border-right: 1px solid rgba(0,0,0,0.07);
    }
    .nav-logo-link {
        border-right: none;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0;
    }
    .nav-logo {
        height: 100%;
        max-height: 80px;
        min-height: 44px;
        width: auto;
        object-fit: contain;
    }

    /* ── ORTA: Sponsor container — dikey iki bölüm ── */
    .header-sponsors-container {
        order: 2;
        display: flex !important;
        flex-direction: column;
        flex: 1 1 auto;
        min-width: 0;
        padding: 5px 8px;
        gap: 3px;
        justify-content: center;
    }

    /* ── ÜST BÖLÜM: "ANA SPONSORLAR" etiketi + 2×2 grid ── */
    .sponsor-strip {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 3px !important;
        margin: 0 !important;
        padding: 0 !important;
        width: 100%;
        max-width: none;
        overflow: visible;
    }
    /* "ANA SPONSORLAR" etiketi — tüm mobil boyutlarda göster, grid başlığı olarak */
    .sponsor-strip > .text-muted {
        grid-column: 1 / -1;
        display: block !important;
        font-size: 0.5rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-align: center;
        color: #999 !important;
        padding-bottom: 2px;
        white-space: nowrap;
    }
    .sponsor-chip {
        padding: 3px 5px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .sponsor-chip-img {
        height: 32px;
        max-height: 32px;
        max-width: 90px;
        width: auto;
        object-fit: contain;
        display: block;
        margin: 0;
    }

    /* ── ALT BÖLÜM: Kurumsal (sol) | İletişim (sağ) ── */
    .special-sponsors {
        order: unset !important;
        flex: 0 0 auto !important;
        width: 100%;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 4px 2px 2px !important;
        gap: 4px !important;
        margin: 0 !important;
        border-top: 1px solid rgba(0,0,0,0.08) !important;
        border-left: 0 !important;
        background: transparent !important;
    }
    .special-sponsor-item {
        flex: 1;
        text-align: center;
        padding-left: 0 !important;
    }
    .special-sponsor-item.border-start {
        border-left: 0 !important;
        padding-left: 0 !important;
    }
    .special-label {
        font-size: 0.48rem;
        margin-bottom: 2px;
    }
    .special-logo {
        height: 32px;
        max-width: 90px;
    }

    /* Başvur butonu — bu düzende gizle */
    .mobile-apply-btn {
        display: none !important;
    }

    /* ── SAĞ: Hamburger — tam boy ── */
    .custom-navbar .navbar-toggler {
        order: 3;
        flex: 0 0 auto;
        align-self: stretch;
        margin: 0 !important;
        padding: 0 13px !important;
        border-left: 1px solid rgba(0,0,0,0.07);
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ── Açılan nav linkleri (tam genişlik, 4. sıra) ── */
    .navbar-collapse {
        order: 4;
        flex: 0 0 100%;
    }
}

/* Special Sponsors Header */
.special-label {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    white-space: nowrap;
}
.special-logo {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}


/* Nav pills */
.nav-pill {
    color: var(--text-main) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}
.nav-pill:hover, .nav-pill.active {
    color: var(--gold-primary) !important;
    background: rgba(182,109,21,0.07);
}
.nav-pill.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gold-primary);
    border-radius: 1px;
}

/* Apply button */
.nav-apply-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: #fff !important;
    border: none;
    font-size: 0.88rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(182,109,21,0.25);
}
.nav-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(182,109,21,0.35);
    color: #fff !important;
}


.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}
.sponsor-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(182, 109, 21, 0.2);
    background-color: #fff;
    padding: 2px;
}
.nav-sponsor-logo {
    height: 45px;
    width: 120px;
    object-fit: contain;
}

/* Hero Section */
.hero-section {
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at center, rgba(182, 109, 21, 0.05) 0%, var(--bg-light) 70%);
}
.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gold-primary);
    filter: blur(150px);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 1;
}

.badge-premium {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(182, 109, 21, 0.1);
    border: 1px solid rgba(182, 109, 21, 0.3);
    color: var(--gold-dark);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Cards & Glassmorphism */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.premium-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.premium-card:hover {
    transform: translateY(-10px);
    border-color: rgba(182, 109, 21, 0.3);
    box-shadow: 0 15px 30px rgba(182, 109, 21, 0.1);
}
.img-wrapper {
    overflow: hidden;
}
.premium-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.premium-card:hover .card-img-top {
    transform: scale(1.05);
}

.vote-count-badge {
    display: inline-block;
    background: rgba(182, 109, 21, 0.05);
    color: var(--text-main);
    padding: 6px 15px;
    border-radius: 8px;
    font-weight: 700;
    border: 1px solid rgba(182, 109, 21, 0.1);
}

/* Premium Slider & Hero Enhancements */
.premium-slider-card {
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12) !important;
}

.carousel-control-prev, .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background: rgba(182, 109, 21, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    border-color: var(--gold-light);
}

.carousel-item-content {
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.slider-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    background: rgba(182, 109, 21, 0.9);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 20px rgba(182, 109, 21, 0.3);
}

.carousel-fade .carousel-item {
    transition-duration: 0.8s;
}

/* ===== Mobile Navbar Apply Button ===== */
.mobile-apply-btn {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: #fff !important;
    border: none;
    font-size: 0.76rem;
    padding: 6px 14px !important;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(182,109,21,0.28);
    flex-shrink: 0;
    text-decoration: none;
}
.mobile-apply-btn:hover {
    color: #fff !important;
    opacity: 0.88;
}

/* ===== Ad Overlay ===== */
.ad-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease;
}
.ad-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.88);
}
.ad-overlay-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
}
.ad-overlay-box {
    position: relative;
    max-width: 680px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.ad-timer-box {
    position: absolute;
    top: -14px;
    right: -14px;
    z-index: 2;
    width: 48px;
    height: 48px;
    background: rgba(0,0,0,0.75);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(4px);
}
.ad-img-link { display: block; width: 100%; }
.ad-overlay-img {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.55);
    display: block;
}
.ad-overlay-bottom {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ad-close-btn {
    background: rgba(255,255,255,0.95);
    color: #111;
    border: none;
    border-radius: 50px;
    padding: 10px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: none;
    align-items: center;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ad-close-btn:hover {
    background: #fff;
    transform: scale(1.03);
}
@media (max-width: 575.98px) {
    .ad-overlay-inner {
        padding: 12px;
        align-items: flex-end;
        padding-bottom: 28px;
    }
    .ad-overlay-img {
        border-radius: 10px;
        max-height: 68vh;
    }
    .ad-timer-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -10px;
        right: -10px;
    }
    .ad-close-btn {
        padding: 9px 24px;
        font-size: 0.85rem;
    }
}

/* ===== Mobile Slider & Hero Fixes ===== */
@media (max-width: 575.98px) {
    /* Slider yüksekliği küçült */
    .premium-slider-card {
        height: 280px !important;
    }
    /* Badge küçük */
    .slider-badge {
        top: 10px;
        left: 10px;
        font-size: 0.6rem;
        padding: 4px 10px;
        letter-spacing: 1px;
    }
    /* Carousel içerik metni — Bootstrap'ın %15 sol/sağ boşluğunu sıfırla */
    .carousel-caption {
        left: 0 !important;
        right: 0 !important;
        padding-bottom: 1rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    .carousel-caption p {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0 !important;
        max-width: 100% !important;
    }
    .divider-gold {
        margin-bottom: 0.5rem !important;
    }
    /* Carousel ok butonları küçük */
    .carousel-control-prev,
    .carousel-control-next {
        width: 36px;
        height: 36px;
        margin: 0 6px;
    }
    .carousel-control-prev .bi,
    .carousel-control-next .bi {
        font-size: 1rem !important;
    }
    /* Statik hero başlık */
    .premium-slider-card .display-1 {
        font-size: 2.5rem !important;
        letter-spacing: -1px !important;
        line-height: 1.1 !important;
    }
    /* Statik hero alt metin */
    .premium-slider-card .fs-4 {
        font-size: 0.88rem !important;
        margin-bottom: 1.25rem !important;
    }
    /* Statik hero butonlar */
    .premium-slider-card .btn-lg {
        font-size: 0.82rem !important;
        padding: 0.45rem 1.1rem !important;
    }
}

/* Category Premium Cards */
.cat-premium-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.cat-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(182,109,21,0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: all 0.4s ease;
}
.cat-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: rgba(182,109,21,0.2);
}
.cat-premium-card:hover::before {
    transform: translate(10%, -10%) scale(1.5);
    background: radial-gradient(circle, rgba(182,109,21,0.08) 0%, transparent 70%);
}
.cat-premium-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    transition: color 0.3s;
}
.cat-premium-card:hover .cat-premium-name {
    color: var(--gold-primary);
}
.cat-premium-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d !important;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f8f9fa !important;
    border-color: #e9ecef !important;
}
.cat-premium-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: all 0.3s;
}
.cat-premium-card:hover .cat-premium-arrow {
    background: var(--gold-primary);
    color: #ffffff;
    transform: translateX(4px);
}

/* Category Grid Card */
.category-grid-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.category-grid-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary) !important;
    box-shadow: 0 10px 20px rgba(182, 109, 21, 0.1);
}

/* Accordion Premium */
.glass-accordion .accordion-button {
    background: #ffffff;
    color: var(--text-main);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px !important;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02) !important;
}
.glass-accordion .accordion-button:not(.collapsed) {
    background: rgba(182, 109, 21, 0.05);
    color: var(--gold-dark);
    border-color: rgba(182, 109, 21, 0.2);
}
.glass-accordion .accordion-button::after {
    filter: none;
}
.glass-accordion .accordion-collapse {
    border: 1px solid rgba(0,0,0,0.05);
    border-top: none;
    border-radius: 0 0 12px 12px;
    background: #fafafa;
}

/* ===== Footer ===== */
.premium-footer {
    background: #0f0f0f;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 25px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 12px;
    font-size: 0.92rem;
}

.footer-link:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(182,109,21,0.1);
    border: 1px solid rgba(182,109,21,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    margin-right: 15px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link-item {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.social-link-item:hover {
    background: var(--gold-primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(182, 109, 21, 0.3);
    border-color: var(--gold-primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold-light);
    color: #fff;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .premium-footer {
        padding-top: 60px;
        text-align: center;
    }
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-item {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
}

/* ===== Stats Band ===== */
.stats-band {
    background: linear-gradient(135deg, #1a1a1a, #242424);
    display: flex;
    align-items: center;
}
.stat-item { flex: 1; min-width: 130px; }
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
    letter-spacing: -1px;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* ===== Category Tabs ===== */
.cat-tab-btn {
    border: 1.5px solid rgba(182,109,21,0.25);
    background: #fff;
    color: var(--text-main);
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cat-tab-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}
.cat-tab-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #fff;
    box-shadow: 0 6px 18px rgba(182,109,21,0.3);
}

/* ===== Candidates Panel ===== */
.candidates-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.candidates-panel.active {
    display: block;
    opacity: 1;
}

/* ===== Contestant Card ===== */
.contestant-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
}
.contestant-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(182,109,21,0.12);
    border-color: rgba(182,109,21,0.3);
}
.contestant-img-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%; /* 1:1 oran - aspect-ratio yerine */
}
.contestant-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}
.contestant-card:hover .contestant-img { transform: scale(1.08); }
.contestant-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.contestant-card:hover .contestant-overlay { opacity: 1; }
.contestant-body {
    padding: 12px 14px 14px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contestant-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* Linklerin kart içinde renk almamsı */
a:has(.contestant-card) { color: inherit !important; }
a .contestant-body small { color: var(--text-muted); font-size: 0.76rem; }

/* ===== Category Grid Cards ===== */
.cat-grid-card {
    background: #fff;
    border: 1.5px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 32px 20px 24px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}
.cat-grid-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(182,109,21,0.12);
}
.cat-grid-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(182,109,21,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--gold-primary);
    transition: all 0.3s ease;
}
.cat-grid-card:hover .cat-grid-icon {
    background: var(--gold-primary);
    color: #fff;
}
.cat-grid-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}
.cat-grid-count {
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(182,109,21,0.07);
    padding: 3px 12px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid rgba(182,109,21,0.15);
}

/* ===== CTA Band ===== */
.cta-band {
    min-height: 280px;
}

/* ===== Page Hero (category, contestant pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #242424 100%);
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(182,109,21,0.2), transparent 70%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.page-hero-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(182,109,21,0.2);
    border: 1px solid rgba(182,109,21,0.4);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}
.page-hero-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}
.page-hero-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}
.page-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.2s;
}
.page-breadcrumb .breadcrumb-item a:hover { color: var(--gold-primary); }
.page-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.8); font-size: 0.82rem; }
.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ===== Contestant Profile Page ===== */
.contestant-profile-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.contestant-profile-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    display: block;
}
.profile-cat-badge {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(182,109,21,0.95);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}
.contestant-detail-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 40px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.badge-cat-link {
    display: inline-block;
    background: rgba(182,109,21,0.08);
    color: var(--gold-dark);
    border: 1px solid rgba(182,109,21,0.2);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}
.badge-cat-link:hover {
    background: var(--gold-primary);
    color: #fff;
    border-color: var(--gold-primary);
}
.vote-action-box {
    background: rgba(182,109,21,0.04);
    border: 1.5px solid rgba(182,109,21,0.2);
    border-radius: 16px;
    padding: 24px;
}
.vote-icon-wrap {
    width: 44px; height: 44px;
    background: rgba(182,109,21,0.12);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-primary);
    flex-shrink: 0;
}
.vote-closed-box {
    background: rgba(220,53,69,0.05);
    border: 1.5px solid rgba(220,53,69,0.2);
    border-radius: 12px;
    padding: 16px 20px;
    color: #dc3545;
    font-weight: 600;
    font-size: 0.9rem;
}
