:root {
            --primary: #FFD700;
            --primary-hover: #FFC800;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0B0D17;
            --bg-surface: #1A1D29;
            --bg-surface-light: #25293A;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #6B7280;
            --text-inverse: #0B0D17;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #2D3142;
            --border-highlight: #FFD700;
            --border-muted: #1F2335;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        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;
        }
        h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .btn {
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            font-family: var(--font-heading);
        }
        .btn-primary { background: var(--primary); color: var(--text-inverse); }
        .btn-primary:hover { background: var(--primary-hover); }
        .btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
        .btn-outline:hover { background: var(--primary); color: var(--text-inverse); }
        header {
            background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 64px;
            display: flex;
            align-items: center;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-buttons { display: flex; gap: 12px; }
        .banner-container { width: 100%; aspect-ratio: 2 / 1; overflow: hidden; cursor: pointer; }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(135deg, var(--secondary), var(--bg-surface));
            padding: 20px;
            text-align: center;
            border-radius: 15px;
            margin: 20px 0;
            border: 2px solid var(--primary);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
        }
        .jackpot-title { font-size: 18px; color: var(--primary); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 32px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
        }
        .intro-card h1 { font-size: 28px; margin-bottom: 15px; color: var(--primary); }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        .section-title { 
            font-size: 24px; 
            text-align: center; 
            margin: 40px 0 20px; 
            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: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface-light);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-muted);
            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: 12px; 
            font-size: 14px; 
            text-align: center; 
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 13px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .guide-card h3 { margin-bottom: 10px; color: var(--primary); font-size: 18px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }
        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-muted);
            font-size: 14px;
        }
        .lottery-table th { background: var(--bg-surface-light); color: var(--primary); }
        .lottery-table td:nth-child(3) { color: var(--success); font-weight: bold; }
        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            background: var(--bg-surface-light);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            border: 1px solid var(--border-default);
        }
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, 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 .user-info { display: flex; flex-direction: column; }
        .comment-stars { color: var(--primary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); margin-top: 10px; }
        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            background: var(--bg-surface-light);
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
        .security-box {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px solid var(--border-muted);
            margin-bottom: 40px;
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .security-badge { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; }
        .security-badge i { font-size: 30px; color: var(--success); }
        .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: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: var(--text-secondary);
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }
        footer {
            background: var(--bg-surface);
            padding: 40px 0 100px;
            border-top: 1px solid var(--border-default);
            color: var(--text-secondary);
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--primary); font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            text-align: center;
            margin-bottom: 30px;
        }
        .footer-links a { font-size: 13px; }
        .footer-copy { text-align: center; font-size: 13px; color: var(--text-muted); }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(3, 1fr); }
            .intro-card h1 { font-size: 22px; }
        }