:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-variant: #2C2C2C;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --success: #00C853;
            --warning: #FFC107;
            --error: #FF1744;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Open Sans', Arial, 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); color: var(--primary); 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; }
        
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .brand { display: flex; align-items: center; gap: 10px; }
        .brand img { width: 25px; height: 25px; object-fit: contain; }
        .brand strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        .auth-buttons { display: flex; gap: 12px; }
        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-body);
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--bg-main); }
        .btn-register { background: var(--primary); color: var(--bg-main); }
        .btn-register:hover { background: var(--primary-dark); color: white; }

        .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(45deg, #1a1a1a, #333);
            padding: 30px 0;
            text-align: center;
            border-bottom: 1px solid var(--border-medium);
        }
        .jackpot-title { font-size: 18px; color: var(--secondary); text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 48px;
            font-weight: bold;
            color: var(--primary);
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
            font-family: var(--font-heading);
        }

        .intro-card {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            border-left: 5px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .intro-card h1 { font-size: 28px; margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            text-align: center; 
            margin: 40px 0 25px; 
            font-size: 24px; 
            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;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
        .game-card h3 { padding: 15px; font-size: 16px; text-align: center; color: var(--text-primary); }

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

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; }
        .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: 30px 0;
        }
        .lottery-table th, .lottery-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }
        .lottery-table th { background: var(--bg-variant); color: var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 30px 0;
        }
        .provider-box {
            background: var(--bg-variant);
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--border-medium);
        }

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

        .faq-section { margin: 40px 0; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .faq-question {
            padding: 20px;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--primary);
        }
        .faq-answer { padding: 0 20px 20px; color: var(--text-secondary); font-size: 14px; }

        .security-banner {
            background: var(--bg-variant);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin: 40px 0;
            border: 1px dashed var(--primary);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon { display: flex; flex-direction: column; align-items: center; gap: 8px; }
        .security-icon i { font-size: 32px; color: var(--success); }
        .security-icon span { font-size: 13px; color: var(--text-secondary); }
        .security-text { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
        .security-text a { color: var(--primary); text-decoration: underline; }

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

        footer {
            background: var(--bg-surface);
            padding: 50px 0 100px;
            border-top: 1px solid var(--border-medium);
            text-align: center;
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact h2 { font-size: 20px; margin-bottom: 15px; }
        .contact-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .contact-links a { color: var(--text-secondary); font-size: 14px; }
        .contact-links a:hover { color: var(--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-secondary); font-size: 14px; display: block; padding: 5px 0; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-disabled); 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); }
            .jackpot-amount { font-size: 32px; }
            .intro-card h1 { font-size: 22px; }
        }