* {
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .hero {
        animation: none !important;
    }
}

/* ========================================================= */
/* ================= GLOBAL BACKGROUND ===================== */
/* ========================================================= */

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    background-color: #020617;
    -webkit-overflow-scrolling: touch;
    /* Χρησιμοποιούμε το ίδιο deep blue gradient για συνοχή */
    background: radial-gradient(circle at top, #0c1428, #020617 65%);
    color: #e5e7eb;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

    /* Το Blur Layer που "απογειώνει" το design */
    body::before {
        background-color: #020617;
        will-change: transform;
        content: "";
        position: fixed;
        inset: -10%;
        background-image: url("../img/logo-home-page-1024x912.webp");
        background-size: cover;
        background-position: center;
        filter: blur(45px); /* Ισορροπημένο blur */
        opacity: 0.07; /* Διακριτικό transparency */
        /* Χρησιμοποιούμε τη μεταβλητή για το κούνημα που ήθελες */
        transform: var(--bg-move, scale(1.1));
        transition: transform 0.2s cubic-bezier(0.2, 0, 0.2, 1);
        z-index: -1;
        pointer-events: none;
    }

/* ========================================================= */
/* ================= HERO OVERLAY FIX ====================== */
/* ========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Το κάνουμε λίγο πιο διάφανο (0.92 αντί για 0.95) για να "περνάει" το blur */
    background: linear-gradient(90deg, rgba(2,6,23,0.92), rgba(2,6,23,0.4));
}

/* ========================================================= */
/* ================= GLASSMORPHISM CARDS =================== */
/* ========================================================= */

/* Προαιρετικά: Κάνουμε τα cards λίγο πιο "γυάλινα" για να δένουν με το blur */
.home-card, .reason-card, .liquid-card {
    backdrop-filter: blur(8px);
    background: rgba(15, 23, 42, 0.6) !important; /* Semi-transparent */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* TOPBAR FIX */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    /* 1. Χαμηλώνουμε το opacity στο background για να "περάσει" το blur του body */
    background: rgba(2, 6, 23, 0.4);
    /* 2. Το backdrop-filter θα θολώνει το περιεχόμενο που περνάει από πίσω καθώς σκρολάρεις */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Για υποστήριξη σε iOS/Safari */
    /* 3. Προσθέτουμε ένα διακριτικό border στο κάτω μέρος για να ξεχωρίζει από το background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 22px;
    font-weight: 900;
}

    .logo span {
        color: #f5a524;
    }

.topbar nav a {
    margin-left: 20px;
    color: #9ca3af;
    text-decoration: none;
    font-weight: 600;
}

    .topbar nav a:hover,
    .topbar nav a.active {
        color: #fff;
    }

/* HERO */
.hero {
    position: relative;
    height: 70vh;
    max-height: 720px;
    background: url("../img/logo-home-page-1024x912.webp") no-repeat;
    background-size: cover;
    background-position: center 20%;
    animation: hero-pan 15s ease-in-out infinite;
    display: flex;
    align-items: center;
}

@keyframes hero-pan {
    0% {
        background-position: 50% 30%;
    }

    50% {
        background-position: 52% 23%;
    }

    100% {
        background-position: 50% 20%;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(2,6,23,.95), rgba(2,6,23,.55));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 720px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
}

    .hero h1 span {
        color: #f5a524;
    }

.hero p {
    color: #cbd5f5;
    line-height: 1.6;
    margin: 16px 0 26px;
}

/* SOCIALS */
.socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.soc {
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
}

.twitch {
    background: #9146ff;
}

.discord {
    background: #5865f2;
}

.insta {
    background: #e1306c;
}

.yt {
    background: #ff0000;
}

.fb {
    background: #1877f2;
}

.tt {
    background: #000;
}

/* SECTION */
.home-section {
    padding: 90px 20px;
    display: flex;
    justify-content: center;
}

.home-card {
    max-width: 900px;
    width: 100%;
    background: linear-gradient(180deg, #0f172a, #020617);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,.7);
}

/* LIQUID STATS */
.stats-liquid {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

@media (max-width: 900px) {
    .stats-liquid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.liquid-card {
    position: relative;
    height: 170px;
    border-radius: 22px;
    background: radial-gradient(circle at top, #0f172a, #020617);
    box-shadow: inset 0 0 0 1px rgba(96,165,250,.2), 0 25px 60px rgba(0,0,0,.7);
    overflow: hidden;
}

/* LIQUID */
.liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    animation: fill 2.2s ease-out forwards;
}

/* GRADIENTS */
[data-color="gold"] .liquid {
    background: linear-gradient(180deg,#ffd966,#fbbf24,#f59e0b,#b45309);
}

[data-color="amber"] .liquid {
    background: linear-gradient(180deg,#ffe29a,#fbbf24,#f59e0b,#92400e);
}

[data-color="orange"] .liquid {
    background: linear-gradient(180deg,#ffd6a5,#fb923c,#f97316,#9a3412);
}

[data-color="deep"] .liquid {
    background: linear-gradient(180deg,#fff3a3,#fde047,#facc15,#ca8a04);
}

/* WAVE */
.liquid::before,
.liquid::after {
    content: "";
    position: absolute;
    top: -18px;
    width: 200%;
    height: 40px;
    background: rgba(255,200,80,.25);
    border-radius: 45%;
    animation: wave 4s linear infinite;
}

.liquid::after {
    animation-delay: -2s;
    opacity: .2;
}

/* PERCENT */
.liquid-percent {
    position: absolute;
    right: 14px;
    top: 14px;
    font-size: 18px;
    font-weight: 900;
    color: #020617;
    background: rgba(255,215,100,.9);
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

/* LABEL */
.stat-name {
    position: absolute;
    bottom: 12px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #000080;
}

/* ANIMATIONS */
@keyframes fill {
    to {
        height: var(--fill);
    }
}

@keyframes wave {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* FOOTER */
.footer {
    padding: 40px;
    text-align: center;
    color: #9ca3af;
    font-size: 13px;
}

/* ===== WELCOME / MISSION ===== */

.home-card.soft {
    background: linear-gradient(180deg, #0b1220, #020617);
}

.home-card .lead {
    font-size: 16px;
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 28px;
}

.home-card h3 {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 900;
    color: #f5a524;
}

/* REASONS GRID */
.reasons-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 800px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}

.reason-card {
    background: radial-gradient(circle at top, #0f172a, #020617);
    border-radius: 18px;
    padding: 22px;
    box-shadow: inset 0 0 0 1px rgba(96,165,250,.2), 0 20px 40px rgba(0,0,0,.6);
}

    .reason-card h4 {
        margin: 0 0 8px;
        font-size: 16px;
        font-weight: 900;
        color: #60a5fa;
    }

    .reason-card p {
        margin: 0;
        font-size: 14px;
        color: #cbd5f5;
        line-height: 1.6;
    }

/* CLOSING TEXT */
.closing {
    margin-top: 36px;
    font-size: 15px;
    color: #e5e7eb;
    line-height: 1.7;
    text-align: center;
}

.music-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.music-btn {
    background: rgba(255, 191, 0, 0.8); /* Χρυσό/Amber χρώμα όπως το theme σου */
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-size: 24px;
    transition: transform 0.3s ease;
}

    .music-btn:hover {
        transform: scale(1.1);
    }

/* Animation για όταν παίζει η μουσική */
.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 191, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 191, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 191, 0, 0);
    }
}

/* ===== TOPBAR MOBILE MENU ===== */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #fff;
}

/* Desktop */
.topbar nav {
    display: flex;
    gap: 26px;
}

/* Mobile */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        position: relative; /* 🔥 Προσθήκη: για να δουλέψει το z-index */
        z-index: 1001;      /* 🔥 Προσθήκη: πάνω από όλα για να μην το καβαλάνε τα socials/email */
        user-select: none;  /* 🔥 Προσθήκη: clean touch */
        -webkit-tap-highlight-color: transparent;
    }

    .topbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;      /* 🔥 Προσθήκη: σιγουρεύουμε όλο το topbar */
    }

            .topbar nav {
                position: absolute;
                top: 64px;
                right: 16px;
                background: rgba(2,6,23,.95);
                border-radius: 16px;
                padding: 16px 20px;
                flex-direction: column;
                gap: 14px;
                display: none;
                box-shadow: 0 20px 60px rgba(0,0,0,.6);
                z-index: 999;       /* Ήδη το είχες, απλά το αφήνεις */
            }

            .topbar nav.open {
                display: flex;
            }

            .topbar nav a {
                font-size: 15px;
                white-space: nowrap;
            }
}

@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 85dvh;
        background-position: center 18%;
    }

    .hero-content {
        padding: 120px 24px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }
}

.liquid-card {
    position: relative;
    height: 170px;
    border-radius: 22px;
    background: radial-gradient(circle at top, #0f172a, #020617);
    box-shadow: inset 0 0 0 1px rgba(96,165,250,.2), 0 25px 60px rgba(0,0,0,.7);
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
    transform-style: preserve-3d;
}

    .liquid-card:hover {
        transform: translateY(-10px) rotateX(6deg) rotateY(-6deg);
        box-shadow: inset 0 0 0 1px rgba(96,165,250,.3), 0 35px 80px rgba(0,0,0,.9), 0 0 40px rgba(255,180,50,.4);
    }

.liquid {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0;
    animation: fill 2.2s ease-out forwards, gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.casino-balance {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.balance-item {
    background: linear-gradient(145deg, #0b1220, #020617);
    padding: 22px 26px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,.7);
    border: 1px solid rgba(255,215,100,.15);
}

.balance-header {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: .5px;
}

    .balance-header span:first-child {
        color: #f5a524;
    }

.value {
    color: #e5e7eb;
}

.balance-bar {
    height: 14px;
    background: #0f172a;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(0,0,0,.8);
}

.balance-fill {
    height: 100%;
    border-radius: 999px;
    position: relative;
    animation: growBar 1.4s ease forwards;
}

    .balance-fill::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
        animation: shine 3s infinite;
    }

/* Colors */
.gold {
    background: linear-gradient(90deg,#ffd966,#fbbf24,#f59e0b);
}

.orange {
    background: linear-gradient(90deg,#fb923c,#f97316,#ea580c);
}

.green {
    background: linear-gradient(90deg,#34d399,#10b981,#059669);
}

.blue {
    background: linear-gradient(90deg,#60a5fa,#3b82f6,#2563eb);
}

/* Animations */
@keyframes growBar {
    from {
        width: 0;
    }
}

@keyframes shine {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(200%);
    }
}

.logo {
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    color: #fff;
}

    .logo span {
        color: #f5a524;
    }

/* ================= LIVE SECTION ================= */

.live-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    animation: liveReveal .8s cubic-bezier(.16,1,.3,1);
}

@keyframes liveReveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
}

.live-container {
    width: 100%;
    max-width: 1100px;
    background: rgba(15,23,42,.6);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 40px 120px rgba(0,0,0,.8), 0 0 60px rgba(245,165,36,.15);
    text-align: center;
}

.live-header {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #f5a524;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.live-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc2626;
    animation: pulseLive 1.5s infinite;
}

@keyframes pulseLive {
    0% {
        box-shadow: 0 0 0 0 rgba(220,38,38,.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(220,38,38,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220,38,38,0);
    }
}

.live-player-wrapper {
    position: relative;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,.7);
}

    .live-player-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* SLOT MACHINE SECTION */
.slot-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.slot-container {
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 40px;
    border-radius: 30px;
    border: 2px solid #f5a524;
    text-align: center;
    box-shadow: 0 0 50px rgba(245, 165, 36, 0.2);
    max-width: 500px;
    width: 100%;
}

.slot-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 30px;
}

    .slot-title span {
        color: #f5a524;
    }

.slot-machine {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    perspective: 1000px;
}

.reel {
    width: 100px;
    height: 120px;
    background: #020617;
    border: 3px solid #1e293b;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px #000;
}

/* Animation για το "τρέμουλο" του spin */
.spinning {
    animation: blurSpin 0.1s infinite linear;
}

@keyframes blurSpin {
    0% {
        transform: translateY(-10px);
        filter: blur(2px);
    }

    50% {
        transform: translateY(10px);
        filter: blur(4px);
    }

    100% {
        transform: translateY(-10px);
        filter: blur(2px);
    }
}

.spin-button {
    background: linear-gradient(180deg, #f5a524, #b45309);
    border: none;
    padding: 15px 40px;
    border-radius: 999px;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(180, 83, 9, 0.4);
}

    .spin-button:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(180, 83, 9, 0.6);
    }

    .spin-button:disabled {
        background: #4b5563;
        cursor: not-allowed;
    }

.slot-message {
    margin-top: 36px;
    font-weight: 600;
    color: white;
    min-height: 24px;
}

.reel-inner img {
    width: 70px; /* Προσάρμοσέ το ανάλογα με το μέγεθος των reels σου */
    height: 70px;
    object-fit: contain;
    display: block;
}

/* Εφέ λάμψης όταν κερδίζει */
.win-flash {
    animation: flash 0.5s infinite alternate;
}

@keyframes flash {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0.8;
        transform: scale(1.1);
        filter: brightness(1.5);
    }
}

/* Το reel λειτουργεί ως "παράθυρο" */
.reel {
    width: 100px;
    height: 120px;
    background: #020617;
    border: 3px solid #1e293b;
    border-radius: 15px;
    overflow: hidden; /* Κρύβει τις υπόλοιπες εικόνες της λωρίδας */
    position: relative;
    box-shadow: inset 0 0 25px #000;
}

/* Η λωρίδα με τις εικόνες */
.reel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    width: 100%;
    transition: transform 0.1s ease-out; /* Για το ομαλό σταμάτημα */
}

    .reel-inner img {
        width: 70px;
        height: 120px; /* Ίδιο ύψος με το reel για να κεντράρεται κάθε εικόνα */
        padding: 20px 0;
        object-fit: contain;
    }

/* Animation "τρεξίματος" */
.spinning-fast {
    animation: slide-up 0.1s linear infinite;
}

@keyframes slide-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-240px);
    }
    /* Μετατόπιση κατά 2 εικόνες ύψος */
}

/* Εφέ αναπήδησης στο σταμάτημα */
.bounce-stop {
    animation: bounce-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes bounce-in {
    0% {
        transform: translateY(-50px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Διόρθωση στο reel-inner για να χωράει τη λωρίδα */
.reel-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: absolute;
    bottom: 0; /* Ξεκινάμε από κάτω */
    width: 100%;
}

/* Animation για γρήγορο "τρέξιμο" */
.spinning-fast {
    animation: slide-scroll 0.1s linear infinite;
}

@keyframes slide-scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(120px); } /* Μετατόπιση κατά το ύψος ενός συμβόλου */
}

/* Εφέ αναπήδησης (Bounce) στο σταμάτημα */
.bounce-stop {
    animation: bounce-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounce-in {
    0% { transform: translateY(-30px); filter: blur(2px); }
    100% { transform: translateY(0); filter: blur(0); }
}

/* Flash για το Jackpot */
.win-flash {
    animation: win-glow 0.5s infinite alternate;
    border-color: #f5a524 !important;
}

@keyframes win-glow {
    from { box-shadow: inset 0 0 20px #000; }
    to { box-shadow: inset 0 0 40px rgba(245, 165, 36, 0.8), 0 0 20px rgba(245, 165, 36, 0.5); }
}

.reel {
    width: 110px;
    height: 120px; /* Ίδιο ύψος με τις εικόνες στο JS */
    background: #020617;
    border: 3px solid #1e293b;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px #000;
}

.spinning-fast {
    animation: slide-scroll 0.1s linear infinite;
}

@keyframes slide-scroll {
    /* Μετατόπιση κατά το ύψος μιας εικόνας (120px) */
    100% {
        transform: translateY(-120px);
    }
}

.bounce-stop {
    animation: bounce-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounce-in {
    0% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Animation για το "χάσιμο" */
.shake-animation {
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

/* Flash εφέ για το Jackpot (παραμένει) */
.win-flash {
    animation: win-glow 0.5s infinite alternate;
    border-color: #f5a524 !important;
}

@keyframes win-glow {
    to {
        box-shadow: 0 0 30px #f5a524, inset 0 0 20px #f5a524;
    }
}

.age-gate {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.age-box {
    text-align: center;
    color: white;
    max-width: 500px;
}

.btn-enter, .btn-exit {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: none;
    cursor: pointer;
}

.btn-enter {
    background: green;
    color: white;
}

.btn-exit {
    background: red;
    color: white;
}

/* ========================================================= */
/* ================= ΔΙΟΡΘΩΣΗ NAVIGATION =================== */
/* ========================================================= */

/* 1. Βασικό στυλ για όλα τα links */
.topbar nav a {
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

    /* 2. Δημιουργούμε τη γραμμή (::after) για ΟΛΑ τα links */
    .topbar nav a::after {
        content: '';
        position: absolute;
        width: 0; /* Ξεκινάει κλειστή */
        height: 2px;
        bottom: -5px;
        left: 0;
        background-color: #f5a524;
        transition: width 0.3s ease;
    }

/* 3. DESKTOP ANIMATION: Μόνο όταν υπάρχει ποντίκι */
@media (hover: hover) {
    .topbar nav a:hover::after {
        width: 100%;
    }

    .topbar nav a:hover {
        color: #fff;
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
    }
}

/* 4. ACTIVE STATE: Η γραμμή είναι μόνιμα στο 100% (ΧΩΡΙΣ border-bottom) */
.topbar nav a.active {
    color: #fff !important;
}

    .topbar nav a.active::after {
        width: 100%; /* Κρατάει τη γραμμή ανοιχτή χωρίς δεύτερο border */
    }

/* 5. MOBILE SETTINGS */
@media (max-width: 768px) {
    /* Στο κινητό βγάζουμε τελείως τη γραμμή για να είναι clean το menu */
    .topbar nav a::after {
        display: none !important;
    }

    .topbar nav a.active {
        color: #f5a524 !important; /* Απλά αλλάζουμε χρώμα στο κείμενο */
        border-bottom: none !important;
    }
}

/* ================= LIVE BAR STYLE ================= */
.live-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    /* ΕΔΩ ΕΙΝΑΙ ΤΑ ΧΡΩΜΑΤΑ ΠΟΥ ΧΑΘΗΚΑΝ */
    background: linear-gradient(90deg, #ff0000, #9146ff, #ff0000);
    background-size: 200% auto;
    animation: rainbow 4s linear infinite;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.live-bar.hidden {
    display: none !important;
}

/* ΣΠΡΩΞΙΜΟ SITE ΓΙΑ ΝΑ ΜΗΝ ΚΑΛΥΠΤΕΙ ΤΟ LOGO */
/* Αντί για :has που μπορεί να μην παίζει, το κάνουμε σίγουρα */
body.live-active {
    margin-top: 45px;
}
body.live-active .topbar {
    top: 45px;
}

@keyframes rainbow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.live-content {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.live-pulse {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: pulseLiveBar 1.5s infinite;
}

@keyframes pulseLiveBar {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.live-text {
    font-weight: 900;
    font-size: 13px;
    color: white;
    text-transform: uppercase;
    margin: 0;
}

.btn-live {
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    text-decoration: none;
    color: #fff;
    background: #6441a5;
    border: 1px solid rgba(255,255,255,0.4);
}

.close-bar-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

/* Tournament Top Bar */
.tournament-top-bar {
    background: linear-gradient(90deg, #1a1a1a 0%, #3d0b0b 50%, #1a1a1a 100%);
    border-bottom: 2px solid #ff4e50;
    color: #fff;
    padding: 10px 0;
    font-family: sans-serif;
    position: relative;
    z-index: 1000;
}

.t-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.t-badge {
    background: #ff4e50;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: bold;
    animation: blink 1s infinite;
}

.t-text {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.t-text strong {
    color: #f9d423; /* Χρυσό για τα νούμερα */
}

.t-cta {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transition: 0.3s;
}

.t-cta:hover {
    background: #ff4e50;
    color: #fff;
    transform: scale(1.05);
}

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

/* Mobile Fix */
@media (max-width: 768px) {
    .t-container { flex-direction: column; text-align: center; gap: 8px; }
    .t-text { font-size: 12px; }
}

.email {
    background: rgba(255, 255, 255, 1);
    border: 1px solid rgba(0, 0, 0, 1);
    color: #111 !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================= HOME PAGE ENHANCEMENTS ================= */

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    z-index: 1000002;
    padding: 12px 20px;
    background: #f5a524;
    color: #000;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.section-title {
    margin: 0 0 16px;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}

.subsection-title {
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 900;
    color: #f5a524;
}

.home-section-tight {
    padding-top: 40px;
    padding-bottom: 40px;
}

.home-card-flat {
    background: rgba(15, 23, 42, 0.45) !important;
}

/* Hero */
.hero-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(245, 165, 36, 0.12);
    border: 1px solid rgba(245, 165, 36, 0.35);
    color: #f5a524;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-lead {
    color: #cbd5f5;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 560px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #f5a524, #ffb338);
    color: #000;
    box-shadow: 0 10px 30px rgba(245, 165, 36, 0.35);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero:hover {
    transform: translateY(-2px);
}

.hero-disclaimer {
    max-width: 560px;
    margin: 0 0 28px;
    font-size: 12px;
    line-height: 1.6;
    color: #94a3b8;
}

/* Quick nav */
.quick-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.quick-nav-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 18px;
    border-radius: 18px;
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.quick-nav-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 165, 36, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.quick-nav-icon {
    font-size: 28px;
    line-height: 1;
}

.quick-nav-label {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
}

.quick-nav-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #94a3b8;
}

/* Featured giveaway */
.featured-giveaway-section[hidden] {
    display: none !important;
}

.featured-giveaway-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 165, 36, 0.35) !important;
    background: linear-gradient(135deg, rgba(245, 165, 36, 0.08), rgba(15, 23, 42, 0.9)) !important;
}

.featured-giveaway-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 6px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    animation: pulseLive 1.5s infinite;
}

.featured-giveaway-name {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.featured-giveaway-prize {
    margin: 0 0 12px;
    font-size: 15px;
    color: #f5a524;
    font-weight: 700;
}

.featured-giveaway-countdown {
    margin: 0 0 20px;
    font-size: 14px;
    color: #cbd5e1;
}

/* Slot subtitle */
.slot-subtitle {
    margin: -18px 0 28px;
    font-size: 13px;
    color: #94a3b8;
}

/* Responsible gambling strip */
.rg-strip {
    padding: 0 20px 90px;
    display: flex;
    justify-content: center;
}

.rg-strip-inner {
    width: 100%;
    max-width: 900px;
    padding: 28px 32px;
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(220, 38, 38, 0.25);
    text-align: center;
}

.rg-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 900;
    color: #fca5a5;
}

.rg-strip-inner p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #cbd5e1;
}

.rg-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
}

.rg-links a {
    color: #f5a524;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.rg-links a:hover {
    text-decoration: underline;
}

.menu-toggle {
    background: none;
    border: none;
    padding: 4px 8px;
}

@media (max-width: 900px) {
    .quick-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 14px 16px;
    }

    .hero-glow {
        display: none;
    }

    body::before {
        inset: 0;
        transform: scale(1.05) !important;
    }

    .hero-content {
        padding: 32px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-hero {
        width: 100%;
    }

    .quick-nav {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }

    .live-giveaways-grid {
        grid-template-columns: 1fr;
    }

    .home-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .slot-container-premium {
        padding: 28px 18px;
    }

    .slot-machine-frame {
        padding: 14px 10px;
    }

    .reel {
        width: 88px !important;
    }
}

/* ================= HERO POLISH ================= */

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 1;
}

.hero-glow-a {
    width: 420px;
    height: 420px;
    background: #f5a524;
    top: 10%;
    left: -5%;
    animation: floatGlow 8s ease-in-out infinite;
}

.hero-glow-b {
    width: 360px;
    height: 360px;
    background: #6366f1;
    bottom: 5%;
    right: 0;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
}

.section-subtitle {
    margin: -8px 0 24px;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.live-giveaways-header {
    max-width: 1100px;
    margin: 0 auto 8px;
    padding: 0 20px;
    text-align: center;
}

.live-giveaways-section {
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.live-giveaways-section[hidden] {
    display: none !important;
}

.live-giveaways-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.live-giveaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    align-items: stretch;
}

.live-giveaways-footer {
    display: flex;
    justify-content: center;
    margin-top: 28px;
    padding-top: 4px;
}

.live-giveaway-card {
    position: relative;
    display: grid;
    grid-template-columns: 140px 1fr;
    min-height: 168px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.98));
    border: 1px solid rgba(245, 165, 36, 0.35);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(245, 165, 36, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.live-giveaway-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.65), 0 0 50px rgba(245, 165, 36, 0.15);
}

.live-giveaway-live {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 6px;
    background: #dc2626;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    animation: pulseLive 1.5s infinite;
}

.live-giveaway-thumb {
    height: 100%;
    min-height: 168px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #1e293b 0%, #0f172a 70%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-giveaway-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 8px;
    box-sizing: border-box;
    transition: transform 0.5s ease;
}

.live-giveaway-card:hover .live-giveaway-thumb img {
    transform: scale(1.06);
}

.live-giveaway-content {
    padding: 18px 20px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
    min-width: 0;
}

.live-giveaway-title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.live-giveaway-prize {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: #f5a524;
}

.live-giveaway-countdown {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
    font-weight: 600;
}

.live-giveaway-cta {
    margin-top: 8px;
    width: auto;
    align-self: flex-start;
    padding: 10px 18px !important;
    font-size: 12px !important;
    text-align: center;
}

/* ================= EPIC SLOT CABINET ================= */

.slot-section-premium {
    padding: 80px 20px 100px;
    position: relative;
    overflow-x: hidden;
    box-sizing: border-box;
}

.slot-cabinet {
    position: relative;
    max-width: min(620px, 100%);
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.slot-marquee {
    overflow: hidden;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(180deg, #1a0a00, #0a0500);
    border: 2px solid #f5a524;
    border-bottom: none;
    padding: 10px 0;
    box-shadow: 0 0 30px rgba(245, 165, 36, 0.25);
}

.slot-marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 18s linear infinite;
}

.slot-marquee-track span {
    padding-right: 60px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.2em;
    color: #ffd966;
    text-shadow: 0 0 12px rgba(255, 217, 102, 0.8);
}

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

.slot-container-premium {
    max-width: none !important;
    border-radius: 0 0 28px 28px !important;
    border-top: none !important;
    padding: 32px 28px 36px !important;
    background: linear-gradient(165deg, #1a1030 0%, #0a0f1f 40%, #020617 100%) !important;
    box-shadow:
        0 0 0 1px rgba(245, 165, 36, 0.3),
        0 30px 80px rgba(0, 0, 0, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
    position: relative;
    overflow: hidden;
}

.slot-led-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
}

.slot-led {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f5a524;
    box-shadow: 0 0 8px #f5a524;
    animation: ledChase 1.2s ease-in-out infinite;
}

.slot-led:nth-child(2) { animation-delay: 0.1s; }
.slot-led:nth-child(3) { animation-delay: 0.2s; }
.slot-led:nth-child(4) { animation-delay: 0.3s; }
.slot-led:nth-child(5) { animation-delay: 0.4s; }
.slot-led:nth-child(6) { animation-delay: 0.5s; }
.slot-led:nth-child(7) { animation-delay: 0.6s; }
.slot-led:nth-child(8) { animation-delay: 0.7s; }
.slot-led:nth-child(9) { animation-delay: 0.8s; }

@keyframes ledChase {
    0%, 100% { opacity: 0.25; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); box-shadow: 0 0 16px #ffd966; }
}

.slot-header-premium {
    text-align: center;
    margin-bottom: 20px;
}

.slot-eyebrow {
    margin: 0 0 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.25em;
    color: #94a3b8;
}

.slot-title-premium {
    margin: 0;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-shadow: 0 0 30px rgba(245, 165, 36, 0.5);
}

.slot-title-premium span {
    color: #f5a524;
}

.slot-title-sub {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.35em;
    color: #ffd966;
    text-shadow: 0 0 20px rgba(255, 217, 102, 0.6);
}

.slot-section-premium .slot-subtitle {
    margin: 12px auto 0;
    max-width: 380px;
    font-size: 12px;
    color: #64748b;
}

.slot-hud {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 12px;
    margin-bottom: 22px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.slot-hud-label {
    display: block;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #64748b;
    margin-bottom: 4px;
}

.slot-hud-value {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}

.slot-hud-jackpot .slot-hud-value {
    color: #f5a524;
    text-shadow: 0 0 12px rgba(245, 165, 36, 0.5);
}

.slot-heat-bar {
    height: 8px;
    margin-top: 8px;
    border-radius: 999px;
    background: #1e293b;
    overflow: hidden;
}

.slot-heat-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #3b82f6, #f5a524, #ef4444);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(245, 165, 36, 0.6);
}

.slot-machine-frame {
    position: relative;
    padding: 20px 16px;
    margin-bottom: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #0f172a, #020617);
    border: 3px solid #334155;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.9),
        0 0 30px rgba(245, 165, 36, 0.1);
}

.slot-payline {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 50%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent, rgba(245, 165, 36, 0.9), transparent);
    box-shadow: 0 0 12px rgba(245, 165, 36, 0.8);
    z-index: 5;
    pointer-events: none;
    animation: paylinePulse 2s ease-in-out infinite;
}

@keyframes paylinePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.slot-glass-reflection {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 40%, transparent 100%);
    border-radius: 17px;
    pointer-events: none;
    z-index: 4;
}

.spin-button-premium {
    position: relative;
    width: 100%;
    padding: 18px 32px !important;
    font-size: 16px !important;
    letter-spacing: 0.12em;
    overflow: hidden;
    border: 2px solid rgba(255, 217, 102, 0.5) !important;
}

.spin-btn-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
    transform: translateX(-100%);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0%, 70%, 100% { transform: translateX(-100%); }
    85% { transform: translateX(100%); }
}

.spin-btn-text {
    position: relative;
    z-index: 1;
}

.slot-win-text {
    color: #f5a524;
    font-weight: 900;
    font-size: 18px;
    text-shadow: 0 0 20px rgba(245, 165, 36, 0.6);
    animation: winTextPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes winTextPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.cabinet-jackpot {
    animation: cabinetGlow 0.6s ease-in-out 3;
}

@keyframes cabinetGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.15); }
}

.cabinet-shake {
    animation: cabinetShake 0.45s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes cabinetShake {
    10%, 90% { transform: translate3d(-2px, 0, 0); }
    20%, 80% { transform: translate3d(4px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-6px, 0, 0); }
    40%, 60% { transform: translate3d(6px, 0, 0); }
}

.jackpot-flash {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: radial-gradient(circle, rgba(255, 217, 102, 0.5) 0%, transparent 70%);
    pointer-events: none;
    z-index: 20;
    opacity: 0;
}

.jackpot-flash.active {
    animation: jackpotBurst 0.9s ease-out forwards;
}

@keyframes jackpotBurst {
    0% { opacity: 0; transform: scale(0.8); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: scale(1.2); }
}

.slot-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 30;
}

.slot-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    animation: particleFly 1.1s ease-out forwards;
}

@keyframes particleFly {
    from {
        opacity: 1;
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(0.2);
    }
}

/* ================= MOBILE: GIVEAWAYS + SLOT ================= */

@media (max-width: 640px) {
    .live-giveaways-wrap {
        padding: 0 14px;
    }

    .live-giveaways-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .live-giveaway-card {
        grid-template-columns: 110px 1fr;
        min-height: 140px;
    }

    .live-giveaway-thumb {
        min-height: 140px;
    }

    .live-giveaway-content {
        padding: 14px 14px 14px 10px;
    }

    .live-giveaway-title {
        font-size: 13px;
    }

    .live-giveaway-prize {
        font-size: 16px;
    }

    .live-giveaway-cta {
        width: 100%;
        align-self: stretch;
    }

    .live-giveaways-footer .btn-hero {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .slot-section-premium {
        padding: 48px 10px 64px;
    }

    .slot-marquee {
        border-radius: 12px 12px 0 0;
        padding: 8px 0;
    }

    .slot-marquee-track span {
        font-size: 9px;
        padding-right: 40px;
        letter-spacing: 0.12em;
    }

    .slot-container-premium {
        padding: 18px 10px 22px !important;
        border-radius: 0 0 20px 20px !important;
    }

    .slot-title-premium {
        font-size: 22px;
    }

    .slot-title-sub {
        font-size: 10px;
        letter-spacing: 0.2em;
    }

    .slot-hud {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 10px;
        margin-bottom: 16px;
    }

    .slot-hud-item:last-child {
        grid-column: 1 / -1;
    }

    .slot-hud-value {
        font-size: 18px;
    }

    .slot-machine-frame {
        padding: 10px 6px;
        margin-bottom: 16px;
    }

    .slot-section-premium .slot-machine {
        gap: 6px;
    }

    .slot-section-premium .reel,
    .slot-cabinet .reel {
        width: 72px !important;
        height: 96px !important;
        border-width: 2px;
        border-radius: 10px;
    }

    .slot-section-premium .reel-inner img,
    .slot-cabinet .reel-inner img {
        width: 52px !important;
        height: 96px !important;
        padding: 12px 0 !important;
    }

    .spin-button-premium {
        padding: 14px 20px !important;
        font-size: 13px !important;
    }

    .slot-win-text {
        font-size: 15px;
    }

    .slot-led {
        width: 7px;
        height: 7px;
    }

    .slot-led-row {
        gap: 5px;
        margin-bottom: 14px;
    }
}

@media (max-width: 360px) {
    .slot-section-premium .reel,
    .slot-cabinet .reel {
        width: 64px !important;
        height: 88px !important;
    }

    .slot-section-premium .reel-inner img,
    .slot-cabinet .reel-inner img {
        width: 46px !important;
        height: 88px !important;
    }

    .slot-section-premium .slot-machine {
        gap: 4px;
    }
}
