        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

        * { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --bg-primary: #0a0e1a;
            --bg-secondary: #111827;
            --bg-card: #1a2235;
            --bg-card-hover: #1f2a40;
            --accent: #22c55e;
            --accent-glow: rgba(34, 197, 94, 0.3);
            --accent-secondary: #8b5cf6;
            --text-primary: #f1f5f9;
            --text-secondary: #94a3b8;
            --text-muted: #64748b;
            --border: rgba(255,255,255,0.06);
            --gold: #fbbf24;
            --red: #ef4444;
            --blue: #3b82f6;
            --pink: #ec4899;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Ambient background */
        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background:
                radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
            z-index: 0;
            pointer-events: none;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* ===== HEADER ===== */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(10, 14, 26, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-img {
            gap: 8px;
            align-items: center;
        }

        .logo-icon-img {
            width: 44px;
            height: 43.5px;
            pointer-events: none;
            flex-shrink: 0;
        }

        .logo-text-img {
            height: 23px;
            width: auto;
            pointer-events: none;
        }

        .logo-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, var(--accent), #16a34a);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 18px;
            color: #fff;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        .logo-text {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -0.5px;
        }

        .logo-text span { color: var(--accent); }

        nav {
            display: flex;
            gap: 6px;
        }

        nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 10px;
            transition: all 0.2s;
            position: relative;
        }

        nav a:hover, nav a.active {
            color: var(--text-primary);
            background: rgba(255,255,255,0.05);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 22px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: all 0.25s;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent), #16a34a);
            color: #fff;
            box-shadow: 0 4px 15px var(--accent-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px var(--accent-glow);
        }

        .btn-secondary {
            background: var(--bg-card);
            color: var(--text-primary);
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background: var(--bg-card-hover);
        }

        /* ===== HERO ===== */
        .hero {
            padding: 50px 0 40px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 340px;
            gap: 20px;
        }

        .hero-banner {
            background: linear-gradient(135deg, #1a1040, #0f172a);
            border-radius: 20px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(139, 92, 246, 0.2);
            min-height: 280px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent 70%);
            pointer-events: none;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(251, 191, 36, 0.15);
            color: var(--gold);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 18px;
            width: fit-content;
        }

        .hero-banner h1 {
            font-size: 42px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 14px;
            letter-spacing: -1px;
        }

        .hero-banner h1 .highlight { color: var(--accent); }
        .hero-banner h1 .highlight-gold { color: var(--gold); }

        .hero-banner p {
            color: var(--text-secondary);
            font-size: 16px;
            line-height: 1.6;
            max-width: 500px;
            margin-bottom: 24px;
        }

        .hero-promo {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid var(--border);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero-promo h2 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .hero-promo p {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .promo-input {
            display: flex;
            width: 100%;
            gap: 0;
            background: var(--bg-primary);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            margin-bottom: 20px;
        }

        .promo-input input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 14px 16px;
            color: var(--text-primary);
            font-size: 14px;
            outline: none;
        }

        .promo-input input::placeholder { color: var(--text-muted); }

        .promo-input button {
            background: var(--accent);
            border: none;
            padding: 14px 20px;
            cursor: pointer;
            color: #fff;
            font-weight: 700;
            font-size: 14px;
            transition: background 0.2s;
        }

        .promo-input button:hover { background: #16a34a; }

        .promo-bonus {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            background: rgba(34, 197, 94, 0.08);
            border: 1px solid rgba(34, 197, 94, 0.15);
            border-radius: 12px;
            width: 100%;
        }

        .promo-bonus-icon {
            font-size: 28px;
        }

        .promo-bonus-text {
            font-size: 13px;
            color: var(--text-secondary);
            text-align: left;
        }

        .promo-bonus-text strong {
            color: var(--accent);
            display: block;
            font-size: 15px;
        }

        /* ===== LIVE DROPS ===== */
        .live-drops {
            padding: 10px 0 30px;
        }

        .live-drops-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .live-dot {
            width: 8px;
            height: 8px;
            background: var(--red);
            border-radius: 50%;
            animation: pulse-dot 1.5s infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        .live-drops-header h2 {
            font-size: 16px;
            font-weight: 600;
        }

        .drops-track {
            display: flex;
            gap: 12px;
            overflow-x: auto;
            padding-bottom: 8px;
            scrollbar-width: none;
        }

        .drops-track::-webkit-scrollbar { display: none; }

        .drop-card {
            flex-shrink: 0;
            width: 160px;
            background: var(--bg-card);
            border-radius: 14px;
            padding: 14px;
            border: 1px solid var(--border);
            transition: all 0.3s;
            cursor: pointer;
        }

        .drop-card:hover {
            border-color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
        }

        .drop-card-img {
            width: 100%;
            height: 80px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 10px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            overflow: hidden;
        }

        .drop-card-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 6px;
        }

        .drop-card-name {
            font-size: 12px;
            font-weight: 500;
            color: var(--text-secondary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 4px;
        }

        .drop-card-price {
            font-size: 14px;
            font-weight: 700;
            color: var(--gold);
        }

        /* ===== NEWS SLIDER ===== */
        .news-slider {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 24px;
            line-height: 0;
        }

        .news-slider-track {
            display: flex;
            transition: transform 0.5s ease;
        }

        .news-slide {
            min-width: 100%;
        }

        .news-slide img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 16px;
            display: block;
        }

        .news-slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: #fff;
            border: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            z-index: 2;
            line-height: 1;
        }

        .news-slider-btn:hover { background: rgba(34,197,94,0.7); }
        .news-slider-btn.prev { left: 12px; }
        .news-slider-btn.next { right: 12px; }

        .news-slider-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 2;
        }

        .news-slider-dots .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255,255,255,0.45);
            cursor: pointer;
            transition: background 0.2s, transform 0.2s;
        }

        .news-slider-dots .dot.active {
            background: var(--accent);
            transform: scale(1.3);
        }

        @media (max-width: 768px) {
            .news-slide img { height: 180px; }
            .news-slider-btn { width: 32px; height: 32px; font-size: 18px; }
        }

        /* ===== EVENT BANNER ===== */
        .event-banner {
            background: linear-gradient(135deg, #2d1854, #1a1040, #0f172a);
            border-radius: 20px;
            padding: 30px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 50px;
            border: 1px solid rgba(139, 92, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .event-banner::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 100%;
            background: radial-gradient(circle at right, rgba(251, 191, 36, 0.08), transparent);
            pointer-events: none;
        }

        .event-info h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .event-info h3 span { color: var(--gold); }

        .event-info p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .event-timer {
            display: flex;
            gap: 10px;
        }

        .timer-block {
            background: var(--bg-primary);
            border-radius: 12px;
            padding: 12px 16px;
            text-align: center;
            min-width: 60px;
            border: 1px solid var(--border);
        }

        .timer-num {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            font-variant-numeric: tabular-nums;
        }

        .timer-label {
            font-size: 10px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 2px;
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 30px 0;
        }

        .section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 24px;
        }

        .section-header h2 {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .section-header h2 span { color: var(--accent); }

        .section-subtitle {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .badge-count {
            background: var(--bg-card);
            color: var(--text-secondary);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--border);
        }

        /* ===== CASES GRID ===== */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            margin-bottom: 20px;
        }

        .case-card {
            background: var(--bg-card);
            border-radius: 18px;
            padding: 20px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .case-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
            opacity: 0;
            transition: opacity 0.3s;
        }

        .case-card:hover {
            border-color: rgba(34, 197, 94, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.4);
        }

        .case-card:hover::before { opacity: 1; }

        .case-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        .case-tag.top {
            background: linear-gradient(135deg, var(--gold), #f59e0b);
            color: #000;
        }

        .case-tag.new {
            background: linear-gradient(135deg, var(--blue), #2563eb);
            color: #fff;
        }

        .case-tag.hot {
            background: linear-gradient(135deg, var(--red), #dc2626);
            color: #fff;
        }

        .case-tag.eco {
            background: linear-gradient(135deg, var(--accent), #16a34a);
            color: #fff;
        }

        .case-img {
            width: 100%;
            height: 160px;
            background: linear-gradient(160deg, rgba(139, 92, 246, 0.08), rgba(34, 197, 94, 0.05));
            border-radius: 14px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 56px;
            position: relative;
            overflow: hidden;
        }

        .case-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 12px;
        }

        .case-name {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            text-align: center;
        }

        .case-price {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 15px;
            font-weight: 700;
            color: var(--gold);
        }

        .case-price .coin {
            width: 18px;
            height: 18px;
            background: var(--gold);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: #000;
            font-weight: 800;
        }

        .cases-more {
            text-align: center;
            padding: 20px 0;
        }

        /* ===== GAMES GRID ===== */
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
            gap: 16px;
        }

        .game-card {
            background: var(--bg-card);
            border-radius: 18px;
            padding: 24px 16px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .game-card:hover {
            border-color: rgba(34, 197, 94, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .game-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 14px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
        }

        .game-card h3 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .game-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .game-meta .online {
            color: var(--accent);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .game-meta .online::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        /* ===== STATS ===== */
        .stats-section {
            padding: 50px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .stat-card {
            background: var(--bg-card);
            border-radius: 18px;
            padding: 28px 24px;
            border: 1px solid var(--border);
            text-align: center;
        }

        .stat-icon {
            width: 48px;
            height: 48px;
            margin: 0 auto 14px;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.04));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .stat-num {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 4px;
            letter-spacing: -0.5px;
        }

        .stat-num.green { color: var(--accent); }
        .stat-num.gold { color: var(--gold); }
        .stat-num.blue { color: var(--blue); }
        .stat-num.purple { color: var(--accent-secondary); }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ===== FEATURES / SEO TEXT ===== */
        .features-section {
            padding: 50px 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
            margin-bottom: 40px;
        }

        .feature-card {
            background: var(--bg-card);
            border-radius: 18px;
            padding: 30px;
            border: 1px solid var(--border);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* SEO content */
        .seo-content {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid var(--border);
        }

        .seo-content h2 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .seo-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-top: 24px;
            margin-bottom: 10px;
            color: var(--accent);
        }

        .seo-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 50px 0;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border-radius: 14px;
            margin-bottom: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-weight: 600;
            font-size: 15px;
            transition: background 0.2s;
        }

        .faq-question:hover {
            background: rgba(255,255,255,0.02);
        }

        .faq-arrow {
            transition: transform 0.3s;
            font-size: 18px;
            color: var(--text-muted);
        }

        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-item.open .faq-answer {
            max-height: 300px;
        }

        /* ===== FOOTER ===== */
        footer {
            border-top: 1px solid var(--border);
            padding: 40px 0;
            margin-top: 30px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.6;
            margin-top: 14px;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            padding: 4px 0;
            transition: color 0.2s;
        }

        .footer-col a:hover { color: var(--accent); }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        .footer-bottom p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-socials {
            display: flex;
            gap: 10px;
        }

        .social-link {
            width: 38px;
            height: 38px;
            background: var(--bg-card);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.2s;
            border: 1px solid var(--border);
        }

        .social-link:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        .age-badge {
            background: var(--bg-card);
            border: 2px solid var(--red);
            border-radius: 10px;
            padding: 6px 12px;
            font-weight: 800;
            font-size: 14px;
            color: var(--red);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr; }
            .cases-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .header-inner { gap: 10px; }
            nav { display: none; }
            .hero-banner { padding: 30px; }
            .hero-banner h1 { font-size: 28px; }
            .cases-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .games-grid { grid-template-columns: repeat(3, 1fr); }
            .event-banner { flex-direction: column; gap: 20px; text-align: center; }
            .footer-top { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .features-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .seo-content { padding: 24px; }
        }

        @media (max-width: 480px) {
            .cases-grid { grid-template-columns: 1fr; }
            .games-grid { grid-template-columns: repeat(2, 1fr); }
        }

        /* ===== ANIMATIONS ===== */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-6px); }
        }

        .float-anim { animation: float 3s ease-in-out infinite; }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

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

        /* ===== HAMBURGER ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.2s;
        }
        .hamburger:hover { background: rgba(255,255,255,0.05); }
        .hamburger span {
            display: block;
            width: 22px;
            height: 2px;
            background: var(--text-primary);
            border-radius: 2px;
            transition: all 0.3s;
        }
        .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* ===== MOBILE MENU ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 70px;
            left: 0;
            right: 0;
            background: rgba(10, 14, 26, 0.97);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 99;
            padding: 12px 20px 20px;
            flex-direction: column;
            gap: 4px;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 16px;
            font-weight: 500;
            padding: 12px 16px;
            border-radius: 10px;
            transition: all 0.2s;
        }
        .mobile-menu a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
        .mobile-menu a.active { color: var(--accent); background: rgba(34,197,94,0.08); }
        .mobile-menu .btn-primary {
            margin-top: 8px;
            text-align: center;
            justify-content: center;
            border-radius: 12px;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            .btn-text { display: none; }
            .event-banner { padding: 24px; }
            .event-timer { justify-content: center; flex-wrap: wrap; }
            .section-header h2 { font-size: 22px; }
            .section-header { flex-wrap: wrap; gap: 10px; }
            .logo-text-img { display: none; }
            .logo-icon-img { width: 36px; height: 36px; }
        }

        @media (max-width: 480px) {
            html, body { width: 100%; }
            .container { padding: 0 16px; }
            .hero-banner { padding: 22px; }
            .hero-banner h1 { font-size: 22px; letter-spacing: -0.5px; }
            .hero-banner p { font-size: 14px; }
            .hero-promo { padding: 20px; }
            .event-banner { padding: 18px; }
            .event-timer { gap: 8px; }
            .timer-block { padding: 10px 12px; min-width: 52px; }
            .timer-num { font-size: 20px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
            .stat-card { padding: 20px 14px; }
            .stat-num { font-size: 22px; }
            .features-grid { gap: 12px; }
            .feature-card { padding: 22px 18px; }
            .seo-content { padding: 18px; }
            .footer-top { gap: 24px; }
            .section-header h2 { font-size: 20px; }
            .drop-card { width: 140px; }
            .lang-switcher { display: none; }
        }

        /* ===== LANGUAGE SWITCHER ===== */
        .lang-switcher {
            display: flex;
            align-items: center;
            gap: 2px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 3px;
            margin-right: 6px;
        }

        .lang-btn {
            padding: 5px 10px;
            border-radius: 7px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            color: var(--text-muted);
            text-decoration: none;
            transition: all 0.2s;
            white-space: nowrap;
        }

        .lang-btn:hover {
            color: var(--text-primary);
            background: rgba(255,255,255,0.06);
        }

        .lang-btn.active {
            background: var(--accent);
            color: #fff;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 28px;
            right: 24px;
            width: 46px;
            height: 46px;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            font-weight: 700;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
            opacity: 0;
            transform: translateY(12px);
            transition: opacity 0.3s, transform 0.3s;
            pointer-events: none;
            z-index: 999;
            line-height: 1;
        }

        .scroll-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .scroll-top:hover {
            background: #16a34a;
            box-shadow: 0 6px 24px rgba(34, 197, 94, 0.5);
        }
