:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-grad-start: #1F1F1F;
            --bg-grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --semi-success: #28A745;
            --semi-warning: #FFC107;
            --semi-error: #DC3545;
            --semi-info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-headings: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Open Sans', 'Segoe UI', Roboto, sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

        * { 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; 
        }

        header {
            background: linear-gradient(to bottom, var(--bg-grad-start), var(--bg-main));
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--brand-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 6px; 
            cursor: pointer; 
            font-family: var(--font-headings); 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            text-decoration: none; 
            font-size: 14px;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        header .btn-login:hover { background: var(--brand-primary); color: var(--text-inverse); }
        header .btn-register { background: var(--brand-primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--brand-primary-dark); }

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

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-surface), #2a2a2a);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid var(--brand-primary);
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--brand-secondary); font-family: var(--font-headings); text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }
        .jackpot-amount { 
            font-family: var(--font-mono); 
            font-size: clamp(32px, 8vw, 56px); 
            color: var(--brand-primary); 
            font-weight: 800; 
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

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

        .section-title { 
            font-family: var(--font-headings); 
            font-size: 24px; 
            color: var(--text-primary); 
            margin: 40px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--brand-primary); display: inline-block; border-radius: 2px; }

        .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: transform 0.3s, box-shadow 0.3s; 
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); border-color: var(--brand-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-family: var(--font-headings);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

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

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .lottery-table th, .lottery-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border-subtle); }
        .lottery-table th { background: var(--brand-primary-dark); color: var(--text-inverse); font-family: var(--font-headings); }
        .lottery-table td { font-size: 14px; color: var(--text-secondary); }
        .win-amount { color: var(--brand-primary); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .provider-box {
            padding: 20px;
            border-radius: 10px;
            font-weight: bold;
            text-align: center;
            font-family: var(--font-headings);
            color: #000;
        }
        .prov-1 { background: linear-gradient(135deg, #FFD700, #FFA500); }
        .prov-2 { background: linear-gradient(135deg, #C0C0C0, #808080); }
        .prov-3 { background: linear-gradient(135deg, #FF4500, #FF0000); }
        .prov-4 { background: linear-gradient(135deg, #00FF00, #008000); }
        .prov-5 { background: linear-gradient(135deg, #00BFFF, #0000FF); }
        .prov-6 { background: linear-gradient(135deg, #EE82EE, #8B008B); }
        .prov-7 { background: linear-gradient(135deg, #F0E68C, #BDB76B); }
        .prov-8 { background: linear-gradient(135deg, #FF69B4, #C71585); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--brand-secondary); }
        .comment-header .user-info { display: flex; flex-direction: column; }
        .comment-header .user-name { font-weight: bold; font-size: 15px; }
        .comment-header .user-date { font-size: 12px; color: var(--text-muted); }
        .comment-stars { color: var(--brand-primary); margin-bottom: 10px; font-size: 13px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; font-style: italic; }

        .faq-container { margin-bottom: 30px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; border: 1px solid var(--border-subtle); }
        .faq-question { 
            padding: 15px 20px; 
            cursor: pointer; 
            font-weight: 600; 
            color: var(--brand-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: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--border-default);
            margin-bottom: 30px;
        }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; flex-wrap: wrap; }
        .security-badge { color: var(--text-secondary); font-size: 13px; display: flex; align-items: center; gap: 5px; }
        .security-badge i { color: var(--semi-success); }
        .age-notice { color: var(--semi-error); font-weight: bold; margin: 10px 0; }
        .support-links a { color: var(--brand-primary); text-decoration: none; font-size: 13px; margin: 0 10px; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-highlight);
            z-index: 1001;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .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(--brand-primary); }

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

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