/* =============================================
   HOME PAGE STYLES (Demon Theme)
   ============================================= */

/* Skyscrapers: Sayfa kenarlarÃ„Â±nda reklam alanlarÃ„Â± */
.skyscraper {
    position: fixed;
    top: 150px;
    width: 160px;
    height: 600px;
    z-index: 100;
    pointer-events: auto;
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.ls-left {
    left: 20px;
}

.ls-right {
    right: 20px;
}

@media (max-width: 1550px) {
    .skyscraper {
        display: none !important;
    }
}

.page-wrapper {
    background: transparent !important;
    position: relative;
    min-height: 100vh;
    padding-top: 150px;
    padding-bottom: 60px;
    overflow-x: hidden;
}

.hero-demon {
    background: transparent !important;
    padding: 60px 0;
    text-align: center;
}

.home-main-content {
    background: transparent !important;
    max-width: none;
    margin: 40px auto;
    padding: 0 20px;
}

/* Ana sayfa iÃƒÂ§erik wrapper - skyscraperlarla ÃƒÂ§akÃ„Â±Ã…Å¸mayÃ„Â± engeller */
.home-content-wrap {
    max-width: none;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Hero Logo Container */
.hero-logo-wrap {
    display: flex;
    justify-content: center;
    margin-top: -210px;
    margin-bottom: 0;
    perspective: 1000px;
    /* Animasyon durduruldu - Sabitlendi */
    position: relative;
    z-index: 1;
}



@keyframes hero-swing {

    0%,
    100% {
        transform: translateY(0) rotateX(12deg) rotateY(0deg);
    }

    50% {
        transform: translateY(-15px) rotateX(18deg) rotateY(3deg);
    }
}

.hero-logo-img {
    width: 1220px;
    /* Daha makul bir boyut */
    max-width: none;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(150, 0, 0, 0.2)) saturate(1.5) contrast(1.2);
    border: none !important;
    outline: none !important;
    background: transparent !important;
    mix-blend-mode: screen; 
    -webkit-mask-image: radial-gradient(circle, black 15%, transparent 62%); 
    mask-image: radial-gradient(circle, black 15%, transparent 62%);
    /* KÃ„Â±rmÃ„Â±zÃ„Â± silsilesini bitirir */

    transition: transform 0.3s ease;
    user-select: none;
    pointer-events: none;
    will-change: transform, opacity, filter; /* AkÃ„Â±cÃ„Â±lÃ„Â±Ã„Å¸Ã„Â± artÃ„Â±rÃ„Â±r */
}



/* Hero Section */
.hero-demon {
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    /* ÃƒÅ“st padding tamamen kaldÃ„Â±rÃ„Â±ldÃ„Â± */
}



.hero-content-demon {
    max-width: none;
    z-index: 10;
}

.hero-title-demon {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    margin-top: -40px;
    margin-bottom: 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(to top, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.8));
    /* Efekt daha keskin ve belirgin yapÃ„Â±ldÃ„Â± */
    position: relative;
    z-index: 10;
    pointer-events: none;
}/* Video Fallback Optimization */
.hero-logo-fallback {
    display: none;
    width: 280px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 60, 60, 0.4));
    animation: floatingLogo 3s infinite ease-in-out;
}

body.performance-lite .hero-logo-fallback {
    display: block;
}

@keyframes floatingLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}





.hero-desc-demon {
    font-size: 0.95rem;
    color: #ffffff;
    /* YazÃ„Â± tamamen beyaz yapÃ„Â±ldÃ„Â± */
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    /* Biraz daha okunabilir olmasÃ„Â± iÃƒÂ§in kalÃ„Â±nlÃ„Â±k eklendi */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    /* Siyah zemin ÃƒÂ¼zerinde daha net durmasÃ„Â± iÃƒÂ§in */
}




/* ===== KATEGORÃ„Â° GRID (3x2) ===== */
.home-content-wrap {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    z-index: 10;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.cat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cat-box:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.cat-icon {
    font-size: 2.5rem;
}

.cat-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

/* Kategori Renkleri */
.cat-orange {
    border-bottom: 4px solid #ff8800;
}

.cat-blue {
    border-bottom: 4px solid #00bbff;
}

.cat-green {
    border-bottom: 4px solid #00ff88;
}

.cat-purple {
    border-bottom: 4px solid #cc00ff;
}

.cat-red {
    border-bottom: 4px solid #ff0044;
}

.cat-rainbow {
    border-bottom: 4px solid #ffcc00;
}

.home-main-content {
    max-width: none;
    margin: 60px auto;
    padding: 0 20px;
}

.section-badge {
    font-size: 0.75rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    background: #ff3c3c;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff3c3c;
    animation: pulse 1.5s infinite;
}

/* ========= LÃ„Â°DERLÃ„Â°K TABLOSU (YENÃ„Â° EK Ã…ÂABLON - YAPI) ========= */
.leaderboard-section {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.podium-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 25px;
}

.podium-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background: none !important; /* Pembe ÃƒÂ§izimdeki siyah kutucuklarÃ„Â± kaldÃ„Â±rÃ„Â±yoruz */
    border: none !important;
}

/* 2 - 1 - 3 Dizilimi */
.rank-1 { order: 2; }
.rank-2 { order: 1; }
.rank-3 { order: 3; }

/* Kutu ÃƒÅ“stÃƒÂ¼ndeki Numaralar */
.rank-number {
    font-size: 2.25rem;
    font-weight: 1000;
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-bottom: 35px; /* BÃƒÂ¼yÃƒÂ¼k avatarlarla ÃƒÂ§akÃ„Â±Ã…Å¸masÃ„Â±n diye mesafe aÃƒÂ§Ã„Â±ldÃ„Â± */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.rank-1 .rank-number { color: #f39c12; } /* 1 (Turuncu/SarÃ„Â±) */
.rank-2 .rank-number { color: #3498db; } /* 2 (Mavi) */
.rank-3 .rank-number { color: #95a5a6; } /* 3 (Gri) */

/* Ãƒâ€¡izimdeki Beyaz Kutu (Podium Box) */
.podium-box {
    width: 100%;
    background: rgba(15, 20, 30, 0.9);
    border: 2px solid #ffffff;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: visible; /* Avatarlar dÃ„Â±Ã…Å¸arÃ„Â± taÃ…Å¸abilsin */
    transition: all 0.3s ease;
}

/* UÃƒÂ§uÃ…Å¸an YÃ„Â±ldÃ„Â±z Animasyonu (Inside Boxes) */
.podium-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(1.5px 1.5px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 50px 70px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 80px 40px, #fff, transparent),
        radial-gradient(1px 1px at 110px 90px, #fff, transparent);
    background-size: 130px 130px;
    animation: podiumStarsMove 8s linear infinite;
    opacity: 0.3;
    pointer-events: none;
    border-radius: 20px 20px 0 0; /* YÃ„Â±ldÃ„Â±zlarÃ„Â± kutu sÃ„Â±nÃ„Â±rÃ„Â±nda tutmak iÃƒÂ§in */
}

@keyframes podiumStarsMove {
    from { background-position: 0 0; }
    to { background-position: 0 -130px; }
}

/* 1. Kutu: ELMAS (Efsane Aqua) */
.rank-1 .podium-box { 
    min-height: 220px; 
    border-color: #00ffcc; 
    background: linear-gradient(180deg, rgba(0, 255, 204, 0.12) 0%, rgba(5, 8, 12, 0.98) 100%);
    box-shadow: inset 0 0 30px rgba(0, 255, 204, 0.05);
}

/* 2. Kutu: KOYU GOLD */
.rank-2 .podium-box { 
    min-height: 180px; 
    border-color: #ffd700; 
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.1) 0%, rgba(5, 8, 12, 0.98) 100%);
}

/* 3. Kutu: GÃƒÅ“MÃƒÅ“Ã…Â */
.rank-3 .podium-box { 
    min-height: 150px; 
    border-color: #c0c0c0; 
    background: linear-gradient(180deg, rgba(192, 192, 192, 0.1) 0%, rgba(5, 8, 12, 0.98) 100%);
}

/* Avatar (Dev Emojisi Boyutunda - Tam Ãƒâ€¡izgi ÃƒÅ“stÃƒÂ¼) */
.podium-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    background: #0d1117;
    border: 4px solid rgba(255, 255, 255, 0.5);
    z-index: 25;
    margin-top: -65px; /* Dev boyut iÃƒÂ§in daha fazla yukarÃ„Â± ÃƒÂ§ekildi */
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.7);
    position: relative;
    transition: all 0.3s ease;
}

.rank-1 .podium-avatar { 
    width: 145px; /* Dev Emoji Boyutu */
    height: 145px; 
    margin-top: -85px; 
    border-color: #00ffcc;
    box-shadow: 0 0 35px rgba(0, 255, 204, 0.4);
}

.rank-2 .podium-avatar { width: 120px; height: 120px; margin-top: -75px; border-color: #ffd700; }
.rank-3 .podium-avatar { width: 105px; height: 105px; margin-top: -65px; border-color: #c0c0c0; }

.podium-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Ã„Â°sim ve Puan (GÃƒÂ¶rseldeki Renkler) */
.podium-info {
    text-align: center;
    z-index: 5;
    margin-top: 10px;
}

.podium-name {
    font-size: 1.25rem;
    font-weight: 1000;
    color: #ffffff; /* Beyaz Ã„Â°simler */
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.podium-score {
    font-size: 1.15rem;
    color: #00ffcc; /* Aqua Puanlar */
    font-weight: 1000;
    text-shadow: 0 0 15px rgba(0, 255, 204, 0.4);
}

/* Podyum Kutusu ParlamalarÃ„Â± */
.rank-1 .podium-box { border-color: #00ffcc; box-shadow: 0 0 25px rgba(0, 255, 204, 0.2); }
.rank-2 .podium-box { border-color: #ffd700; box-shadow: 0 0 20px rgba(255, 215, 0, 0.15); }
.rank-3 .podium-box { border-color: #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.15); }


.cat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cat-box:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cat-box .cat-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cat-box:hover .cat-icon {
    transform: scale(1.2);
}

.cat-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

/* New Category Colors */
.cat-orange-main {
    border-left: 4px solid #ff6600;
}

.cat-orange-main .cat-label {
    background: linear-gradient(to top, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cat-orange-main:hover {
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.3);
    border-color: #ff6600;
}

.cat-blue-main {
    border-left: 4px solid #00d2ff;
}

.cat-blue-main:hover {
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.3);
    border-color: #00d2ff;
}

.cat-green-main {
    border-left: 4px solid #00e676;
}

.cat-green-main:hover {
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
    border-color: #00e676;
}

.cat-red-main {
    border-left: 4px solid #ff0000;
}

.cat-red-main:hover {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
    border-color: #ff0000;
}

.cat-white-main {
    border-left: 4px solid #ffffff;
}

.cat-white-main:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.cat-rainbow-main {
    border-left: 4px solid #ff0080;
}

.cat-rainbow-main:hover {
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
    border-color: #ff0080;
}

.category-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-box:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cat-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.cat-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Renk temalarÃ„Â± */
.cat-gold {
    border-left: 3px solid #ffd700;
}

/* KÃ„Â±rmÃ„Â±zÃ„Â±dan Beyaza Gradyan Metin - Sadece Ana Sponsorlar Ã„Â°ÃƒÂ§in */

.cat-gold:hover {
    border-color: #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.cat-purple {
    border-left: 3px solid #9b59b6;
}

.cat-purple:hover {
    border-color: #9b59b6;
    box-shadow: 0 5px 20px rgba(155, 89, 182, 0.15);
}

.cat-pink {
    border-left: 3px solid #e91e63;
}

.cat-pink:hover {
    border-color: #e91e63;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15);
}

.cat-green {
    border-left: 3px solid #00e676;
}

.cat-green:hover {
    border-color: #00e676;
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.15);
}

.cat-blue {
    border-left: 3px solid #2196f3;
}

.cat-blue:hover {
    border-color: #2196f3;
    box-shadow: 0 5px 20px rgba(33, 150, 243, 0.15);
}

.cat-orange {
    border-left: 3px solid #ff9800;
}

.cat-orange:hover {
    border-color: #ff9800;
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.15);
}

/* Reward banner wrap */
.reward-banner-wrap {
    max-width: none;
    margin: 0 auto;
}

.hero-btns-demon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-ghost:hover {
    color: white;
}

.play-icon {
    font-size: 0.8rem;
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.6;
    z-index: 10;
}

.scroll-down .line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--text-secondary), transparent);
}

/* Sponsors Marquee v2 - Top Positioned */
.sponsors-marquee-v2 {
    width: 100%;
    background: transparent; /* Saydam YapÃ„Â±ldÃ„Â± */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 0;
    overflow: hidden;
    z-index: 100;
}

.marquee-content-v2 {
    display: flex;
    gap: 100px;
    width: max-content;
    animation: marquee-v2 300s linear infinite;
}

.marquee-content-v2:hover {
    animation-play-state: paused;
}

.sponsor-logo-v2 {
    height: 40px;
    filter: grayscale(1) opacity(0.6);
    transition: var(--transition);
    object-fit: contain;
}

.sponsor-logo-v2:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

@keyframes marquee-v2 {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =============================================
   ADVERTISEMENT SYSTEM (TOD V2)
   ============================================= */

/* Skyscrapers */
.skyscraper {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 700px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 12px;
    z-index: 1000;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skyscraper::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(180deg, transparent, var(--glow-color, #ff0000), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.6;
    animation: glow-slide 4s linear infinite;
}

.ls-left {
    left: 40px;
    --glow-color: #ff3c3c;
}

.ls-right {
    right: 40px;
    --glow-color: #ff3c3c;
}

.action-card {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 10px 22px;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-right: none; /* Ãƒâ€¡izgi Silindi */
    position: relative;
    overflow: hidden;
}

.action-card:last-child {
    border-right: none;
}

.action-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.action-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.action-text-col {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.action-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.action-desc {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}

/* GÃƒâ€“RSELDEKÃ„Â° Ãƒâ€“ZEL BUTONLAR */
.action-btn {
    background: rgba(0, 120, 120, 0.6);
    border: 1px solid rgba(0, 255, 200, 0.4);
    color: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.1);
    white-space: nowrap;
}

.action-card:hover .action-btn {
    background: rgba(0, 200, 200, 0.6);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
    transform: scale(1.05);
}

.skyscraper-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.skyscraper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Prevents distortion */
    background: rgba(0, 0, 0, 0.2);
    /* Fills empty space if image ratio differs */
    transition: opacity 1s ease-in-out, transform 0.3s ease;
    opacity: 0;
    z-index: 1;
}

.skyscraper img.active {
    opacity: 1;
    z-index: 2;
}

.skyscraper:hover img.active {
    transform: scale(1.05);
}

/* Sticky Ad Bar (Premium UI) */
.sticky-ad-bar {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    z-index: 2000;
    padding: 10px;
    display: flex;
    justify-content: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.05);
    animation: sticky-slide-up 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-ad-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.sticky-ad-inner {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-ad-inner a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sticky-ad-inner img {
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sticky-ad-inner a:hover img {
    transform: translateY(-3px) scale(1.02);
}

.close-sticky {
    position: absolute;
    right: -5px;
    top: -5px;
    background: #ff0000;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.2s ease, background 0.2s ease;
    z-index: 2001;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.close-sticky:hover {
    transform: scale(1.1) rotate(90deg);
    background: #cc0000;
}

@keyframes sticky-slide-up {
    from {
        transform: translate(-50%, 150%);
        opacity: 0;
    }

    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .skyscraper {
        display: none;
    }
}

@media (max-width: 768px) {
    .sticky-ad-inner {
        height: 60px;
    }
}

/* Popup Modal (Premium UI) */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.4s ease;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.05);
    animation: zoomIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary), transparent, #ffd700);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
}

.popup-content img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 16px;
    display: block;
    object-fit: contain;
}

.close-popup {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    z-index: 10;
    transition: transform 0.3s ease;
}

.close-popup:hover {
    transform: scale(1.1) rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* =============================================
   REWARD BANNER (Premium Dark UI)
   ============================================= */
.reward-banner-wrap {
    padding: 0 20px;
    max-width: none;
    margin: 50px auto 40px;
    z-index: 100;
}

.reward-banner {

    background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(25, 10, 10, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    min-height: 280px;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ MINI BONUS GRID Ã¢â€â‚¬Ã¢â€â‚¬ */
.mini-bonus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    max-width: 1220px;
}

.mini-card-shell {
    position: relative;
    border-radius: 12px;
    padding: 1.5px;
    background: #111;
    overflow: hidden;
}

.mini-card-shell::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(transparent 0deg,
            transparent 320deg,
            #550000 325deg,
            #cc2200 335deg,
            #ff4400 342deg,
            #ffaa00 347deg,
            #ffffff 350deg,
            #ffaa00 353deg,
            #ff4400 357deg,
            transparent 360deg);
    animation: led-spin 4s linear infinite;
    z-index: 0;
}


.mini-card-shell::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    background: rgb(12, 15, 20);
    border-radius: 10.5px;
    z-index: 1;
}

.mini-card {
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    width: 100%;
    padding: 10px;
    text-decoration: none;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: transform 0.28s ease;
}

.mini-card:hover {
    transform: translateY(-4px);
}

.mini-card .mini-fire-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 10px;
    background: linear-gradient(to top, rgba(255, 30, 0, 0.28) 0%, rgba(160, 0, 0, 0.10) 38%, transparent 68%);
    animation: inner-fire 8s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ AD PLACEHOLDER STYLE Ã¢â€â‚¬Ã¢â€â‚¬ */
.ad-placeholder-content {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ad-logo-area {
    width: 45px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 12px;
}

.ad-logo-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
    opacity: 1;
}


.ad-text-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.ad-text-area .ad-title {
    display: flex;
    flex-direction: column;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.ad-text-area .ad-title .line-1 {
    background: linear-gradient(to bottom, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.3px rgba(212, 175, 55, 0.4);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.ad-text-area .ad-title .line-2 {
    background: linear-gradient(to bottom, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.3px rgba(212, 175, 55, 0.4);
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.3));
}

.ad-text-area .ad-subtitle {
    background: linear-gradient(to bottom, #ff0000 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 0.2px rgba(212, 175, 55, 0.3);
    font-size: 0.8rem;
    font-weight: 800;
    margin-top: 4px;
    letter-spacing: 0.5px;
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.2));
}









.mini-card .mini-logo-img {
    max-width: 100%;
    max-height: 38px;
    object-fit: contain;
    filter: brightness(0.9) saturate(0.9);
    transition: all 0.28s ease;
    z-index: 1;
}

.mini-card:hover .mini-logo-img {
    filter: brightness(1.2) saturate(1.1);
    transform: scale(1.05);
}

@keyframes led-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes inner-fire {

    0%,
    100% {
        opacity: 0.35;
        background: linear-gradient(to top, rgba(255, 30, 0, 0.3) 0%, rgba(180, 0, 0, 0.08) 40%, transparent 70%);
    }

    50% {
        opacity: 0.5;
        background: linear-gradient(to top, rgba(255, 50, 0, 0.38) 0%, rgba(200, 10, 0, 0.1) 45%, transparent 72%);
    }
}

@media (max-width: 850px) {
    .mini-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 10px;
    }

    .mini-card {
        min-height: 90px;
    }

    .mini-logo-img {
        max-height: 30px;
    }
}

/* ------ YENÃ„Â° EKLENEN ANA SAYFA DÃƒÅ“ZENLEMELERÃ„Â° (STORY & LEADERBOARD) ------ */

/* 1) Ã„Â°Ãƒâ€¡ERÃ„Â°KLERÃ„Â° GERÃƒâ€¡EK BOYUTUNA Ãƒâ€¡EKME */
.hero-logo-wrap {
    position: relative;
    z-index: 1; /* Video en arkada kalsÃ„Â±n */
}
.hero-logo-img {
    width: 1220px !important;
    max-width: none !important;
    margin: 0 auto;
    display: block;
    pointer-events: none; /* ÃƒÅ“stteki butonlara tÃ„Â±klamayÃ„Â± engellemesin */
}

/* Featured Logo Positions */
.hero-featured-logo-left-top,
.hero-featured-logo,
.hero-featured-logo-right-top,
.hero-featured-logo-right-bottom {
    position: absolute;
    z-index: 2000;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-featured-logo-left-top {
    left: 20px;
    top: 8%;
    width: 280px;
    animation: floatingLogo 3.5s ease-in-out infinite;
}

.hero-featured-logo {
    left: 20px;
    top: 18%; /* Biraz yukarı çekildi */
    width: 320px;
    animation: floatingLogo 3s ease-in-out infinite;
}

.hero-featured-logo-right-top {
    right: 20px;
    top: 8%;
    width: 280px;
    animation: floatingLogo 3.2s ease-in-out infinite;
}

.hero-featured-logo-right-bottom {
    right: 20px;
    top: 18%; /* Biraz yukarı çekildi */
    width: 320px;
    animation: floatingLogo 3.8s ease-in-out infinite;
}

.hero-featured-logo-left-top a,
.hero-featured-logo a,
.hero-featured-logo-right-top a,
.hero-featured-logo-right-bottom a {
    display: block;
}

.hero-featured-logo-left-top img,
.hero-featured-logo img,
.hero-featured-logo-right-top img,
.hero-featured-logo-right-bottom img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.2));
    transition: all 0.4s ease;
}

.hero-featured-logo-left-top:hover img,
.hero-featured-logo:hover img,
.hero-featured-logo-right-top:hover img,
.hero-featured-logo-right-bottom:hover img {
    transform: scale(1.08);
    filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.4));
}

@keyframes floatingLogo {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(5px); }
}

@media (max-width: 1550px) {
    .hero-featured-logo {
        left: -80px;
        width: 260px;
    }
}

@media (max-width: 1350px) {
    .hero-featured-logo {
        display: none;
    }
}
.hero-content-demon {
    padding-top: 20px;
}
.category-grid {
    gap: 10px;
}
.cat-box {
    padding: 10px;
}
.cat-icon {
    font-size: 1.8rem;
}

/* STORY ALANI (Ana TanÃ„Â±m AÃ…Å¸aÃ„Å¸Ã„Â±daki Override ile yÃƒÂ¶netiliyor) */
.home-stories-container {
    overflow: hidden;
}

.home-stories-track {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    justify-content: center;
}

/* Scrollbar Gizleme */
.home-stories-track::-webkit-scrollbar {
    display: none;
}
.home-stories-track {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.home-story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}

.home-story-item:hover {
    transform: translateY(-3px) scale(1.05);
}

.story-circle-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-circle-inner {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #000;
}

.story-circle-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70px;
    text-align: center;
}

/* STORY MODAL (PREMIUM BLACK DESIGN) */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeInModal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

.story-modal-content {
    background: #000;
    width: 95%;
    max-width: 480px;
    height: 650px;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 60, 60, 0.05);
    transform: scale(0.92) translateY(20px);
    animation: scaleInPremium 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

@keyframes scaleInPremium {
    to { transform: scale(1) translateY(0); }
}

.story-header-bar {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, #000 0%, transparent 100%);
    z-index: 10;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.story-user-info span {
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
}

.close-story {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.close-story:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
    transform: rotate(90deg);
}

.story-body {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #000;
    padding: 60px 0 0 0; /* ÃƒÅ“stte baÃ…Å¸lÃ„Â±k alanÃ„Â± iÃƒÂ§in boÃ…Å¸luk */
}

#storyModalImg {
    flex: 1;
    width: 100%;
    max-height: calc(100% - 70px); /* Butona yer kalmasÃ„Â± iÃƒÂ§in */
    object-fit: contain;
}

.story-footer-btn {
    width: 100%;
    height: 70px;
    padding: 0;
    margin-top: -2px; /* Tam yapÃ„Â±Ã…Å¸ma iÃƒÂ§in */
}

.btn-story-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #081c19 !important;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #fff !important;
    text-decoration: none;
    border-radius: 0 0 32px 32px; /* Sadece alt kÃƒÂ¶Ã…Å¸eler yuvarlak */
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 1.2px;
    transition: background 0.3s;
    text-transform: uppercase;
}

.btn-story-preview:hover {
    background: #0c2a26 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.15);
    border-color: rgba(0, 255, 204, 0.3);
}

.story-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.story-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.story-nav.prev { left: 40px; }
.story-nav.next { right: 40px; }

@media (max-width: 1400px) {
    .story-nav.prev { left: 10px; }
    .story-nav.next { right: 10px; }
}

@media (max-width: 600px) {
    .story-modal {
        padding: 20px !important;
    }
    .story-modal-content {
        width: 100% !important;
        height: auto !important;
        max-height: 85vh !important;
        border-radius: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        position: relative !important;
        overflow: hidden !important;
    }
    .story-header-bar {
        position: relative !important;
        background: #000 !important;
        padding: 15px 20px !important;
        flex-shrink: 0 !important;
    }
    .story-body {
        padding: 0 !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        overflow: hidden !important;
    }
    #storyModalImg {
        width: 100% !important;
        height: auto !important;
        max-height: calc(85vh - 120px) !important; /* Header + Footer payı */
        object-fit: contain !important;
        flex: 1 !important;
    }
    .story-footer-btn {
        height: 60px !important;
        flex-shrink: 0 !important;
    }
    .btn-story-preview {
        border-radius: 0 !important;
        font-size: 15px !important;
    }
    .story-nav {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
        background: rgba(0, 0, 0, 0.4) !important;
        backdrop-filter: blur(5px) !important;
        z-index: 100005 !important;
    }
    .story-nav.prev { left: 5px !important; }
    .story-nav.next { right: 5px !important; }
    .close-story {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
}


/* 3) LÃ„Â°DERLÃ„Â°K TABLOSU (YAN YANA GÃƒâ€“STERÃ„Â°Ã…ÂLÃ„Â°) */
.leaderboard-section {
    max-width: 1220px; /* Video geniÃ…Å¸liÃ„Å¸iyle eÃ…Å¸lendi */
    margin: -10px auto 60px !important; /* YukarÃ„Â± ÃƒÂ§ekildi */
    padding: 20px;
    background: transparent;
    border: none;
    position: relative;
    z-index: 5;
}

.leaderboard-title {
    text-align: center;
    color: #ffd700; /* AltÃ„Â±n rengi yapÃ„Â±ldÃ„Â± */
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.leaderboard-podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    height: 220px;
    flex-wrap: nowrap; /* Yan yana kalmasÃ„Â±nÃ„Â± garantiler */
}

/* Ãƒâ€“NEMLÃ„Â°: Daha ÃƒÂ¶nce flex uygulanmÃ„Â±Ã…Å¸sa ezmek iÃƒÂ§in .podium-item'i detaylÃ„Â± yaz */
div.podium-item {
    background: rgba(255, 255, 255, 0.03); /* Daha saydam */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px 15px 0 0;
    width: 130px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 15px 10px !important;
    position: relative;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    margin: 0 !important;
}

div.podium-item.first {
    height: 190px !important;
    width: 150px !important;
    background: linear-gradient(to top, rgba(0, 229, 204, 0.1), rgba(255, 255, 255, 0.03));
    border-color: rgba(0, 229, 204, 0.3);
    z-index: 2;
    transform: scale(1.05) !important;
}
div.podium-item.second {
    height: 150px !important;
}
div.podium-item.third {
    height: 130px !important;
}

.podium-avatar {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    margin: -40px auto 10px !important; /* Podium'un ÃƒÂ¼stÃƒÂ¼nden dÃ„Â±Ã…Å¸arÃ„Â± taÃ…Å¸masÃ„Â± iÃƒÂ§in */
    border: 3px solid #333;
    overflow: hidden;
    background: #000;
}

.first .podium-avatar {
    width: 65px !important;
    height: 65px !important;
    margin-top: -50px !important;
    border-color: #ffd700 !important;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.second .podium-avatar {
    border-color: #c0c0c0 !important;
}

.third .podium-avatar {
    border-color: #cd7f32 !important;
}

.podium-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podium-rank {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 1.2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
}

.first .podium-rank { color: #ffd700; }
.second .podium-rank { color: #c0c0c0; }
.third .podium-rank { color: #cd7f32; }

.podium-pedestal {
    margin-top: auto;
    text-align: center;
}

.podium-name {
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100px;
}

.podium-earned {
    color: #ff3c3c;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 5px;
}

.first .podium-name {
    font-size: 1rem;
}

/* Mobilde podyum boyutlarÃ„Â± biraz daha kÃƒÂ¼ÃƒÂ§ÃƒÂ¼k olsun */
@media (max-width: 600px) {
    .leaderboard-podium {
        gap: 5px;
        height: 180px;
    }
    div.podium-item {
        width: 30% !important;
    }
    div.podium-item.first {
        width: 38% !important;
        height: 160px !important;
    }
    div.podium-item.second {
        height: 130px !important;
    }
    div.podium-item.third {
        height: 110px !important;
    }
    .podium-avatar {
        width: 40px !important;
        height: 40px !important;
        margin-top: -30px !important;
    }
    .first .podium-avatar {
        width: 50px !important;
        height: 50px !important;
        margin-top: -35px !important;
    }
}

/* STORY ALANI TAM GENÃ„Â°Ã…ÂLÃ„Â°K (USER Ã„Â°STEÃ„ÂÃ„Â° ÃƒÅ“ZERÃ„Â°NE GÃƒÅ“NCELLEME) */
.home-stories-container {
    width: 100vw !important;
    max-width: none !important;
    margin: -130px 0 30px !important; /* Videonun ÃƒÅ“zerine TaÃ…Å¸Ã„Â±ndÃ„Â± */
    position: relative !important;
    left: 50% !important;
    margin-left: -50vw !important;
    z-index: 2000 !important; /* Videonun ÃƒÂ¶nÃƒÂ¼ne ÃƒÂ§Ã„Â±kar */
    overflow: visible !important;
}

.home-stories-track {
    justify-content: flex-start !important;
    padding: 0 20px 10px 20px !important;
}

/* ACTION CARDS EKSÃ„Â°K STÃ„Â°LLERÃ„Â° */
.action-cards-section {
    padding: 0;
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin: -60px 0 40px !important;
    z-index: 2005 !important; /* Videonun ÃƒÂ¶nÃƒÂ¼ne ÃƒÂ§Ã„Â±kar */
}
.action-cards-row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
    width: 100%;
    /* DAHA OPAK VE Ãƒâ€¡Ã„Â°ZGÃ„Â°SÃ„Â°Z (VÃ„Â°DEO KENARINI KAPATMAK Ã„Â°Ãƒâ€¡Ã„Â°N) */
    background: linear-gradient(90deg, rgba(10, 10, 12, 0.95) 0%, rgba(20, 15, 15, 0.9) 50%, rgba(10, 10, 12, 0.95) 100%);
    backdrop-filter: blur(40px);
    border: none;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5); /* ÃƒÅ“stteki video kenarÃ„Â±nÃ„Â± gÃƒÂ¶lgeyle de yumuÃ…Å¸atalÃ„Â±m */
}

/* UÃƒÂ§uÃ…Å¸an YÃ„Â±ldÃ„Â±zlar Animasyonu */
.action-cards-row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(1.5px 1.5px at 20px 30px, #fff, transparent),
        radial-gradient(1px 1px at 50px 70px, #fff, transparent),
        radial-gradient(2px 2px at 80px 40px, #fff, transparent),
        radial-gradient(1.5px 1.5px at 120px 90px, #fff, transparent),
        radial-gradient(1px 1px at 150px 10px, #fff, transparent);
    background-size: 200px 200px;
    animation: barStarsFlow 12s linear infinite;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

@keyframes barStarsFlow {
    from { background-position: 0 0; }
    to { background-position: 200px 200px; }
}
.action-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 30px 40px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 15px !important;
    flex: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1; /* YÃ„Â±ldÃ„Â±zlarÃ„Â±n ÃƒÂ¼stÃƒÂ¼nde kalsÃ„Â±n */
}

/* Kartlar ArasÃ„Â± AyÃ„Â±rÃ„Â±cÃ„Â± Ãƒâ€¡izgi */
.action-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 60, 60, 0.5) !important;
}
.action-icon {
    font-size: 2.5rem !important;
}
.action-text-col {
    display: flex;
    flex-direction: column;
}
.action-title {
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 900 !important;
    font-size: 1.4rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* Hafif beyaz parlama */
}
.action-desc {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
}
.action-btn {
    margin-left: auto !important;
    background: linear-gradient(135deg, #ff3c3c 0%, #a00000 100%) !important; 
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 10px !important;
    font-weight: 800 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 60, 60, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease;
}
.action-card:hover .action-btn {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 60, 60, 0.5);
    background: linear-gradient(135deg, #ff5050 0%, #c00000 100%) !important;
}

/* EN SON KAZANANLAR TICKER EKSÃ„Â°K STÃ„Â°LLERÃ„Â° */
.winners-ticker-section {
    background: transparent !important;
    padding: 0 !important;
    margin: -55px 0 60px !important; /* ÃƒÅ“st kutuya sÃ„Â±fÃ„Â±rlandÃ„Â± */
    width: 100vw !important;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: none !important;
}

.winners-ticker-header {
    text-align: left !important;
    padding: 0 40px !important;
    margin-top: -10px !important;
    margin-bottom: 20px !important;
}
.ticker-title {
    color: #ffd700 !important;
    font-weight: 800 !important;
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
}
.winners-ticker-wrapper {
    overflow-x: auto !important; /* KaydÃ„Â±rÃ„Â±labilir yapÃ„Â±ldÃ„Â± */
    width: 100% !important;
    position: relative;
    padding: 0 20px 15px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox iÃƒÂ§in */
    -ms-overflow-style: none; /* IE/Edge iÃƒÂ§in */
}

/* Chrome/Safari iÃƒÂ§in Scrollbar Gizleme */
.winners-ticker-section {
    position: relative;
    padding: 0 10px;
    margin-bottom: 25px;
}

.ticker-scroll-btn {
    position: absolute;
    top: 70%; /* KartlarÃ„Â±n ÃƒÂ¼zerinden aÃ…Å¸aÃ„Å¸Ã„Â± kaydÃ„Â±rÃ„Â±ldÃ„Â± */
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: rgba(0, 255, 204, 0.05);
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 50%;
    color: #00ffcc;
    font-size: 16px;
    display: none; /* JS tarafÃ„Â±ndan flex yapÃ„Â±lacak */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.1);
}

.ticker-scroll-btn.left { left: 10px; }
.ticker-scroll-btn.right { 
    right: 10px; 
    display: flex; /* SaÃ„Å¸ ok her zaman baÃ…Å¸ta gÃƒÂ¶zÃƒÂ¼ksÃƒÂ¼n */
}

.ticker-scroll-btn:hover {
    background: rgba(0, 255, 204, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.winners-ticker-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    cursor: grab;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px; /* KaydÃ„Â±rma hissi iÃƒÂ§in pay */
}

.winners-ticker-wrapper:active {
    cursor: grabbing;
}

.winners-ticker-wrapper::-webkit-scrollbar {
    display: none;
}

.winners-ticker-track {
    display: flex !important;
    gap: 15px !important;
    width: max-content;
    padding: 10px 0 !important;
}

.winners-ticker-track .win-card {
    scroll-snap-align: start; /* KaydÃ„Â±rÃ„Â±nca karta tam otursun */
}
@keyframes scrollTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.win-card {
    background: rgba(20, 20, 25, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 10px !important;
    padding: 8px 12px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    min-width: 210px !important; /* Daha kompakt */
    transition: all 0.3s ease;
}

.win-card:hover {
    background: rgba(30, 30, 40, 0.8) !important;
    transform: translateY(-2px);
    border-color: rgba(0, 255, 204, 0.2) !important;
}
.win-game-icon img {
    width: 38px !important;
    height: 38px !important;
    border-radius: 6px !important;
    object-fit: cover;
    filter: drop-shadow(0 0 5px rgba(0, 255, 204, 0.2));
}
.win-info {
    display: flex;
    flex-direction: column;
}
.win-avatar {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background: #333 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 8px !important;
    font-weight: bold !important;
}
.win-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
.win-user-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.win-username {
    color: #999 !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
}
.win-game-name {
    color: #fff !important;
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    margin: 1px 0 !important;
}
.win-amount-row {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.win-value {
    color: #00ffcc !important;
    font-weight: 800 !important;
    font-size: 0.8rem !important;
}
.win-multiplier {
    color: rgba(255, 255, 255, 0.35) !important;
    font-size: 0.72rem !important;
    font-weight: 400 !important;
}


/* =============================================
   ARKA PLAN DEKORASYON LOGOLARI (OYUNLAR LOBÃ„Â° Ã„Â°LE EÃ…ÂLENDÃ„Â°)
   ============================================= */
.bg-logos-wrapper {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(15, 20, 30, 0.4) 0%, #030406 100%);
}

.bg-logo {
    position: absolute;
    background: url('/uploads/1772306275864-150194586.png') center/contain no-repeat;
    opacity: 0.15;
}

.logo-center {
    width: 900px;
    height: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.22; /* Daha fazla karartÃ„Â±ldÃ„Â± */
    filter: brightness(0.4) drop-shadow(0 0 100px rgba(255, 60, 60, 0.02));
}

.logo-left {
    width: 700px;
    height: 700px;
    top: 30%;
    left: -100px; /* Biraz daha iÃƒÂ§eri ÃƒÂ§ekildi */
    transform: rotate(-15deg);
    filter: blur(25px) brightness(1.5);
    opacity: 0.22; /* GÃƒÂ¶rÃƒÂ¼nÃƒÂ¼rlÃƒÂ¼k artÃ„Â±rÃ„Â±ldÃ„Â± */
}

.logo-right {
    width: 750px;
    height: 750px;
    bottom: 15%;
    right: -120px; /* Biraz daha iÃƒÂ§eri ÃƒÂ§ekildi */
    transform: rotate(15deg);
    filter: blur(30px) brightness(1.5);
    opacity: 0.22; /* GÃƒÂ¶rÃƒÂ¼nÃƒÂ¼rlÃƒÂ¼k artÃ„Â±rÃ„Â±ldÃ„Â± */
}

.logo-pink-left {
    width: 1220px;
    height: 450px;
    top: 45%;
    left: 2%;
    transform: rotate(10deg);
    filter: blur(15px) brightness(0.8);
    opacity: 0.22;
}

.logo-pink-right {
    right: 5%;
    opacity: 0.15;
    filter: blur(90px) hue-rotate(340deg);
}

/* =============================================
   LÃ„Â°DERLÃ„Â°K TABLOSU Ãƒâ€“ZEL BAÃ…ÂLIK
   ============================================= */
.leaderboard-title-wrapper {
    text-align: center;
    margin: -35px 0 20px;
    padding: 0 20px;
    z-index: 1000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px; 
}

.leaderboard-cup-img {
    width: 140px;
    height: auto;
    filter: none;
    margin-right: -45px;
    animation: cupFloat 4s ease-in-out infinite;
    flex-shrink: 0;
    z-index: 10;
}

@keyframes cupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.leaderboard-title-main {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* YazÃ„Â±yÃ„Â± saÃ„Å¸a (TABLOSU tarafÃ„Â±na) ÃƒÂ§eker */
    position: relative;
    max-width: 100%;
}

/* SORU METNÃ„Â° STÃ„Â°LÃ„Â° */
.leaderboard-info-container {
    position: relative;
    margin-top: 5px;
    margin-right: 15px; /* Tam TABLOSU yazÃ„Â±sÃ„Â±nÃ„Â±n bitiÃ…Å¸ine hizalandÃ„Â± */
}

.leaderboard-info-trigger {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 2px;
}

.leaderboard-info-trigger:hover {
    color: #fff;
    border-color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* KOYU KIRMIZI PREMÃ„Â°UM INFO BOX */
.leaderboard-info-box {
    position: absolute;
    top: -20px; /* BaÃ…Å¸lÃ„Â±kla aynÃ„Â± yÃƒÂ¼kseklik seviyelerine ÃƒÂ§ekildi */
    left: 105%; /* Tetikleyicinin (ve baÃ…Å¸lÃ„Â±Ã„Å¸Ã„Â±n) saÃ„Å¸Ã„Â±na atÃ„Â±ldÃ„Â± */
    width: 300px;
    background: linear-gradient(135deg, #4b0000 0%, #1a0000 100%);
    border: 1px solid rgba(255, 0, 0, 0.4);
    border-radius: 12px;
    padding: 15px;
    color: #ffdada;
    font-size: 0.85rem;
    line-height: 1.5;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(255, 0, 0, 0.25);
    display: none; /* JS ile aÃƒÂ§Ã„Â±lacak */
    backdrop-filter: blur(12px);
    overflow: hidden;
    white-space: normal; /* Metin sarmalÃ„Â± iÃƒÂ§in */
}

.leaderboard-info-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, #fff 0.5px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
    animation: infoStars 20s linear infinite;
}

@keyframes infoStars {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.leaderboard-info-box p {
    position: relative;
    z-index: 2;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.leaderboard-custom-title {
    font-size: 3.2rem; /* Hafif kÃƒÂ¼ÃƒÂ§ÃƒÂ¼ltÃƒÂ¼ldÃƒÂ¼ */
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    position: relative;
    display: inline-block;
    
    /* Harf KenarlarÃ„Â± (SoldurulmuÃ…Å¸ Gold Stroke) */
    color: transparent;
    -webkit-text-stroke: 1.2px rgba(212, 175, 55, 0.7);
    
    /* Ã„Â°ÃƒÂ§i Saydam & YÃ„Â±ldÃ„Â±z Akma Efekti */
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0.5px, transparent 1px);
    background-size: 25px 25px;
    -webkit-background-clip: text;
    background-clip: text;
    animation: floatingStars 20s linear infinite;
    
    /* Parlama Efektleri (AzaltÃ„Â±ldÃ„Â±) */
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.6));
    
    font-family: 'Inter', sans-serif;
}

/* Gold Parlama KatmanÃ„Â± */
.leaderboard-custom-title::after {
    content: "LÃ„Â°DERLÃ„Â°K TABLOSU";
    position: absolute;
    inset: 0;
    z-index: -1;
    -webkit-text-stroke: 0px;
    color: rgba(255, 215, 0, 0.05);
    filter: blur(8px);
}

@keyframes floatingStars {
    from { background-position: 0 0; }
    to { background-position: 200px 200px; }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .leaderboard-custom-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
        -webkit-text-stroke: 1px #ffd700;
    }
}

/* Liderlik GeniÃ…Å¸leme AlanÃ„Â± */
.leaderboard-expand-wrapper {
    margin-top: 80px;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

        p o s i t i o n :   r e l a t i v e ; 
 
         z - i n d e x :   2 ; 
 
         m a r g i n :   0 ; 
 
         f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f ; 
 
         t e x t - a l i g n :   l e f t ; 
 
 } 
 
 
 
 . l e a d e r b o a r d - c u s t o m - t i t l e   { 
 
         f o n t - s i z e :   3 . 2 r e m ;   / *   H a f i f   k Ã ’Â ¼ Ã ’Â § Ã ’Â ¼ l t Ã ’Â ¼ l d Ã ’Â ¼   * / 
 
         f o n t - w e i g h t :   9 0 0 ; 
 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
         l e t t e r - s p a c i n g :   5 p x ; 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         
 
         / *   H a r f   K e n a r l a r Ã  Â ±   ( S o l d u r u l m u Ã & Å ¸   G o l d   S t r o k e )   * / 
 
         c o l o r :   t r a n s p a r e n t ; 
 
         - w e b k i t - t e x t - s t r o k e :   1 . 2 p x   r g b a ( 2 1 2 ,   1 7 5 ,   5 5 ,   0 . 7 ) ; 
 
         
 
         / *   Ã  Â ° Ã ’Â § i   S a y d a m   &   Y Ã  Â ± l d Ã  Â ± z   A k m a   E f e k t i   * / 
 
         b a c k g r o u n d :   r a d i a l - g r a d i e n t ( c i r c l e ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 )   0 . 5 p x ,   t r a n s p a r e n t   1 p x ) ; 
 
         b a c k g r o u n d - s i z e :   2 5 p x   2 5 p x ; 
 
         - w e b k i t - b a c k g r o u n d - c l i p :   t e x t ; 
 
         b a c k g r o u n d - c l i p :   t e x t ; 
 
         a n i m a t i o n :   f l o a t i n g S t a r s   2 0 s   l i n e a r   i n f i n i t e ; 
 
         
 
         / *   P a r l a m a   E f e k t l e r i   ( A z a l t Ã  Â ± l d Ã  Â ± )   * / 
 

/* ACTION CARDS - STRICT HIDE ON MOBILE (FIX OVERLAP) */
@media screen and (max-width: 768px) {
    .action-cards-section, 
    .action-cards-section.desktop-only,
    .action-cards-row {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}


