:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FFC8;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-surface-light: #2B3139;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-inverse: #0B0E11;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #378BFF;
            --border-default: #363C44;
            --border-strong: #474D57;
            --border-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', 'Segoe UI', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        
        .banner-wrapper { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .banner-wrapper img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-main));
            padding: 30px 0;
            text-align: center;
            border-bottom: 2px solid var(--primary);
        }
        .jackpot-title { font-size: 18px; color: var(--text-secondary); margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 40px;
            color: var(--primary);
            font-weight: bold;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 40px 20px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
            border: 1px solid var(--border-default);
        }
        .intro-card h1 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        section { padding: 40px 0; }
        .section-title { font-size: 22px; margin-bottom: 25px; text-align: center; position: relative; padding-bottom: 10px; }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

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

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px;
            text-align: center;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

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

        .win-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
        }
        .win-table th, .win-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-default);
        }
        .win-table th { background: var(--bg-surface-light); color: var(--primary); }
        .win-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            background: var(--bg-surface-light);
            border: 1px solid var(--border-default);
        }
        .provider-box:nth-child(odd) { border-right: 4px solid var(--accent); }
        .provider-box:nth-child(even) { border-left: 4px solid var(--secondary); }

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

        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            padding: 20px;
        }
        .faq-item h3 { font-size: 17px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { color: var(--text-secondary); font-size: 15px; }

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

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

        footer {
            background: var(--bg-surface);
            padding: 40px 0 100px 0;
            border-top: 1px solid var(--border-default);
            font-size: 14px;
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--text-secondary); }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            text-align: center;
            margin-bottom: 30px;
        }
        .footer-links a { color: var(--text-secondary); font-size: 13px; }
        .footer-copy {
            text-align: center;
            color: var(--text-disabled);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .providers-wall { grid-template-columns: 1fr; }
        }