:root {
            --brand-primary: #FFD700;
            --brand-primary-dark: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --bg-gradient-start: #1A1D23;
            --bg-gradient-end: #0B0E11;
            --text-primary: #FFFFFF;
            --text-secondary: #929AA5;
            --text-disabled: #474D57;
            --text-highlight: #FFD700;
            --semantic-success: #0ECB81;
            --semantic-warning: #F0B90B;
            --semantic-error: #F6465D;
            --semantic-info: #37BBE2;
            --border-light: #2B3139;
            --border-medium: #474D57;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background: linear-gradient(to bottom, var(--bg-gradient-start), var(--bg-gradient-end));
            color: var(--text-primary);
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.5;
            background-attachment: fixed;
        }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--text-highlight); }
        h1 { font-size: 32px; line-height: 1.2; margin-bottom: 15px; }
        h2 { font-size: 24px; margin-bottom: 20px; text-align: center; text-transform: uppercase; }
        h3 { font-size: 18px; margin: 10px 0; font-weight: 600; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        header {
            background: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--brand-primary);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: normal; }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth {
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--brand-primary); }
        .btn-login:hover { background: var(--brand-primary); color: var(--bg-main); }
        .btn-register { background: var(--brand-primary); color: var(--bg-main); }
        .btn-register:hover { background: var(--brand-primary-dark); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px 15px 100px; }
        .banner-container { width: 100%; margin-bottom: 30px; cursor: pointer; }
        .banner-container img { width: 100%; aspect-ratio: 2/1; object-fit: cover; border-radius: 15px; box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); }
        
        .jackpot-box {
            background: var(--bg-surface);
            border: 2px solid var(--brand-primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-accent); font-size: 20px; color: var(--text-secondary); }
        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 40px;
            font-weight: bold;
            color: var(--brand-primary);
            text-shadow: 0 0 10px var(--brand-primary);
            margin: 10px 0;
        }

        .intro-card {
            background: linear-gradient(135deg, var(--bg-surface), #2c333a);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--brand-primary);
            margin-bottom: 40px;
            text-align: center;
        }
        .intro-card p { color: var(--text-secondary); font-size: 18px; }

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

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

        .guides-section {
            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-light);
        }
        .guide-card h3 { color: var(--brand-primary); margin-bottom: 10px; }
        .guide-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }
        .lottery-table th { background: var(--brand-primary-dark); color: var(--bg-main); }
        .lottery-table td { color: var(--text-secondary); font-size: 14px; }
        .win-amount { color: var(--semantic-success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--bg-main);
            text-transform: uppercase;
        }
        .provider-block:nth-child(odd) { background: var(--brand-primary); }
        .provider-block:nth-child(even) { background: var(--brand-secondary); }

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

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

        .security-box {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px dashed var(--brand-primary);
        }
        .security-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-secondary); font-weight: 600; }
        .badge i { color: var(--semantic-success); }
        .security-box p { margin-bottom: 15px; color: var(--text-secondary); }
        .security-box a { color: var(--brand-primary); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--brand-primary);
            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; }
        .nav-item:hover { color: var(--brand-primary); }

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid var(--border-medium);
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; }
        .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-secondary); font-size: 14px; display: block; padding: 5px 0; }
        .footer-links a:hover { color: var(--brand-primary); }
        .copyright { color: var(--text-disabled); font-size: 13px; }

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