:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FFC3;
            --bg-main: #0B0E11;
            --bg-surface: #1B1F24;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-grad-start: #1A1A2E;
            --bg-grad-end: #0F0F1A;
            --text-primary: #FFFFFF;
            --text-secondary: #B7B9CC;
            --text-disabled: #5E606B;
            --text-inverse: #0B0E11;
            --success: #00C853;
            --warning: #FF9100;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #2D333B;
            --border-highlight: #FFD700;
            --border-muted: #1E2329;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Open Sans', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        header {
            background: var(--bg-surface);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 12px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 6px; 
            cursor: pointer; 
            font-weight: 600; 
            font-size: 14px; 
            border: none; 
            transition: 0.3s; 
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-login:hover { border-color: var(--primary); color: var(--primary); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-dark); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            border-radius: 15px; 
            overflow: hidden; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
            margin-bottom: 30px;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-box {
            background: linear-gradient(135deg, var(--bg-grad-start), var(--bg-grad-end));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-box h2 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 48px; 
            font-weight: 800; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            font-size: 30px; 
            color: var(--primary); 
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 24px; 
            color: var(--primary); 
            margin: 40px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::before { content: ''; width: 4px; height: 24px; background: var(--secondary); display: inline-block; }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: 0.3s; 
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
            display: block; 
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            color: var(--text-primary); 
            text-align: center; 
            font-weight: 500; 
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid var(--border-muted);
            color: var(--text-secondary);
            font-size: 14px;
        }
        .payment-item i { 
            display: block; 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 8px; 
        }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .guide-item h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-item p { color: var(--text-secondary); font-size: 14px; }

        .win-list {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }
        .win-item {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-muted);
            font-size: 14px;
            align-items: center;
        }
        .win-item:last-child { border: none; }
        .win-item .user { font-weight: bold; color: var(--text-primary); }
        .win-item .game { color: var(--text-secondary); }
        .win-item .amount { color: var(--accent); font-weight: bold; text-align: center; }
        .win-item .time { text-align: right; color: var(--text-disabled); font-size: 12px; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-heading);
            background: var(--bg-surface);
            border: 1px solid var(--border-default);
        }
        .provider-box:nth-child(odd) { color: var(--primary); border-color: var(--primary); }
        .provider-box:nth-child(even) { color: var(--accent); border-color: var(--accent); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header .name { font-weight: bold; }
        .comment-stars { color: #f1c40f; font-size: 12px; margin-bottom: 10px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); text-align: right; }

        .faq-section { margin-bottom: 40px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            border: 1px solid var(--border-default); 
        }
        .faq-question { 
            padding: 15px 20px; 
            cursor: pointer; 
            font-weight: 600; 
            color: var(--primary); 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        .faq-answer { 
            padding: 0 20px 15px; 
            color: var(--text-secondary); 
            font-size: 14px; 
            display: block;
        }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-muted);
        }
        .security-footer .badges { 
            display: flex; 
            justify-content: center; 
            gap: 30px; 
            margin-bottom: 20px; 
            flex-wrap: wrap;
        }
        .badge { 
            display: flex; 
            align-items: center; 
            gap: 8px; 
            color: var(--text-primary); 
            font-weight: bold; 
        }
        .badge i { color: var(--success); font-size: 20px; }
        .security-footer p { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: none; font-weight: 600; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1001;
            padding: 0 10px;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 5px;
            flex: 1;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        footer .contact-row { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap; 
        }
        footer .contact-row a { 
            color: var(--text-secondary); 
            text-decoration: none; 
            font-size: 14px; 
            transition: 0.3s; 
        }
        footer .contact-row a:hover { color: var(--primary); }
        footer .links-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 15px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left; 
        }
        footer .links-grid a { 
            color: var(--text-secondary); 
            text-decoration: none; 
            font-size: 13px; 
        }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copy { color: var(--text-disabled); font-size: 13px; border-top: 1px solid var(--border-muted); padding-top: 20px; }

        @media (max-width: 768px) {
            .links-grid { grid-template-columns: repeat(2, 1fr); }
            .win-item { grid-template-columns: 1fr 1fr; gap: 10px; }
            .win-item .game, .win-item .time { display: none; }
            .win-item .amount { text-align: left; }
            .jackpot-amount { font-size: 32px; }
        }