:root {
            --primary: #D4AF37;
            --secondary: #FFFFFF;
            --accent: #FFD700;
            --gold-grad: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #1F1F23;
            --bg-modal: #121214;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --text-muted: #71717A;
            --text-brand: #D4AF37;
            --success: #22C55E;
            --error: #EF4444;
            --warning: #F59E0B;
            --info: #3B82F6;
            --border-default: #27272A;
            --border-active: #D4AF37;
            --border-subtle: #18181B;
            --font-primary: 'Inter', 'Montserrat', -apple-system, sans-serif;
            --font-secondary: 'Archivo Black', sans-serif;
        }

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

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 10px 20px;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .brand-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .brand-logo { width: 25px; height: 25px; object-fit: cover; }
        .brand-name { font-size: 16px; font-weight: normal; color: var(--text-primary); }

        .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 8px; 
            cursor: pointer; 
            font-family: var(--font-primary); 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: var(--gold-grad); color: #000; }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
            border: 2px solid var(--border-default);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: var(--bg-surface);
            border: 1px solid var(--border-active);
            border-radius: 16px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--text-brand); font-weight: bold; font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-secondary); 
            font-size: 36px; 
            color: var(--accent); 
            text-shadow: 0 0 10px var(--accent);
        }

        .intro-section { text-align: center; margin-bottom: 40px; }
        .intro-section h1 { font-size: 48px; color: var(--text-primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { color: var(--text-secondary); font-size: 18px; max-width: 800px; margin: 0 auto; }

        .section-title { 
            font-family: var(--font-secondary); 
            font-size: 30px; 
            margin-bottom: 20px; 
            color: var(--text-primary); 
            border-left: 5px solid var(--primary); 
            padding-left: 15px;
        }

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

        .article-list { display: grid; gap: 20px; margin-bottom: 40px; }
        .article-card { 
            display: flex; 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            color: inherit; 
            border: 1px solid var(--border-default);
        }
        .article-card img { width: 120px; height: 120px; object-fit: cover; }
        .article-content { padding: 15px; display: flex; flex-direction: column; justify-content: center; }
        .article-content h3 { font-size: 18px; color: var(--text-primary); margin-bottom: 8px; }
        .article-content p { font-size: 14px; color: var(--text-secondary); }

        .payment-licenses { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .pl-card { 
            background: var(--bg-surface); 
            padding: 15px; 
            text-align: center; 
            border-radius: 12px; 
            border: 1px solid var(--border-default); 
            font-weight: 600; 
            color: var(--text-secondary);
        }
        .pl-card i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .winning-records { 
            background: var(--bg-surface); 
            border-radius: 16px; 
            padding: 20px; 
            margin-bottom: 40px; 
            overflow-x: auto;
        }
        .record-table { width: 100%; border-collapse: collapse; font-size: 14px; }
        .record-table th { text-align: left; color: var(--text-muted); padding: 10px; border-bottom: 1px solid var(--border-default); }
        .record-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-subtle); }
        .record-table .win-amount { color: var(--success); font-weight: bold; }

        .providers-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-item { 
            background: var(--bg-elevated); 
            padding: 20px; 
            text-align: center; 
            border-radius: 12px; 
            font-weight: bold; 
            font-size: 18px; 
            border: 1px solid var(--border-default);
            color: var(--text-primary);
        }

        .reviews-grid { display: grid; gap: 20px; margin-bottom: 40px; }
        .review-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 16px; 
            border: 1px solid var(--border-default); 
        }
        .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .review-header i { font-size: 30px; color: var(--text-muted); }
        .review-user { font-weight: bold; }
        .review-stars { color: var(--accent); margin: 5px 0; }
        .review-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-muted); }

        .faq-section { display: grid; gap: 15px; margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 18px; color: var(--text-brand); margin-bottom: 10px; }
        .faq-item p { font-size: 15px; color: var(--text-secondary); }

        .security-section { 
            background: var(--bg-elevated); 
            padding: 30px; 
            border-radius: 16px; 
            text-align: center; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-default);
        }
        .security-section i { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-section p { margin-bottom: 10px; color: var(--text-secondary); }
        .security-section a { color: var(--primary); text-decoration: none; font-weight: bold; }

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

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

        @media (max-width: 768px) {
            .intro-section h1 { font-size: 32px; }
            .footer-links { grid-template-columns: repeat(3, 1fr); }
        }