:root {
    /* Palette Cyberpunk AZZPRONOS */
    --bg-dark: #05010d;
    --bg-surface: #0f0223;
    --bg-card: rgba(15, 2, 35, 0.85);
    
    --neon-purple: #a855f7;
    --neon-purple-deep: #7e22ce;
    --neon-purple-glow: rgba(168, 85, 247, 0.8);
    
    --neon-green: #22c55e;
    --neon-green-glow: rgba(34, 197, 94, 0.8);
    
    --text-bright: #ffffff;
    --text-dim: #d8b4fe;
    --text-muted: #7c3aed;
    
    --glass-border: rgba(168, 85, 247, 0.2);
    --glass-border-green: rgba(34, 197, 94, 0.2);
    --glass-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.9);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-lg: 20px;
    --radius-xl: 32px;

    /* Gradients */
    --grad-purple-blue: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    --grad-purple-green: linear-gradient(135deg, #a855f7 0%, #22c55e 100%);
    --grad-neon-flow: linear-gradient(90deg, #a855f7, #ffffff, #22c55e, #ffffff, #a855f7);
}

/* Animations Néon Avancées */
@keyframes grad-anim {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes neon-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

@keyframes neon-pulse-strong {
    0%, 100% { 
        filter: drop-shadow(0 0 10px var(--neon-purple-glow)) drop-shadow(0 0 2px var(--neon-green-glow));
        opacity: 1;
    }
    50% { 
        filter: drop-shadow(0 0 25px var(--neon-purple-glow)) drop-shadow(0 0 5px var(--neon-green-glow));
        opacity: 0.9;
    }
}

@keyframes neon-flicker {
    0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
        opacity: 1;
        filter: brightness(1);
    }
    20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
        opacity: 0.8;
        filter: brightness(0.7);
    }
}

@keyframes border-flow-anim {
    0% { border-image-source: linear-gradient(90deg, var(--neon-purple), var(--neon-green), var(--neon-purple)); }
    50% { border-image-source: linear-gradient(180deg, var(--neon-green), var(--neon-purple), var(--neon-green)); }
    100% { border-image-source: linear-gradient(270deg, var(--neon-purple), var(--neon-green), var(--neon-purple)); }
}

.grad-animated {
    background-size: 200% 200%;
    animation: grad-anim 5s infinite ease-in-out;
}

.neon-text-animated {
    background: var(--grad-neon-flow);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neon-flow 4s linear infinite;
    font-weight: 900;
    filter: drop-shadow(0 0 10px var(--neon-purple-glow));
}

.neon-btn-ultra {
    background: var(--grad-purple-green);
    background-size: 200% 200%;
    animation: grad-anim 3s infinite ease-in-out, neon-pulse-strong 3s infinite ease-in-out;
    box-shadow: 0 0 20px var(--neon-purple-glow);
    transition: all 0.4s ease;
}

.neon-btn-ultra:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--neon-green-glow);
    filter: brightness(1.2);
}

.neon-flicker-slow {
    animation: neon-flicker 8s infinite step-end;
}

.neon-border-flow {
    border: 2px solid;
    border-image-slice: 1;
    border-image-source: linear-gradient(90deg, var(--neon-purple), var(--neon-green), var(--neon-purple));
    animation: border-flow-anim 6s infinite linear;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--bg-dark);
    color: var(--text-bright);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes copy-flash {
    0% { background: white; box-shadow: 0 0 50px white; }
    100% { background: var(--neon-green); box-shadow: 0 0 30px var(--neon-green-glow); }
}

.copied {
    background: var(--neon-green) !important;
    color: black !important;
    box-shadow: 0 0 30px var(--neon-green-glow) !important;
    animation: copy-flash 0.5s ease-out !important;
    transform: scale(1.05);
}

/* Animations Néon */
@keyframes neon-breath {
    0%, 100% { box-shadow: 0 0 15px var(--neon-purple-glow), inset 0 0 5px var(--neon-purple-glow); }
    50% { box-shadow: 0 0 25px var(--neon-purple-glow), inset 0 0 10px var(--neon-purple-glow); }
}

@keyframes neon-breath-green {
    0%, 100% { box-shadow: 0 0 15px var(--neon-green-glow), inset 0 0 5px var(--neon-green-glow); }
    50% { box-shadow: 0 0 25px var(--neon-green-glow), inset 0 0 10px var(--neon-green-glow); }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 10px var(--neon-purple-glow); }
    50% { text-shadow: 0 0 20px var(--neon-purple-glow); }
}

.neon-border {
    border: 1px solid var(--neon-purple);
    animation: neon-breath 3s infinite ease-in-out;
}

.neon-border-green {
    border: 1px solid var(--neon-green);
    animation: neon-breath-green 3s infinite ease-in-out;
}

.neon-text-glow {
    color: var(--neon-purple);
    animation: text-glow 3s infinite ease-in-out;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.align-right { text-align: right; }
.center { text-align: center; }

/* --- Background Decor --- */
.casino-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2; overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #0c021a 0%, var(--bg-dark) 100%);
}

.aurora {
    position: absolute; width: 80vw; height: 80vw;
    border-radius: 50%; filter: blur(160px); opacity: 0.12;
    animation: pulse 25s infinite alternate ease-in-out;
}

.glow-1 { top: -20%; right: -10%; background: var(--neon-purple); }
.glow-2 { bottom: -20%; left: -10%; background: var(--neon-green); opacity: 0.08; }
.glow-3 { top: 30%; left: 50%; transform: translateX(-50%); width: 50vw; height: 50vw; background: var(--neon-purple-deep); opacity: 0.05; }

/* Grid Line Background Effect */
.bg-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    perspective: 1000px;
    transform: rotateX(60deg) translateY(-200px);
    z-index: -1;
    opacity: 0.5;
}

.bg-decor-elements {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: -1;
}

.decor-item {
    position: absolute;
    opacity: 0.1;
    filter: blur(2px);
    animation: float-decor 15s infinite ease-in-out;
}

.decor-coin { width: 40px; height: 40px; border: 2px solid var(--neon-purple); border-radius: 50%; }
.decor-chip { width: 50px; height: 50px; border: 4px dashed var(--neon-green); border-radius: 50%; }
.decor-square { width: 30px; height: 30px; border: 1px solid white; transform: rotate(45deg); }

@keyframes float-decor {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-40px) rotate(180deg) scale(1.1); }
}

@keyframes pulse {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    100% { transform: translate(5%, 5%) scale(1.1) rotate(5deg); }
}

/* Scrolling Banner */
.scrolling-banner {
    background: #000;
    border-bottom: 1px solid var(--neon-purple);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1000;
}

.banner-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.banner-item {
    display: inline-block;
    margin-right: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-item span { color: var(--neon-purple); }

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Info Bandeau */
.info-bandeau {
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.2), transparent);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.info-bandeau strong { color: var(--neon-purple); }
.info-bandeau-cta { display: inline-flex; align-items: center; min-height: 30px; padding: 5px 13px; border-radius: 999px; background: linear-gradient(90deg, var(--neon-purple), var(--neon-green)); color: #fff; font-weight: 900; font-size: 0.72rem; letter-spacing: .06em; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.info-bandeau-cta:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(168, 85, 247, .3); }

/* --- Floating Code Bar --- */
.floating-code-bar {
    position: fixed;
    bottom: 24px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(15, 2, 35, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neon-purple);
    padding: 12px 24px;
    border-radius: 100px;
    z-index: 999;
    box-shadow: 0 0 20px var(--neon-purple-glow);
    transition: var(--transition);
}

.floating-code-bar.visible { transform: translateX(-50%) translateY(0); }

.code-info { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; }
.pulse-dot {
    width: 8px; height: 8px; background: var(--neon-green);
    border-radius: 50%; box-shadow: 0 0 10px var(--neon-green-glow);
    animation: blink 1.5s infinite;
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* --- Buttons --- */
.btn-neon {
    background: var(--grad-purple-blue);
    background-size: 200% 200%;
    animation: grad-anim 4s infinite ease-in-out;
    color: white; text-decoration: none;
    padding: 16px 36px; border-radius: 12px;
    font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--neon-purple-glow);
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-purple-glow);
    filter: brightness(1.2);
}

.btn-neon-green {
    background: var(--grad-purple-green);
    background-size: 200% 200%;
    animation: grad-anim 4s infinite ease-in-out;
    color: white; text-decoration: none;
    padding: 16px 36px; border-radius: 12px;
    font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 0 15px var(--neon-green-glow);
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-neon-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--neon-green-glow);
    filter: brightness(1.2);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    color: white; text-decoration: none;
    padding: 16px 36px; border-radius: 12px;
    font-weight: 700; border: 1px solid var(--glass-border);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.btn-glass:hover { background: rgba(255, 255, 255, 0.08); border-color: var(--neon-purple); }

.btn-copy {
    background: #000; border: 1px solid var(--neon-purple);
    color: var(--neon-purple); padding: 10px 20px;
    border-radius: 10px; cursor: pointer; font-weight: 900;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-copy:hover { 
    background: var(--neon-purple); 
    color: white; 
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

.btn-copy-small {
    background: var(--neon-green); color: black; border: none;
    padding: 8px 18px; border-radius: 100px;
    font-weight: 900; font-size: 0.75rem; cursor: pointer;
    transition: var(--transition);
}

.btn-copy-small:hover { transform: scale(1.05); }

/* --- Header & Nav --- */
header { padding: 20px 0; z-index: 1000; position: sticky; top: 0; background: rgba(5, 1, 13, 0.8); backdrop-filter: blur(10px); border-bottom: 1px solid var(--glass-border); }
nav { display: flex; justify-content: space-between; align-items: center; position: relative; }

.logo { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -1px; 
    text-transform: uppercase;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--neon-purple);
    transition: var(--transition);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--neon-purple-glow);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

.mobile-only-socials { display: none; }

.nav-links { display: flex; list-style: none; gap: clamp(20px, 3vw, 40px); }

@media (max-width: 1024px) {
    .desktop-only-socials { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 2, 35, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        backdrop-filter: blur(20px);
        padding: 40px;
        gap: 30px;
    }
    
    .nav-links.active { right: 0; }
    
    .nav-links a { font-size: 1.5rem; }
    .mobile-only-socials { display: block; margin-top: 20px; }
}
.nav-links a {
    text-decoration: none; color: var(--text-dim);
    font-weight: 700; font-size: 0.9rem; transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links a:hover { 
    color: var(--neon-purple); 
    text-shadow: 0 0 10px var(--neon-purple-glow);
}

.header-socials { display: flex; gap: 15px; }
.social-icon {
    width: 44px; height: 44px; background: rgba(168, 85, 247, 0.05);
    border: 1px solid var(--glass-border); border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: white; font-weight: 900; font-size: 0.8rem;
    transition: var(--transition);
}
.social-icon:hover { 
    background: var(--neon-purple); 
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
    transform: translateY(-2px);
}

/* --- Hero V2 --- */
.hero-v2 { padding: 100px 0 140px; position: relative; }

.m-sticker {
    position: absolute;
    background: var(--neon-purple);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--neon-purple-glow);
    z-index: 20;
    white-space: nowrap;
    pointer-events: none;
}

/* Specific Badge Adjustments for Mobile */
@media (max-width: 768px) {
    .m-sticker {
        font-size: 0.65rem;
        padding: 6px 12px;
    }
    
    /* Ensure stickers don't fly off screen */
    .hero-v2 .m-sticker {
        position: static !important;
        display: inline-block !important;
        margin-bottom: 10px !important;
        transform: none !important;
    }
    
    .b-card .m-sticker, 
    .reward-box .m-sticker,
    .t-step .m-sticker,
    .neon-code-card .m-sticker {
        top: -12px !important;
        left: 20px !important;
        right: auto !important;
        transform: none !important;
    }
}

.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: center; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.m-badge {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--glass-border);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dim);
    text-transform: uppercase;
}

.badge-live {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(34, 197, 94, 0.1); border: 1px solid var(--glass-border-green);
    padding: 8px 18px; border-radius: 100px;
    color: var(--neon-green); font-weight: 900; font-size: 0.85rem;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
}

.live-indicator {
    width: 10px; height: 10px; background: var(--neon-green);
    border-radius: 50%; box-shadow: 0 0 10px var(--neon-green-glow);
    animation: blink 1s infinite;
}

/* Mobile experience pass: preserve the desktop composition while prioritising the
   offer, code and primary CTA on narrow touch screens. */
@media (max-width: 600px) {
    .container { padding-inline: 16px; }

    .info-bandeau { padding: 8px 14px; gap: 8px; font-size: .72rem; line-height: 1.35; }
    .info-bandeau-cta { min-height: 38px; padding-inline: 14px; }

    .hero-v2 { padding: 44px 0 40px; }
    .hero-grid { gap: 20px; }
    .hero-v2 .m-sticker { margin-bottom: 8px !important; }
    .badge-live { margin-bottom: 14px; padding: 8px 13px; font-size: .72rem; }
    .official-partnership { margin: 8px 0 14px; padding: 9px 11px; gap: 9px; }
    .hero-v2 h1 { margin: 8px 0 14px; font-size: clamp(2.3rem, 11vw, 2.9rem) !important; }
    .hero-v2 p { margin: 0 0 20px; font-size: 1rem !important; line-height: 1.55; }
    .hero-visual { display: none; }
    .neon-code-card { margin: 20px auto 0 !important; padding: 20px 16px; border-radius: 20px; }
    .code-wrapper { gap: 12px; }
    .code-wrapper .code { font-size: clamp(1.55rem, 8vw, 2rem); letter-spacing: -.04em; }
    .code-wrapper .btn-neon-green { min-height: 48px; padding: 10px 14px; }
    .hero-actions { display: none; }
    .hero-intro-conversion { margin-top: 24px; padding: 24px 18px; border-radius: 24px; }
    .intro-content { gap: 14px; }
    .conversion-title { font-size: 1.35rem; line-height: 1.2; }
    .intro-text { display: none; }
    .intro-buttons { width: 100%; margin-top: 0 !important; }
    .intro-buttons .btn-neon-green { width: 100%; min-height: 54px; padding: 14px 18px !important; font-size: .95rem !important; border-radius: 16px !important; }
    .stats-row { display: none; }

    .promo-box-section,
    .bonus-section-v2,
    .leaderboard-section-v2,
    .rewards-section-v2,
    .tutorial-v2,
    .compact-info-section,
    .community-v2,
    .final-cta-section { padding: 64px 0 !important; }
    .section-title { margin-bottom: 34px; }
    .section-title h2 { margin-top: 10px; }
    .b-card, .reward-box, .t-step, .social-card-v2, .reward-card-new, .stat-card { padding: 28px 20px; border-radius: 24px; }

    .btn-neon, .btn-neon-green, .btn-glass, .promo-button, .btn-telegram, .promo-copy { min-height: 48px; justify-content: center; }
    .promo-box-section .btn-neon-green { width: 100%; max-width: 100%; padding: 14px 18px !important; font-size: .95rem !important; }
    .promo-title-huge { font-size: clamp(2rem, 10vw, 2.6rem) !important; }
    .promo-subtitle { font-size: 1.55rem !important; margin-bottom: 18px !important; }

    #leaderboard-podium, .leaderboard-mascot { display: none; }
    .leaderboard-header { margin-bottom: 26px !important; }
    .leaderboard-header > p { font-size: 1.08rem !important; }
    .countdown-container { width: 100%; padding: 14px 10px; }
    .countdown-timer-wrapper { justify-content: space-around; gap: 4px; }
    .timer-block span { font-size: 1.35rem; }
    .live-status-pill { max-width: 100%; padding: 10px 13px !important; }
    #live-indicator-text { font-size: .68rem !important; letter-spacing: .04em !important; }
    .min-wager-alert { font-size: .7rem !important; line-height: 1.35; }
    .leaderboard-info-section { margin-top: 36px; }
    .leaderboard-info-box { padding: 20px 14px !important; }

    .reward-list-container { padding: 20px 14px !important; }
    .rewards-footer { margin-top: 30px !important; }
    .social-card-v2 { min-height: 250px !important; }
    .social-card-v2 .s-icon { margin-bottom: 18px; }
    .social-card-v2 .s-cta { margin-top: 20px; }
    .sticker-float { display: none; }

    .premium-promo { width: calc(100% - 20px); bottom: 8px; padding: 4px; }
    .premium-inner { padding: 10px 12px; gap: 8px; }
    .promo-top { flex-direction: column; align-items: stretch; gap: 8px; }
    .promo-left { min-width: 0; justify-content: center; }
    .promo-right-top, .promo-actions { width: 100%; }
    .promo-actions { gap: 8px; }
    .promo-actions > a { flex: 1; min-width: 0; padding: 10px 8px; text-align: center; font-size: .73rem; }
    .promo-bottom { padding-top: 8px; }
    .promo-sub { display: none; }
    .promo-code { width: 100%; justify-content: space-between; gap: 8px; padding: 8px 10px; }
    .promo-code .code-value { font-size: 1rem; letter-spacing: 2px; }
    .promo-copy { padding: 7px 10px; font-size: .72rem; }
    .promo-close { width: 36px; height: 36px; }
}

/* Compact information section: touch-first phone refinements.
   Kept last so the inline desktop grid and legacy rules cannot reintroduce
   a horizontal overflow at narrow widths. */
@media (max-width: 900px) {
    .compact-info-section .side-grid {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 40px !important;
        width: 100%;
        min-width: 0;
    }

    .compact-info-section .news-column,
    .compact-info-section .faq-column,
    .compact-info-section .news-grid-compact,
    .compact-info-section .faq-accordion {
        min-width: 0;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .compact-info-section .section-title {
        margin-bottom: 24px;
    }

    .compact-info-section .section-title h2 {
        font-size: clamp(1.9rem, 10vw, 2.45rem) !important;
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .news-grid-compact {
        gap: 12px;
        margin-top: 20px !important;
    }

    .news-card-horizontal {
        align-items: flex-start;
        gap: 12px;
        min-height: 76px;
        padding: 14px 16px 14px 18px;
        overflow: visible;
        transform: none;
    }

    .news-card-horizontal:hover,
    .news-card-horizontal:focus-visible {
        transform: none;
        border-color: var(--neon-purple);
        background: rgba(255, 255, 255, 0.05);
    }

    .news-card-horizontal:focus-visible {
        outline: 3px solid var(--neon-green);
        outline-offset: 3px;
    }

    .news-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-right: 0;
        font-size: 1.2rem;
    }

    .news-title-compact {
        white-space: normal;
        overflow: visible;
        overflow-wrap: anywhere;
        text-overflow: clip;
        font-size: 1rem;
        line-height: 1.35;
    }

    .news-arrow {
        align-self: center;
        margin-left: 0;
        padding: 8px 0 8px 6px;
        flex: 0 0 auto;
    }

    .faq-accordion {
        gap: 12px;
        margin-top: 20px !important;
    }

    .faq-item,
    .faq-item details {
        overflow: visible;
    }

    .faq-item details {
        padding: 0;
    }

    .faq-item summary {
        min-height: 52px;
        padding: 16px 18px;
        gap: 12px;
        align-items: flex-start;
        font-size: 1rem;
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .faq-item summary::after {
        flex: 0 0 24px;
        margin-top: -2px;
        text-align: center;
    }

    .faq-item p {
        margin: 0 18px;
        padding: 16px 0 20px;
        font-size: .98rem;
        line-height: 1.55;
    }

    .community-v2 .section-title h2 {
        font-size: clamp(2rem, 10vw, 2.7rem) !important;
        line-height: 1.06;
        overflow-wrap: anywhere;
    }

    .community-v2 .section-title p {
        font-size: 1rem !important;
        line-height: 1.55;
    }

    .social-grid-large { gap: 16px; }
    .social-card-v2 { min-height: 220px !important; }

    .final-cta-section .spectacular-promo {
        border-radius: 24px !important;
        padding: 28px 20px !important;
    }

    .final-cta-section h2 {
        font-size: clamp(2rem, 10vw, 2.45rem) !important;
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .final-cta-section .spectacular-promo p {
        font-size: 1rem !important;
        line-height: 1.55;
        margin-bottom: 24px !important;
    }

    .final-cta-section .spectacular-promo div[style*="display: flex"] {
        flex-direction: column;
        gap: 12px !important;
    }

    .final-cta-section .spectacular-promo .btn-neon-green,
    .final-cta-section .spectacular-promo .btn-glass {
        width: 100%;
        min-height: 52px;
        padding: 14px 16px !important;
        font-size: .95rem !important;
    }

    footer { padding: 64px 0 36px !important; }
    .footer-top-grid { gap: 32px !important; margin-bottom: 36px !important; }
    .footer-top-grid > * { min-width: 0; }
    .footer-partnership { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

.hero-v2 h1 { 
    font-size: 5rem; line-height: 1.05; margin-bottom: 24px; 
    font-weight: 900;
}
.neon-purple-text { 
    color: var(--neon-purple); 
    text-shadow: 0 0 20px var(--neon-purple-glow);
}

.hero-v2 p { font-size: 1.35rem; color: var(--text-dim); margin-bottom: 48px; max-width: 650px; }

.hero-bonus-box, .neon-code-card {
    background: #000; 
    border: 1px solid var(--neon-purple);
    padding: 32px; border-radius: 24px; margin-bottom: 48px; max-width: 480px;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.15);
    position: relative;
    /* overflow: hidden; REMOVED to allow stickers */
}

.hero-bonus-box::after, .neon-code-card::after {
    content: ''; position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-bonus-box .label, .neon-code-card .label {
    display: block; font-size: 0.8rem; font-weight: 900; color: var(--neon-purple);
    margin-bottom: 16px; letter-spacing: 2px; text-transform: uppercase;
}

.code-wrapper, .copy-field { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.code-wrapper .code, .copy-field .code { 
    font-family: 'JetBrains Mono', monospace; font-size: 2.5rem; 
    font-weight: 900; color: white;
}

.hero-actions { display: flex; gap: 24px; margin-bottom: 60px; }

.hero-stats { display: flex; gap: 50px; }
.h-stat { display: flex; flex-direction: column; gap: 5px; }
.h-val { font-size: 2.5rem; font-weight: 900; color: white; line-height: 1; }
.h-lab { font-size: 0.85rem; font-weight: 800; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- Hero Intro Conversion --- */
.hero-intro-conversion {
    margin-top: 80px;
    background: var(--bg-surface);
    border: 1px solid var(--neon-purple);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.intro-text p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 1000px;
}

.intro-text .highlight {
    color: var(--neon-green);
    font-weight: 900;
    text-shadow: 0 0 10px var(--neon-green-glow);
}

.intro-text strong {
    color: white;
    font-weight: 900;
}

.intro-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    align-items: center;
}

.mini-copy-box {
    background: #000;
    border: 1px solid var(--neon-purple);
    padding: 10px 10px 10px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.1);
}

.mini-code {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
    font-size: 1.4rem;
    color: white;
    letter-spacing: 1px;
}

.btn-copy-mini {
    background: var(--neon-purple);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 900;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-copy-mini:hover {
    background: var(--neon-purple-deep);
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

/* Visual Decor */
.hero-visual { position: relative; perspective: 1500px; }
.visual-card-main {
    width: 340px; height: 480px; 
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-green));
    border-radius: 30px; padding: 2px; transform: rotateY(-25deg) rotateX(15deg);
    box-shadow: -30px 30px 80px rgba(0, 0, 0, 0.6);
    animation: card-float 6s infinite ease-in-out;
}

@keyframes card-float {
    0%, 100% { transform: rotateY(-25deg) rotateX(15deg) translateY(0); }
    50% { transform: rotateY(-20deg) rotateX(10deg) translateY(-20px); }
}

.card-inner {
    background: #05010d; height: 100%; border-radius: 28px;
    display: flex; flex-direction: column; justify-content: space-between; padding: 40px;
}
.card-top { font-weight: 900; color: var(--neon-purple); letter-spacing: 2px; }
.card-mid { 
    font-size: 6rem; font-weight: 900; text-align: center; color: white; 
    text-shadow: 0 0 30px var(--neon-purple-glow);
}
.card-bot { font-weight: 900; text-align: right; color: var(--neon-green); }

/* --- Sections Common --- */
.section-v2, section { padding: 120px 0; position: relative; }
.section-title { margin-bottom: 80px; }
.pre-title { 
    color: var(--neon-purple); 
    font-weight: 900; font-size: 0.9rem; letter-spacing: 3px; 
    text-transform: uppercase;
}
.section-title h2 { font-size: 4rem; margin-top: 15px; font-weight: 900; line-height: 1.1; }

/* --- Promo Box --- */
.promo-box-section { padding: 60px 0; }
.promo-container {
    background: #000;
    border: 2px solid var(--neon-green);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.15);
    position: relative;
    overflow: hidden;
}

.promo-container::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.promo-info h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 24px; color: var(--neon-green); }
.promo-features { list-style: none; margin-bottom: 30px; }
.promo-features li { 
    font-size: 1.2rem; font-weight: 700; color: var(--text-dim); 
    margin-bottom: 12px; display: flex; align-items: center; gap: 15px;
}
.promo-features li::before { content: '✔'; color: var(--neon-green); font-weight: 900; }

/* --- Bonus Cards --- */
.bonus-section-v2 { background: rgba(15, 2, 35, 0.3); }
.bonus-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.b-card {
    background: var(--bg-card); 
    border: 1px solid var(--glass-border);
    transition: var(--transition);
    position: relative;
}
.b-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05) 0%, transparent 100%);
    opacity: 0; transition: var(--transition);
}
.b-card:hover { 
    transform: translateY(-15px); 
    border-color: var(--neon-purple);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}
.b-card:hover::before { opacity: 1; }

.b-card.spotlight { 
    border: 2px solid var(--neon-purple); 
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.1);
}
.b-icon { font-size: 4rem; margin-bottom: 30px; filter: drop-shadow(0 0 10px var(--neon-purple-glow)); }
.b-card h3 { font-size: 1.8rem; font-weight: 900; margin-bottom: 20px; }
.b-card p { font-size: 1.1rem; color: var(--text-dim); }

/* --- Leaderboard --- */
.leaderboard-section-v2 { position: relative; }
.leaderboard-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 60px;
}
.lh-info h2 { font-size: 3.5rem; font-weight: 900; margin-bottom: 10px; }
.prize-pool {
    background: var(--neon-green);
    color: black; padding: 16px 32px; border-radius: 16px;
    font-weight: 900; font-size: 1.4rem; 
    box-shadow: 0 0 25px var(--neon-green-glow);
    text-transform: uppercase; letter-spacing: 1px;
}

.leaderboard-glass-box {
    background: #000;
    border: 1px solid var(--neon-purple);
    border-radius: 32px;
    padding: 10px 20px;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(20px);
    max-height: 520px;
    overflow-y: auto;
}

/* Scrollbar Customization */
.leaderboard-glass-box::-webkit-scrollbar {
    width: 6px;
}

.leaderboard-glass-box::-webkit-scrollbar-track {
    background: rgba(168, 85, 247, 0.05);
    border-radius: 10px;
    margin: 20px 0;
}

.leaderboard-glass-box::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--neon-purple-glow);
}

.leaderboard-glass-box::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple-deep);
}

.premium-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }

.premium-table th {
    padding: 15px 40px; color: var(--text-muted); font-size: 0.9rem;
    text-transform: uppercase; font-weight: 900; letter-spacing: 2px;
    position: sticky;
    top: 0;
    background: #000;
    z-index: 10;
}

.premium-table td {
    padding: 20px 40px; background: rgba(168, 85, 247, 0.03);
    font-weight: 800; font-size: 1.1rem; transition: var(--transition);
    border-top: 1px solid rgba(168, 85, 247, 0.05);
    border-bottom: 1px solid rgba(168, 85, 247, 0.05);
}
.premium-table tr:hover td { 
    background: rgba(168, 85, 247, 0.08); 
    border-color: var(--neon-purple);
}

.premium-table td:first-child { border-radius: 20px 0 0 20px; border-left: 1px solid rgba(168, 85, 247, 0.05); }
.premium-table td:last-child { border-radius: 0 20px 20px 0; border-right: 1px solid rgba(168, 85, 247, 0.05); }

.rank-badge {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px; background: rgba(255, 255, 255, 0.05);
    font-weight: 900; font-size: 1.2rem;
}
.rank-badge.r-1 { background: var(--neon-purple); color: white; box-shadow: 0 0 20px var(--neon-purple-glow); }
.rank-badge.r-2 { background: #cbd5e1; color: black; }
.rank-badge.r-3 { background: #92400e; color: white; }

.wager-amount { color: var(--neon-green); font-family: 'JetBrains Mono', monospace; font-weight: 900; }

/* --- Rewards --- */
.rewards-section-v2 { background: radial-gradient(circle at bottom, rgba(168, 85, 247, 0.1), transparent); }
.rewards-wrapper {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.reward-box {
    background: var(--bg-card); 
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: var(--transition);
    position: relative;
}
.reward-box:hover { transform: scale(1.05); border-color: var(--neon-purple); }
.reward-box h3 { font-size: 2.5rem; font-weight: 900; margin: 20px 0; color: white; }
.reward-box .r-rank { font-size: 1rem; font-weight: 900; color: var(--neon-purple); text-transform: uppercase; letter-spacing: 2px; }
.reward-box .r-icon { font-size: 4rem; filter: drop-shadow(0 0 15px var(--neon-purple-glow)); }

.reward-box.rank-1 { 
    border: 2px solid var(--neon-purple); 
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.15);
    background: rgba(168, 85, 247, 0.05);
}

/* --- Tutorial --- */
.tutorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.t-step {
    text-align: center; padding: 40px;
}
.t-num {
    width: 60px; height: 60px; background: #000; border: 2px solid var(--neon-purple);
    color: var(--neon-purple); font-size: 1.8rem; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; margin: 0 auto 30px;
    box-shadow: 0 0 20px var(--neon-purple-glow);
}
.t-step h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 20px; }
.t-step p { font-size: 1.1rem; color: var(--text-dim); }

/* --- Backgrounds Integration --- */

/* Image 2: Bonus Sections */
.bonus-section-v2 {
    position: relative;
    background-image: url('Gemini_Generated_Image_ukyi5wukyi5wukyi.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Image Premium: Rewards Section */
.rewards-section-v2 {
    position: relative;
    background-image: url('rewards-bg-premium.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bonus-section-v2::before,
.rewards-section-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.bonus-section-v2 .container, 
.bonus-section-v2 .m-sticker,
.rewards-section-v2 .container,
.rewards-section-v2 .m-sticker {
    position: relative;
    z-index: 2;
}

/* Image 1: Info Box & Hero Conversion */
.leaderboard-info-section,
.hero-intro-conversion {
    position: relative;
    background-image: url('Gemini_Generated_Image_8kmdpi8kmdpi8kmd.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.leaderboard-info-section {
    padding: 80px 0;
    margin-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.hero-intro-conversion {
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
    margin-top: 120px;
    padding: 60px;
    border-radius: 40px;
}

.leaderboard-info-section::before,
.hero-intro-conversion::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 40%, transparent 100%);
    z-index: 1;
}

.leaderboard-info-section .container,
.hero-intro-conversion .intro-content {
    position: relative;
    z-index: 2;
}

/* Image 3: Spectacular Promo Triple Deposit */
.promo-box-section .spectacular-promo {
    background-image: url('Gemini_Generated_Image_5uj9qb5uj9qb5uj9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.promo-box-section .spectacular-promo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.promo-box-section .spectacular-promo * {
    position: relative;
    z-index: 2;
}

/* Image 4: Final CTA Section */
.final-cta-section .spectacular-promo {
    background-image: url('final-cta-bg-premium.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: left !important;
    border: none !important;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.2) !important;
}

.final-cta-section .spectacular-promo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.final-cta-section .spectacular-promo * {
    position: relative;
    z-index: 2;
}

.final-cta-section .spectacular-promo h2,
.final-cta-section .spectacular-promo p,
.final-cta-section .spectacular-promo .flex-center {
    margin-left: 0 !important;
    text-align: left !important;
}

.final-cta-section .spectacular-promo div[style*="justify-content: center"] {
    justify-content: flex-start !important;
}

/* Responsive Overrides for Backgrounds */
@media (max-width: 900px) {
    .leaderboard-info-section {
        background-position: center;
    }
    .leaderboard-info-section::before {
        background: rgba(0,0,0,0.8);
    }
    .final-cta-section .spectacular-promo {
        background-position: center;
        text-align: center !important;
    }
    .final-cta-section .spectacular-promo::before {
        background: rgba(0,0,0,0.85);
    }
    .final-cta-section .spectacular-promo div[style*="justify-content: flex-start"] {
        justify-content: center !important;
    }
}

/* --- Countdown & Info Box --- */
.countdown-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 20px 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.countdown-timer-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-block span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 10px var(--neon-purple-glow);
}

.timer-block label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 5px;
}

.reward-item-row:last-child {
    border-bottom: none !important;
}

.neon-green-text {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green-glow);
}

/* --- Bonus Details & Example --- */
.info-card-mini {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card-mini:hover {
    transform: translateY(-5px);
}

.ic-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ic-value {
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

.example-flow {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
}

.flow-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.flow-item.highlight {
    background: var(--grad-purple-green);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 0 20px var(--neon-purple-glow);
}

.f-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--text-dim);
    margin-bottom: 5px;
}

.f-value {
    font-size: 1.4rem;
    font-weight: 900;
    color: white;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 900;
}

/* --- News Section --- */
.news-section-v2 {
    padding: 140px 0;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.news-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.news-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
}

/* Tutoriel button styling */
.nav-tuto {
    display: inline-block;
    background: linear-gradient(90deg,#22c55e,#a855f7);
    color: #06130a;
    padding: 8px 14px;
    border-radius: 12px;
    font-weight: 900;
    box-shadow: 0 8px 30px rgba(34,197,94,0.12);
    text-transform: uppercase;
    transition: transform .18s ease, box-shadow .18s ease;
    animation: tuto-blink 2s infinite;
}

@keyframes tuto-blink {
    0%,100% { box-shadow: 0 8px 20px rgba(34,197,94,0.12); transform: translateY(0); }
    50% { box-shadow: 0 16px 40px rgba(34,197,94,0.22); transform: translateY(-2px); }
}

.azzpromo-float {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(820px, calc(100% - 64px));
    max-width: 820px;
    border-radius: 20px;
    padding: 8px;
    background: transparent;
}

.azzpromo-float::before{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px; /* allows inner background */
    background: linear-gradient(90deg, rgba(168,85,247,0.9), rgba(34,197,94,0.9));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: blur(8px) saturate(120%);
    opacity: 0.9;
    pointer-events: none;
}

.azzpromo-inner{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(8,6,12,0.75), rgba(18,8,28,0.6));
    padding: 14px 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 8px 30px rgba(168,85,247,0.06);
    border: 1px solid rgba(255,255,255,0.02);
    overflow: hidden;
}

/* Close button small round in corner */
.azzpromo-close{
    position:absolute;
    top:10px;
    right:10px;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.9);
    font-size:12px;
    cursor:pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,0.5);
    transition: transform .12s ease, background .12s ease;
    z-index: 5;
}
.azzpromo-close:hover{ background: rgba(255,255,255,0.07); transform: scale(1.08); }

/* top row layout */
.azzpromo-top{ display:flex; align-items:center; gap:16px; }
.left-block{ display:flex; align-items:center; gap:12px; min-width:180px; }
.bonus-big{ font-weight:900; font-size:28px; line-height:1; background: linear-gradient(90deg,#a855f7,#22c55e); -webkit-background-clip:text; -webkit-text-fill-color:transparent; text-shadow: 0 0 18px rgba(168,85,247,0.18); }
.bonus-sub{ font-size:12px; color:var(--text-dim); margin-top:4px; }
.telegram-circle{ width:44px; height:44px; border-radius:50%; background: linear-gradient(180deg,#52a8ff,#2b8fff); display:flex; align-items:center; justify-content:center; box-shadow: 0 8px 30px rgba(66,153,225,0.12), 0 0 24px rgba(52,144,255,0.08); align-self:center; margin-top:0; }
.telegram-circle img{ width:20px; height:20px; filter: drop-shadow(0 4px 10px rgba(66,153,225,0.2)); vertical-align:middle; }

.center-block{ flex:1; display:flex; flex-direction:column; align-items:center; gap:8px; }
.promo-cta{ background: linear-gradient(90deg,#a855f7 0%, #22c55e 100%); padding:12px 24px; border-radius:12px; color:#06130a; font-weight:900; box-shadow: 0 12px 40px rgba(168,85,247,0.14), 0 6px 20px rgba(34,197,94,0.08); text-decoration:none; transition: transform .14s ease, box-shadow .14s ease; }
.promo-cta:hover{ transform: translateY(-3px); box-shadow: 0 18px 60px rgba(168,85,247,0.18), 0 8px 30px rgba(34,197,94,0.12); }
.promo-text{ color:var(--text-dim); font-weight:700; font-size:13px; }

.right-block{ display:flex; align-items:center; gap:12px; min-width:220px; justify-content:flex-end; }
.code-card{ background: rgba(0,0,0,0.28); padding:8px 12px; border-radius:12px; border: 1px dashed rgba(168,85,247,0.18); display:flex; gap:10px; align-items:center; }
.code-label{ font-size:11px; color:var(--text-dim); font-weight:800; }
.code-value{ font-family:'JetBrains Mono', monospace; font-weight:900; background:linear-gradient(90deg,#a855f7,#22c55e); -webkit-background-clip:text; -webkit-text-fill-color:transparent; font-size:14px; padding:0 6px; }
.copy-btn{ background: linear-gradient(90deg,#22c55e,#7ef28a); color:#06130a; border-radius:8px; padding:6px 10px; font-weight:900; border:none; cursor:pointer; }
.copy-btn.copied{ transform: scale(1.03); }

/* bottom row info */
.azzpromo-bottom{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:6px; border-top: 1px solid rgba(168,85,247,0.03); }
.bottom-info{ color:var(--text-dim); font-size:12px; }

/* subtle pulsing glows */
@keyframes pulse-purple{ 0%{ box-shadow: 0 6px 18px rgba(168,85,247,0.08);} 50%{ box-shadow: 0 10px 30px rgba(168,85,247,0.14);} 100%{ box-shadow: 0 6px 18px rgba(168,85,247,0.08);} }
@keyframes pulse-green{ 0%{ box-shadow: 0 6px 18px rgba(34,197,94,0.06);} 50%{ box-shadow: 0 10px 28px rgba(34,197,94,0.12);} 100%{ box-shadow: 0 6px 18px rgba(34,197,94,0.06);} }
.promo-cta{ animation: pulse-purple 4s infinite; }
.telegram-circle{ animation: pulse-green 5s infinite; }

@media (max-width:800px){
    .azzpromo-float{ width: calc(100% - 32px); left: 50%; transform: translateX(-50%); bottom:14px; }
    .azzpromo-top{ flex-direction: row; }
    .right-block{ min-width:140px; }
}

/* Premium promo matching reference */
.premium-promo{ position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 9999; width: calc(100% - 200px); max-width: 980px; border-radius: 20px; padding: 10px; }
.premium-inner{ background: linear-gradient(180deg, rgba(8,10,12,0.88), rgba(12,14,16,0.92)); border-radius: 16px; padding: 18px 22px; display:flex; align-items:center; gap:20px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.02); }

.premium-inner{ background: linear-gradient(180deg, rgba(8,10,12,0.88), rgba(12,14,16,0.92)); border-radius: 16px; padding: 14px 18px; display:flex; flex-direction:column; gap:12px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.02); position:relative; overflow:hidden; }

/* decorative gradient border */
.premium-promo::before{ content: ''; position: absolute; inset: -2px; background: linear-gradient(90deg,#8b5cf6,#22c55e); border-radius: 22px; z-index: 0; filter: blur(6px); opacity: 0.55; }
.premium-promo::after{ content: ''; position: absolute; inset: 0; border-radius: 20px; pointer-events: none; z-index: 1; }

.promo-close{ position:absolute; top:10px; right:12px; width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:50%; background: rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.03); color: rgba(255,255,255,0.7); font-size:14px; cursor:pointer; z-index:3; }

.promo-top{ display:flex; align-items:center; justify-content:space-between; gap:20px; z-index:2; }
.promo-left{ display:flex; align-items:center; gap:14px; min-width:260px; }
.promo-shuffle{ width:40px; height:40px; border-radius:10px; box-shadow: 0 6px 30px rgba(34,197,94,0.06); }
.promo-left-top{ font-weight:900; font-size:22px; color: #a8ff5e; text-shadow: 0 8px 28px rgba(34,197,94,0.06); }
.promo-left .promo-small{ font-size:12px; color: rgba(255,255,255,0.7); margin-left:8px; font-weight:700; }

.promo-right-top{ display:flex; align-items:center; gap:12px; }
.promo-actions{ display:flex; gap:14px; align-items:center; }
.btn-telegram{ display:inline-flex; align-items:center; gap:10px; padding:10px 18px; background: linear-gradient(180deg,#9ee6ff,#4db8ff); border-radius:18px; color:#042024; text-decoration:none; font-weight:800; box-shadow: 0 10px 36px rgba(77,184,255,0.08); }
.btn-telegram img{ width:18px; height:18px; filter: drop-shadow(0 6px 18px rgba(77,184,255,0.12)); }
.promo-button{ display:inline-block; padding:12px 26px; background: linear-gradient(90deg,#7ef85a,#a855f7); border-radius:18px; color:#04120a; font-weight:900; text-decoration:none; box-shadow: 0 18px 60px rgba(30,215,96,0.12); }

.promo-simple{
    flex-direction:row;
    align-items:center;
    justify-content:center;
    gap:18px;
}
.promo-simple p{
    margin:0;
    color:rgba(255,255,255,.82);
    font-weight:700;
}

.promo-bottom{ display:flex; align-items:center; justify-content:space-between; gap:20px; padding-top:12px; border-top: 1px solid rgba(255,255,255,0.02); z-index:2; }
.promo-sub{ color: rgba(255,255,255,0.75); font-size:15px; }

.promo-code{ display:flex; align-items:center; gap:14px; padding:12px 18px; border-radius:14px; border:2px dashed rgba(34,197,94,0.18); background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(255,255,255,0.02)); }
.promo-code .code-caption{ font-size:13px; color: rgba(255,255,255,0.55); font-weight:800; padding-right:6px; }
.promo-code .code-value{ font-family: 'JetBrains Mono', monospace; font-weight:900; font-size:20px; color: #7ef85a; letter-spacing: 4px; text-shadow: 0 8px 30px rgba(34,197,94,0.08); }
.promo-copy{ background: linear-gradient(90deg,#b8ffb7,#1ed760); border:none; padding:8px 12px; border-radius:10px; font-weight:900; cursor:pointer; color:#04110a; }

@media (max-width:900px){
    .premium-promo{ width: calc(100% - 32px); left: 50%; transform: translateX(-50%); bottom:12px; }
    .promo-top{ flex-direction:row; }
    .promo-left{ min-width:120px; }
    .promo-right-top{ gap:8px; }
    .promo-bottom{ flex-direction:column; align-items:center; gap:10px; }
}

@media (max-width:520px){
    .azzpromo-top{ flex-direction: column; align-items:stretch; }
    .left-block{ justify-content:flex-start; }
    .center-block{ align-items:flex-start; }
    .right-block{ justify-content:flex-start; }
    .promo-cta{ width:100%; text-align:center; }
    .azzpromo-inner{ padding:12px; }
    .promo-simple{ flex-direction:column; gap:10px; text-align:center; }
}

.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--neon-purple);
    color: white;
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 900;
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.news-title {
    font-size: 1.3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-news {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-news:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px var(--neon-purple-glow);
}

/* --- Compact Horizontal News --- */
.news-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-card-horizontal {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.news-card-horizontal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--grad-purple-green);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.news-card-horizontal:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--neon-purple);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(168, 85, 247, 0.1);
}

.news-card-horizontal:hover::before {
    opacity: 1;
}

.news-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.news-card-horizontal:hover .news-icon-wrapper {
    background: var(--neon-green);
    color: black;
    box-shadow: 0 0 15px var(--neon-green-glow);
    transform: rotate(12deg) scale(1.1);
}

.news-info {
    flex-grow: 1;
    min-width: 0;
}

.news-date-pill {
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
    display: block;
}

.news-title-compact {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.news-card-horizontal:hover .news-title-compact {
    color: var(--neon-purple);
}

.news-arrow {
    margin-left: 15px;
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.news-card-horizontal:hover .news-arrow {
    color: var(--neon-green);
    transform: translateX(5px);
}

.podium-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 80px;
    padding-top: 40px;
}

.podium-item {
    text-align: center;
    position: relative;
    width: 200px;
}

.podium-rank {
    font-size: 3rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px currentColor);
}

.podium-player {
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.podium-player .p-name {
    font-size: 1.2rem;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.podium-player .p-wager {
    font-family: 'JetBrains Mono', monospace;
    color: var(--neon-green);
    font-weight: 900;
    font-size: 0.9rem;
}

.podium-base {
    background: linear-gradient(180deg, var(--neon-purple-deep), transparent);
    height: 100px;
    border-radius: 0 0 20px 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
}

.podium-item.p-1 { z-index: 3; width: 240px; }
.podium-item.p-1 .podium-player { 
    border-color: #fbbf24; 
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
    padding: 40px 20px;
}
.podium-item.p-1 .podium-base { height: 160px; color: rgba(251, 191, 36, 0.15); }
.podium-item.p-1 .podium-rank { color: #fbbf24; transform: scale(1.2); }

.podium-item.p-2 .podium-rank { color: #cbd5e1; }
.podium-item.p-2 .podium-base { height: 120px; color: rgba(203, 213, 225, 0.1); }

.podium-item.p-3 .podium-rank { color: #92400e; }
.podium-item.p-3 .podium-base { height: 80px; color: rgba(146, 64, 14, 0.1); }

/* --- Rewards Overhaul --- */
.rewards-title-huge {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: var(--grad-purple-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: grad-anim 5s infinite ease-in-out;
    background-size: 200% 200%;
    text-transform: uppercase;
}

.rewards-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.reward-card-new {
    background: #000;
    border: 1px solid var(--neon-purple);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.reward-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
}

.reward-card-new.wide { 
    grid-column: 1 / -1; 
    background: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-purple); 
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    padding: 60px 40px;
    border-radius: 30px;
}
.reward-card-new.wide h3 { font-size: 5rem; color: white; margin-bottom: 10px; }

.reward-card-new .r-label { font-size: 1.2rem; font-weight: 900; color: var(--text-dim); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 20px; display: block; }
.reward-card-new .r-value { font-size: 4rem; font-weight: 900; color: white; display: block; margin-bottom: 10px; }
.reward-card-new .r-desc { font-size: 1.1rem; color: var(--text-muted); font-weight: 700; }

@media (max-width: 768px) {
    .podium-container { flex-direction: column; align-items: center; gap: 40px; }
    .podium-item { width: 100% !important; max-width: 300px; }
    .rewards-title-huge { font-size: 3rem; }
}

/* --- FAQ --- */
.faq-accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--neon-purple); }
.faq-item summary {
    padding: 24px 32px; font-weight: 800; font-size: 1.2rem; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; color: var(--neon-purple); font-size: 1.5rem; }
.faq-item details[open] summary::after { content: '−'; }
.faq-item p { padding: 0 32px 32px; color: var(--text-dim); font-size: 1.1rem; }

/* --- Community Redesign --- */
.social-grid-large { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    margin-top: 60px;
}

.social-card-v2 {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.social-card-v2::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 0%, var(--card-color, var(--neon-purple-glow)), transparent 70%);
    opacity: 0.1;
    transition: var(--transition);
}

.social-card-v2:hover { 
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--card-color, var(--neon-purple-glow));
    border-color: var(--card-color, var(--neon-purple));
}

.social-card-v2:hover::before { opacity: 0.3; }

.social-card-v2 .s-icon { 
    font-size: 4rem; 
    margin-bottom: 30px; 
    display: block; 
    filter: drop-shadow(0 0 15px var(--card-color, var(--neon-purple-glow)));
}

.social-card-v2 .s-name { 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: white; 
    display: block; 
    margin-bottom: 15px; 
}

.social-card-v2 .s-tag { 
    font-size: 0.9rem; 
    color: var(--text-dim); 
    font-weight: 700; 
    text-transform: uppercase; 
    letter-spacing: 2px;
}

.social-card-v2 .s-cta {
    margin-top: 30px;
    display: inline-block;
    padding: 12px 24px;
    background: var(--card-color, var(--neon-purple));
    color: white;
    font-weight: 900;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Specific Card Colors */
.card-tg { --card-color: #229ED9; }
.card-tuto { --card-color: var(--neon-green); }
.card-discord { --card-color: #5865F2; }
.card-x { --card-color: #ffffff; }
.card-x .s-cta { color: #000; }

/* Community social identity treatments: self-contained, no remote logo assets. */
.card-discord,
.card-x {
    display: flex;
    min-height: 344px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

.social-card-v2.card-discord .social-mark,
.social-card-v2.card-x .social-mark {
    width: 76px;
    height: 76px;
    margin-bottom: 26px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    line-height: 1;
    filter: none;
    position: relative;
    z-index: 1;
}

.social-card-v2.card-discord .social-mark {
    background: linear-gradient(145deg, #7381ff, #4a55d7);
    border: 1px solid rgba(201, 207, 255, 0.55);
    box-shadow: 0 13px 30px rgba(88, 101, 242, 0.38), inset 0 1px 0 rgba(255,255,255,0.32);
}

.social-card-v2 .social-mark img {
    width: 42px;
    height: 42px;
    display: block;
}

.social-card-v2.card-x .social-mark {
    background: #f7f8fa;
    color: #080a0e;
    border: 1px solid #fff;
    box-shadow: 0 13px 30px rgba(255,255,255,0.16), inset 0 1px 0 #fff;
}

.social-card-v2.card-discord:hover .social-mark,
.social-card-v2.card-x:hover .social-mark {
    transform: scale(1.06) rotate(-3deg);
}

.social-card-v2.card-discord:focus-visible,
.social-card-v2.card-x:focus-visible {
    outline: 3px solid var(--card-color);
    outline-offset: 5px;
}

@media (max-width: 768px) {
    .card-discord,
    .card-x { min-height: 300px; }
}

.card-tiktok { --card-color: #ff0050; }
.card-insta { --card-color: #E1306C; }

/* --- Floating CTA --- */
.floating-cta-box {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 280px;
    background: var(--bg-card);
    border: 2px solid var(--neon-purple);
    border-radius: 24px;
    padding: 25px;
    z-index: 1001;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), 0 0 20px var(--neon-purple-glow);
    transform: translateX(400px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(20px);
}

.floating-cta-box.visible { transform: translateX(0); }

.floating-cta-box .cta-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.floating-cta-box .close-cta {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

.floating-cta-box h4 { font-size: 1.2rem; font-weight: 900; color: white; margin-bottom: 5px; }
.floating-cta-box p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 20px; }
.floating-cta-box .btn-mini {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--grad-purple-green);
    color: white;
    text-align: center;
    text-decoration: none;
    font-weight: 900;
    border-radius: 12px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* --- Floating Stickers --- */
.sticker-float {
    position: absolute;
    pointer-events: none;
    z-index: 5;
    animation: floating-sticker 4s infinite ease-in-out;
}

@keyframes floating-sticker {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.s-offered { top: 10%; right: 5%; }
.s-triple { top: 40%; left: 2%; animation-delay: -1s; }
.s-top10 { bottom: 10%; right: 8%; animation-delay: -2s; }
.s-azz { top: 60%; right: 3%; animation-delay: -3.5s; }

@media (max-width: 1024px) {
    .social-grid-large { grid-template-columns: repeat(2, 1fr); }
    .floating-cta-box { bottom: 100px; width: calc(100% - 40px); left: 20px; right: 20px; }
}

@media (max-width: 600px) {
    .social-grid-large { grid-template-columns: 1fr; }
}

/* Reveal Animations */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

@keyframes float-particle {
    0% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-50px) translateX(20px); }
    66% { transform: translateY(-20px) translateX(-30px); }
    100% { transform: translateY(0) translateX(0); }
}

/* Reveal Animations */
.reveal-element { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal-visible { opacity: 1 !important; transform: translateY(0) !important; }

.floating-sticker-code {
    position: absolute;
    bottom: -20px;
    left: -40px;
    z-index: 30;
    width: 100%;
    min-width: 380px;
    transform: rotate(-3deg);
    transition: var(--transition);
}

.floating-sticker-code:hover {
    transform: rotate(0deg) scale(1.02);
}

@media (max-width: 1024px) {
    .floating-sticker-code {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 40px auto 0;
        transform: none;
        min-width: auto;
        max-width: 480px;
    }
}


.neon-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(124, 58, 237, 0.1);
    border-top-color: var(--neon-purple);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin { to { transform: rotate(360deg); } }

.td-loading {
    text-align: center;
    padding: 100px !important;
    font-weight: 800;
    color: var(--text-dim);
}

/* --- Rewards --- */
.rewards-section-v2 { padding: 160px 0; }
.rewards-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.reward-box {
    background: var(--bg-card); padding: 70px 40px; border-radius: var(--radius-xl);
    text-align: center; border: 1px solid var(--glass-border); position: relative;
    transition: var(--transition);
}
.reward-box:hover { transform: translateY(-10px); border-color: var(--neon-purple); }
.r-rank {
    position: absolute; top: 25px; right: 30px; font-weight: 900;
    font-size: 2.2rem; color: var(--neon-purple); text-shadow: 0 0 15px var(--neon-purple-glow);
    opacity: 0.8;
}
.reward-box.rank-1 { border-color: var(--gold); box-shadow: 0 0 50px rgba(251, 191, 36, 0.15); }
.reward-box.rank-1 .r-rank { color: var(--gold); text-shadow: 0 0 15px var(--gold-glow); }
.r-icon { font-size: 4.5rem; margin-bottom: 24px; }
.reward-box h3 { font-size: 2.5rem; font-weight: 900; margin-bottom: 10px; }

/* --- Tutorial V2 --- */
.tutorial-v2 { padding: 160px 0; background: rgba(124, 58, 237, 0.03); }
.tutorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.t-step {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    padding: 50px 40px; border-radius: var(--radius-xl); text-align: center;
    position: relative; transition: var(--transition);
}
.t-step:hover { transform: translateY(-5px); border-color: var(--neon-purple); }
.t-num {
    width: 60px; height: 60px; background: var(--neon-purple);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 30px; font-size: 1.5rem; font-weight: 900;
    box-shadow: 0 0 20px var(--neon-purple-glow);
    border: 4px dashed rgba(255, 255, 255, 0.4);
}
.t-step h3 { font-size: 1.8rem; margin-bottom: 20px; }
.t-step p { color: var(--text-dim); font-size: 1.1rem; }

/* --- Stats Row --- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 80px 0 40px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.stat-card .s-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.stat-card .s-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-card .s-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Spectacular Promo Block --- */
.spectacular-promo {
    background: #000;
    border: 2px solid var(--neon-purple);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 100px 0;
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
}

.spectacular-promo::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.promo-title-huge {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background: var(--grad-purple-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: grad-anim 5s infinite ease-in-out;
    background-size: 200% 200%;
}

.promo-subtitle-huge {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 30px;
}

.promo-desc {
    font-size: 1.4rem;
    color: var(--text-dim);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* --- Badges & Stickers --- */
.badge-sticker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.badge-sticker.purple {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--neon-purple);
    color: var(--neon-purple);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.badge-sticker.blue {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

/* --- Multi-color Scrolling Banner --- */
.scrolling-banner.multi {
    border-bottom: 2px solid #3b82f6;
}

.scrolling-banner.multi .banner-item {
    color: #fff;
}

.scrolling-banner.multi .item-purple { color: var(--neon-purple); }
.scrolling-banner.multi .item-blue { color: #3b82f6; }
.scrolling-banner.multi .item-green { color: var(--neon-green); }

/* --- Secondary Blue Button --- */
.btn-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    filter: brightness(1.1);
}

/* --- Responsive Updates --- */
@media (max-width: 1024px) {
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .promo-title-huge { font-size: 3.5rem; }
    .promo-subtitle-huge { font-size: 3rem; }
}

@media (max-width: 600px) {
    .stats-row { grid-template-columns: 1fr; }
}

/* --- Mascot Styles --- */
.mascot-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mascot-halo {
    position: absolute;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, var(--neon-purple-glow) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.6;
}

.hero-mascot-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px var(--neon-purple-glow));
    animation: hero-float 6s infinite ease-in-out;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(2deg); }
}

/* --- Leaderboard Mascot --- */
.leaderboard-wrapper {
    display: grid;
    grid-template-columns: 1fr 580px;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
    margin-bottom: 80px;
}

.leaderboard-mascot {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: sticky;
    top: 50px;
}

.leaderboard-mascot-img {
    max-width: 130%;
    width: 130%;
    height: auto;
    filter: drop-shadow(0 0 40px var(--neon-purple-glow));
    animation: leaderboard-float 8s infinite ease-in-out;
}

.mascot-speech-bubble {
    background: var(--bg-card);
    border: 2px solid var(--neon-green);
    padding: 20px 30px;
    border-radius: 20px;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    position: relative;
    box-shadow: 0 0 20px var(--neon-green-glow);
    animation: neon-breath-green 3s infinite ease-in-out;
    text-align: center;
}

.mascot-speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: var(--neon-green) transparent transparent;
}

@keyframes leaderboard-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

@media (max-width: 1100px) {
    .leaderboard-wrapper { grid-template-columns: 1fr; }
    .leaderboard-mascot { order: -1; }
    .leaderboard-mascot-img { 
        max-width: 450px; 
        width: 100%;
    }
}

/* --- Leaderboard Section Enhanced Néon --- */
.leaderboard-section-v2::before {
    content: '';
    position: absolute;
    top: 20%; right: 0;
    width: 300px; height: 300px;
    background: var(--neon-green);
    filter: blur(150px);
    opacity: 0.05;
    pointer-events: none;
}

.leaderboard-glass-box {
    border-color: var(--neon-purple);
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
}

.prize-pool {
    background: var(--grad-purple-green);
    background-size: 200% 200%;
    animation: grad-anim 5s infinite ease-in-out;
    color: white;
}

/* --- FAQ V2 --- */
.faq-v2 { padding: 160px 0; }
.faq-accordion { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.faq-item {
    background: var(--bg-card); border: 1px solid var(--glass-border);
    border-radius: 20px; overflow: hidden; transition: var(--transition);
}
.faq-item:hover { border-color: var(--neon-purple); }
.faq-item details { padding: 25px 35px; }
.faq-item summary {
    font-size: 1.3rem; font-weight: 700; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; color: var(--neon-purple); font-size: 1.8rem; }
.faq-item details[open] summary::after { content: '−'; }
.faq-item p { margin-top: 20px; color: var(--text-dim); font-size: 1.1rem; border-top: 1px solid var(--glass-border); padding-top: 20px; }

/* --- CTA Final --- */
.final-cta { padding: 160px 0; }
.cta-content {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(217, 70, 239, 0.1));
    border: 1px solid var(--neon-purple); padding: 100px 60px; border-radius: 60px;
    text-align: center; box-shadow: 0 0 60px rgba(124, 58, 237, 0.1);
    position: relative; overflow: hidden;
}
.cta-content::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, var(--neon-purple-glow) 0%, transparent 70%);
    opacity: 0.3; z-index: -1;
}
.cta-content h2 { font-size: 4rem; margin-bottom: 40px; line-height: 1.1; }
.btn-neon.large { padding: 22px 60px; font-size: 1.2rem; border-radius: 20px; }

/* --- Community V2 --- */
.community-v2 { padding: 160px 0; }
.community-neon-box {
    background: linear-gradient(135deg, var(--neon-purple), #4c1d95);
    padding: 100px 40px; border-radius: 60px; text-align: center;
    box-shadow: 0 30px 60px -20px var(--neon-purple-glow);
    position: relative; overflow: hidden;
}
.community-neon-box h2 { font-size: 4rem; margin-bottom: 20px; }
.community-neon-box p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 40px; }
.social-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 40px; }
.social-btn {
    background: rgba(255, 255, 255, 0.1); color: white; text-decoration: none;
    padding: 18px 36px; border-radius: 18px; font-weight: 800; font-size: 0.95rem;
    transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}
.social-btn:hover { background: white; color: black; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }

/* --- Footer --- */
footer { padding: 120px 0 60px; background: rgba(0, 0, 0, 0.6); border-top: 1px solid var(--glass-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 100px; margin-bottom: 80px; }
.f-brand p { margin-top: 20px; color: var(--text-dim); font-size: 1.1rem; }
.f-links h4, .f-info h4 { font-size: 1.2rem; margin-bottom: 30px; color: white; text-transform: uppercase; letter-spacing: 2px; }
.f-links ul { list-style: none; }
.f-links li { margin-bottom: 15px; }
.f-links a { color: var(--text-dim); text-decoration: none; transition: var(--transition); font-size: 1.1rem; }
.f-links a:hover { color: var(--neon-purple); padding-left: 5px; }
.f-info p { color: var(--text-dim); margin-bottom: 20px; line-height: 1.8; }
.legal-text { font-size: 0.85rem; opacity: 0.6; font-style: italic; }
.footer-bottom { text-align: center; padding-top: 50px; border-top: 1px solid var(--glass-border); color: var(--text-muted); font-size: 0.9rem; letter-spacing: 1px; }

/* --- Advanced Animations & Effects --- */
.reveal-element { 
    opacity: 0; 
    transform: translateY(40px); 
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1); 
    will-change: transform, opacity;
}

.reveal-visible { 
    opacity: 1 !important; 
    transform: translateY(0) !important; 
}

/* Staggered Entrance */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Pulse Glow Effect */
@keyframes neon-pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 10px var(--neon-purple-glow)); }
    50% { filter: drop-shadow(0 0 25px var(--neon-purple-glow)); }
}

.neon-pulse {
    animation: neon-pulse-glow 3s infinite ease-in-out;
}

/* Floating Animation Refined */
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating {
    animation: floating 4s infinite ease-in-out;
}

/* --- Sections Global Harmonization --- */
section, .section-v2, .rewards-section-v2, .tutorial-v2, .final-cta, .community-v2 { 
    padding: 120px 0; 
    position: relative; 
    border-top: 1px solid rgba(168, 85, 247, 0.05);
}

.section-title { margin-bottom: 70px; }

/* --- Cards & Containers Harmonization --- */
.b-card, .reward-box, .t-step, .social-card-v2, .reward-card-new, .stat-card {
    border-radius: 32px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
}

.reward-card-new.wide {
    padding: 80px 60px;
}

/* --- Responsive & Mobile Final Polish --- */
@media (max-width: 900px) {
    .side-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .info-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .info-item:last-child {
        border-bottom: none !important;
    }
    .example-flow {
        flex-direction: column;
    }
    .flow-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    .countdown-timer-wrapper {
        gap: 10px;
    }
    .timer-block span {
        font-size: 1.8rem;
    }
    .reward-list-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 600px) {
    .bonus-info-cards {
        grid-template-columns: 1fr 1fr !important;
    }
    .countdown-container {
        padding: 15px 20px;
    }
    .timer-block span {
        font-size: 1.5rem;
    }
    .hero-v2 h1 {
        font-size: 3rem !important;
    }
    .final-cta-section .spectacular-promo {
        padding: 30px 20px !important;
    }
    .final-cta-section h2 {
        font-size: 2.2rem !important;
    }
    .footer-top-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    .news-card {
        flex-direction: column !important;
        height: auto !important;
    }
}

@media (max-width: 400px) {
    .bonus-info-cards {
        grid-template-columns: 1fr !important;
    }
    .timer-block span {
        font-size: 1.2rem;
    }
}

/* --- Hero Polish --- */
.hero-v2 { padding: 100px 0 120px; }
.hero-intro-conversion { padding: 60px; border-radius: 40px; }

/* --- Footer Polish --- */
.footer-grid { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1.2fr; 
    gap: 80px; 
    margin-bottom: 80px; 
}


/* Animated Gradient Text */
.grad-text {
    background: var(--grad-purple-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: grad-anim 5s infinite ease-in-out;
}

/* Hover Glow Button Refinement */
.btn-neon:hover, .btn-neon-green:hover {
    box-shadow: 0 0 35px var(--neon-purple-glow);
    letter-spacing: 2px;
}

/* --- Responsive & Mobile First --- */
/* --- Fluid Typography & Hero Responsive --- */
h1 { font-size: clamp(2.5rem, 8vw, 5.5rem) !important; }
h2 { font-size: clamp(2rem, 6vw, 4rem) !important; }
p { font-size: clamp(1rem, 2vw, 1.5rem) !important; }

.no-scroll { overflow: hidden; }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text-content { display: flex; flex-direction: column; align-items: center; }
    .hero-visual { 
        display: block;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }
    .hero-mascot-img { width: 100%; }
    .neon-code-card { width: 100%; max-width: 450px; margin: 40px auto 0; }
}

@media (max-width: 768px) {
    section, .section-v2, .rewards-section-v2, .tutorial-v2, .final-cta, .community-v2 { 
        padding: 80px 0; 
    }
    
    .stats-row { grid-template-columns: 1fr 1fr; gap: 15px; }
    .bonus-cards-grid, .rewards-wrapper, .tutorial-grid, .social-grid-large { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
}

/* --- Shuffle Partnership --- */
.official-partnership {
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    gap: 14px;
    margin: 12px 0 18px;
    padding: 11px 15px;
    color: var(--text-bright);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(34, 197, 94, 0.07));
    border: 1px solid rgba(168, 85, 247, 0.5);
    border-radius: 14px;
    box-shadow: inset 0 0 22px rgba(168, 85, 247, 0.08), 0 0 24px rgba(168, 85, 247, 0.12);
    position: relative;
    overflow: hidden;
}

.official-partnership::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    animation: partnership-sheen 7s ease-in-out infinite;
}

.partner-lockup {
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.partner-azz {
    color: var(--neon-purple);
    text-shadow: 0 0 12px var(--neon-purple-glow);
}

.partner-divider {
    align-self: stretch;
    width: 1px;
    min-height: 32px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.45), transparent);
}

.partner-shuffle-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex: 0 0 auto;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.partner-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.partner-copy strong,
.footer-partnership strong {
    color: var(--neon-green);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.62rem;
    line-height: 1.35;
    letter-spacing: 0.12em;
}

.partner-copy span {
    color: var(--text-dim);
    font-size: 0.72rem;
    line-height: 1.35;
}

.footer-partnership {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: -6px 0 18px;
    padding: 7px 10px;
    color: var(--text-dim);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.footer-partnership-cross { color: var(--neon-purple); font-size: 1rem; }
.footer-partnership img { width: 20px; height: 20px; object-fit: contain; }
.footer-partnership strong { font-size: 0.52rem; }

@keyframes partnership-sheen {
    0%, 72%, 100% { transform: translateX(-100%); }
    87% { transform: translateX(100%); }
}

@media (max-width: 1024px) {
    .official-partnership { text-align: left; }
}

@media (max-width: 600px) {
    .official-partnership {
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        display: grid;
        grid-template-columns: auto 1px auto;
        justify-content: center;
        gap: 10px;
        padding: 12px;
    }
    .official-partnership > * { min-width: 0; }
    .partner-copy {
        grid-column: 1 / -1;
        width: 100%;
        text-align: center;
    }
    .partner-divider { min-height: 34px; }
    .footer-partnership { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    .official-partnership::before { animation: none; }
}

/* --- Podium & Leaderboard Polish --- */
@media (max-width: 768px) {
    .podium-container { 
        flex-direction: column; 
        align-items: center; 
        gap: 20px; 
        padding-top: 0;
    }
    .podium-item { width: 100%; max-width: 250px; }
    .podium-item.p-1 { order: -1; }
    .podium-base { height: 60px; font-size: 2rem; }
    .podium-item.p-1 .podium-base { height: 80px; }
    
    .leaderboard-glass-box { padding: 10px; border-radius: 24px; max-height: 450px; }
    .premium-table th, .premium-table td { padding: 12px 10px; font-size: 0.85rem; }
    .premium-table td:first-child { padding-left: 10px; }
    .premium-table td:last-child { padding-right: 10px; }
    .rank-badge { width: 32px; height: 32px; font-size: 0.9rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .f-brand p { margin: 20px auto; }
    .f-legal div { justify-content: center; }
}

/* --- Leaderboard: compact, readable scorecard --- */
.leaderboard-glass-box {
    width: 100%;
    min-width: 0;
    overflow-x: clip;
    padding: 14px 18px 18px;
    background: linear-gradient(135deg, rgba(12, 4, 27, 0.98), rgba(0, 0, 0, 0.98));
}

.premium-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-spacing: 0 7px;
}

.leaderboard-col-rank { width: 13%; }
.leaderboard-col-player { width: 39%; }
.leaderboard-col-wager { width: 24%; }
.leaderboard-col-reward { width: 24%; }

.premium-table th {
    padding: 12px 14px;
    font-size: clamp(0.65rem, 0.7vw, 0.82rem);
    letter-spacing: 0.13em;
    white-space: nowrap;
}

.premium-table td {
    padding: 14px;
    font-size: clamp(0.82rem, 1vw, 1rem);
    vertical-align: middle;
}

.premium-table .rank-cell { padding-left: 16px; }
.premium-table .reward-cell { padding-right: 16px; }

.player-name {
    min-width: 0;
    color: var(--text-bright);
}

.player-name-value {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wager-amount,
.reward-amount {
    font-family: 'JetBrains Mono', monospace;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.reward-amount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 5.5em;
    padding: 0.48em 0.62em;
    border: 1px solid rgba(168, 85, 247, 0.55);
    border-radius: 0.6em;
    background: rgba(168, 85, 247, 0.12);
    color: #e9d5ff;
    font-weight: 900;
    box-shadow: inset 0 0 18px rgba(168, 85, 247, 0.08), 0 0 16px rgba(168, 85, 247, 0.12);
}

@media (max-width: 620px) {
    .leaderboard-wrapper { margin-top: 26px; margin-bottom: 48px; }
    .leaderboard-glass-box { padding: 10px; border-radius: 20px; max-height: none; overflow-y: visible; }
    .premium-table,
    .premium-table tbody { display: block; }
    .premium-table colgroup,
    .premium-table thead { display: none; }
    .premium-table tr {
        display: grid;
        grid-template-columns: minmax(44px, auto) minmax(0, 1fr);
        grid-template-areas:
            "rank player"
            "wager reward";
        gap: 9px 12px;
        margin: 0 0 10px;
        padding: 13px;
        border: 1px solid rgba(168, 85, 247, 0.17);
        border-radius: 14px;
        background: rgba(168, 85, 247, 0.045);
    }
    .premium-table td,
    .premium-table td:first-child,
    .premium-table td:last-child {
        display: flex;
        min-width: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        text-align: left;
    }
    .premium-table .rank-cell { grid-area: rank; align-items: center; padding-left: 0; }
    .premium-table .player-name { grid-area: player; align-items: center; font-size: 0.98rem; }
    .premium-table .wager-cell,
    .premium-table .reward-cell {
        flex-direction: column;
        gap: 3px;
    }
    .premium-table .wager-cell { grid-area: wager; }
    .premium-table .reward-cell { grid-area: reward; align-items: flex-end; padding-right: 0; }
    .premium-table td[data-label]::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-size: 0.58rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        line-height: 1;
        text-transform: uppercase;
    }
    .premium-table .rank-cell::before,
    .premium-table .player-name::before { display: none; }
    .premium-table .wager-amount { font-size: 0.8rem; }
    .premium-table .reward-amount { min-width: 0; padding: 0.42em 0.55em; font-size: 0.76rem; }
    .premium-table tr:hover { border-color: var(--neon-purple); background: rgba(168, 85, 247, 0.09); }
    .premium-table tr:focus-within { outline: 2px solid var(--neon-green); outline-offset: 2px; }
    .rank-badge { width: 36px; height: 36px; border-radius: 10px; font-size: 0.9rem; }
}

@media (max-width: 360px) {
    .premium-table tr { grid-template-columns: 38px minmax(0, 1fr); gap: 8px; padding: 11px; }
    .premium-table .wager-amount { font-size: 0.72rem; }
    .premium-table .reward-amount { font-size: 0.68rem; }
    .rank-badge { width: 32px; height: 32px; }
}


/* Body & Overflow Fixes */
body, html {
    width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

.container {
    padding-left: 20px;
    padding-right: 20px;
}

/* Hero safeguards at narrow conversion breakpoints */
@media (max-width: 768px) {
    .hero-v2 .container,
    .hero-grid,
    .hero-text-content {
        width: 100%;
        min-width: 0;
    }

    .hero-text-content > * { min-width: 0; }

    .logo-hero,
    .hero-v2 h1,
    .hero-v2 p {
        max-width: 100% !important;
        overflow-wrap: anywhere;
    }

    .logo-hero span {
        font-size: clamp(2rem, 11vw, 3rem) !important;
    }

    .hero-v2 h1 {
        font-size: clamp(2.35rem, 12vw, 3rem) !important;
        line-height: 1.05 !important;
    }

    .hero-v2 p { width: 100%; }
}

/* Final mobile overrides: intentionally last so legacy desktop rules cannot
   override the mobile hierarchy above. */
@media (max-width: 600px) {
    .container { padding-inline: 16px; }
    .info-bandeau { padding: 8px 14px; gap: 8px; font-size: .72rem; line-height: 1.35; }
    .info-bandeau-cta { min-height: 38px; padding-inline: 14px; }

    .hero-v2 { padding: 28px 0 40px; }
    .hero-grid { gap: 20px; }
    .hero-v2 .m-sticker { margin-bottom: 8px !important; }
    .badge-live { margin-bottom: 14px; padding: 8px 13px; font-size: .72rem; }
    .official-partnership { margin: 0 0 14px; padding: 9px 11px; gap: 9px; }
    .hero-v2 h1 { margin: 0 0 12px; font-size: clamp(2.2rem, 10.8vw, 2.8rem) !important; }
    .hero-v2 p { margin: 0 0 16px; font-size: 1rem !important; line-height: 1.5; }
    .hero-visual, .stats-row { display: none; }
    .neon-code-card { margin: 16px auto 0 !important; padding: 18px 16px; border-radius: 20px; }
    .code-wrapper { gap: 12px; }
    .code-wrapper .code { font-size: clamp(1.55rem, 8vw, 2rem); letter-spacing: -.04em; }
    .code-wrapper .btn-neon-green { min-height: 48px; padding: 10px 14px; }
    .hero-actions { display: flex; width: 100%; margin: 16px 0 0 !important; gap: 10px; }
    .hero-actions .btn-glass { flex: 1; padding: 11px 10px; font-size: .72rem; }
    .hero-intro-conversion { margin-top: 24px; padding: 24px 18px; border-radius: 24px; }
    .intro-content { gap: 14px; }
    .conversion-title { font-size: 1.35rem; line-height: 1.2; }
    .intro-text { display: none; }
    .intro-buttons { width: 100%; margin-top: 0 !important; }
    .intro-buttons .btn-neon-green { width: 100%; min-height: 54px; padding: 14px 18px !important; font-size: .95rem !important; border-radius: 16px !important; }

    .promo-box-section, .bonus-section-v2, .leaderboard-section-v2, .rewards-section-v2, .tutorial-v2, .compact-info-section, .community-v2, .final-cta-section { padding: 64px 0 !important; }
    .section-title { margin-bottom: 34px; }
    .b-card, .reward-box, .t-step, .social-card-v2, .reward-card-new, .stat-card { padding: 28px 20px; border-radius: 24px; }
    .btn-neon, .btn-neon-green, .btn-glass, .promo-button, .btn-telegram, .promo-copy { min-height: 48px; justify-content: center; }
    .promo-box-section .btn-neon-green { width: 100%; padding: 14px 18px !important; font-size: .95rem !important; }
    .promo-title-huge { font-size: clamp(2rem, 10vw, 2.6rem) !important; }
    .promo-subtitle { font-size: 1.55rem !important; margin-bottom: 18px !important; }

    #leaderboard-podium, .leaderboard-mascot, .sticker-float { display: none; }
    .leaderboard-header { margin-bottom: 26px !important; }
    .leaderboard-header > p { font-size: 1.08rem !important; }
    .countdown-container { width: 100%; padding: 14px 10px; }
    .countdown-timer-wrapper { justify-content: space-around; gap: 4px; }
    .timer-block span { font-size: 1.35rem; }
    .live-status-pill { max-width: 100%; padding: 10px 13px !important; }
    #live-indicator-text { font-size: .68rem !important; letter-spacing: .04em !important; }
    .min-wager-alert { font-size: .7rem !important; line-height: 1.35; }
    .leaderboard-info-box { padding: 20px 14px !important; }
    .reward-list-container { padding: 20px 14px !important; }
    .social-card-v2 { min-height: 250px !important; }
    .social-card-v2 .s-icon { margin-bottom: 18px; }
    .social-card-v2 .s-cta { margin-top: 20px; }

    .premium-promo { width: calc(100% - 20px); bottom: 8px; padding: 4px; }
    .premium-inner { padding: 10px 12px; gap: 8px; }
    .promo-top { flex-direction: column; align-items: stretch; gap: 8px; }
    .promo-left { min-width: 0; justify-content: center; }
    .promo-right-top, .promo-actions { width: 100%; }
    .promo-actions { gap: 8px; }
    .promo-actions > a { flex: 1; min-width: 0; padding: 10px 8px; text-align: center; font-size: .73rem; }
    .promo-bottom { padding-top: 8px; }
    .promo-sub { display: none; }
    .promo-code { width: 100%; justify-content: space-between; gap: 8px; padding: 8px 10px; }
    .promo-code .code-value { font-size: 1rem; letter-spacing: 2px; }
    .promo-copy { padding: 7px 10px; font-size: .72rem; }
    .promo-close { width: 36px; height: 36px; }
}

/* Reordered hero: the offer now completes the conversion sequence. */
.hero-offer-card {
    width: min(100%, 500px);
    margin-top: 28px;
    padding: 26px 28px;
    border: 1px solid var(--glass-border-green);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(15, 2, 35, 0.92) 48%, rgba(168, 85, 247, 0.2));
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.12), inset 0 1px rgba(255, 255, 255, 0.08);
}
.offer-kicker { color: var(--neon-green); font-family: 'JetBrains Mono', monospace; font-size: .72rem; font-weight: 900; letter-spacing: .13em; }
.offer-value { margin: 4px 0; color: #fff; font-size: clamp(2.7rem, 5vw, 4rem); font-weight: 900; line-height: 1; text-shadow: 0 0 20px var(--neon-green-glow); }
.hero-offer-card p { margin: 0 0 18px; font-size: 1rem !important; }
.hero-offer-card .btn-neon-green { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 14px; text-decoration: none; color: #07150a; font-weight: 900; }

@media (max-width: 1024px) {
    .desktop-only-socials { display: flex; margin-left: auto; }
    .mobile-menu-toggle { order: 3; margin-left: 4px; }
}

@media (max-width: 600px) {
    header { padding: 12px 0; }
    .desktop-only-socials { gap: 8px; }
    .desktop-only-socials .social-icon.x-link { display: none; }
    .hero-offer-card { margin-top: 18px; padding: 22px 18px; text-align: left; }
    .hero-offer-card .btn-neon-green { width: 100%; }
}

/* Keep the AZZPRONOS mascot in the first mobile viewport without making the
   conversion sequence (copy, code and offer) taller. */
@media (max-width: 768px) {
    .hero-grid {
        position: relative;
        display: block;
    }

    .hero-text-content {
        display: block;
        text-align: left;
    }

    .hero-visual {
        display: block;
        position: absolute;
        top: -6px;
        right: -8px;
        width: clamp(118px, 32vw, 180px);
        height: 158px;
        margin: 0;
        overflow: hidden;
        pointer-events: none;
        z-index: 0;
    }

    .hero-text-content { position: relative; z-index: 1; }
    .official-partnership { margin-right: 112px; }
    .hero-v2 h1 { padding-right: 102px; }

    .mascot-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .mascot-halo { width: 115%; height: 115%; }

    .hero-mascot-img {
        width: 100%;
        max-height: 158px;
        object-fit: contain;
        object-position: right top;
    }
}

@media (max-width: 420px) {
    .hero-visual { width: 118px; height: 142px; right: -12px; }
    .hero-mascot-img { max-height: 142px; }
    .official-partnership { margin-right: 92px; }
    .hero-v2 h1 { padding-right: 88px; }
}

/* Final hero override: keep IMG_6352 visible immediately on entry, even on
   narrow screens where earlier rules hide the visual block. */
@media (max-width: 768px) {
    .hero-v2 {
        padding-top: 24px;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column;
        gap: 14px;
    }

    .hero-visual {
        display: block !important;
        position: static !important;
        order: -1;
        width: min(220px, 58vw);
        height: auto;
        margin: 0 auto 8px;
        overflow: visible;
        pointer-events: none;
    }

    .hero-text-content {
        position: relative;
        z-index: 1;
    }

    .hero-mascot-img {
        width: 100%;
        max-height: none;
        object-fit: contain;
        object-position: center top;
    }

    .official-partnership,
    .hero-v2 h1 {
        margin-right: 0;
        padding-right: 0;
    }

    .hero-description {
        max-width: 44rem;
    }
}
