:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-grad-start: #1a1a1a;
            --bg-grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --error: #FF1744;
            --warning: #FFC107;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-accent: 'Oswald', 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; 
        }
        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--primary);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; }
        header .brand strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-family: var(--font-accent); 
            font-weight: bold; 
            text-transform: uppercase; 
            transition: 0.3s; 
            border: none; 
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        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; 
            border: 2px solid var(--border-default);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: linear-gradient(45deg, var(--bg-grad-start), var(--bg-grad-end));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-accent); color: var(--primary); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 42px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
            display: block;
        }

        .intro-card {
            background: var(--bg-surface);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid var(--primary);
            text-align: center;
        }
        .intro-card h1 { font-family: var(--font-heading); color: var(--primary); font-size: 28px; margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 18px; }

        .section-title { 
            font-family: var(--font-heading); 
            color: var(--primary); 
            margin: 30px 0 20px; 
            text-align: center; 
            text-transform: uppercase; 
            font-size: 24px; 
        }

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

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 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-subtle);
            color: var(--text-secondary);
            font-size: 14px;
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .guides-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(--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: center; border-bottom: 1px solid var(--border-subtle); }
        .lottery-table th { background: var(--primary-variant); color: var(--text-inverse); font-family: var(--font-accent); }
        .lottery-table td { color: var(--text-secondary); font-size: 14px; }
        .lottery-table .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .provider-box { 
            background: linear-gradient(135deg, var(--bg-surface), #222); 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-weight: bold; 
            border: 1px solid var(--border-subtle);
            color: var(--primary);
        }

        .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: 12px; 
            border: 1px solid var(--border-subtle); 
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header .username { font-weight: bold; }
        .comment-stars { color: var(--warning); margin-bottom: 10px; font-size: 14px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-container { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 10px; 
            border: 1px solid var(--border-subtle); 
            overflow: hidden; 
        }
        .faq-question { 
            padding: 15px 20px; 
            background: var(--border-subtle); 
            color: var(--primary); 
            cursor: pointer; 
            font-weight: bold; 
            display: block; 
        }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px solid var(--border-subtle); 
            margin-bottom: 50px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon { color: var(--primary); font-size: 16px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .security-icon i { font-size: 30px; }
        .security-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 15px; }
        .security-link { color: var(--primary); text-decoration: none; font-weight: bold; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            background: var(--bg-surface); 
            border-top: 2px solid var(--primary); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            z-index: 1001; 
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            text-align: center; 
            font-size: 12px; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 5px;
            flex: 1;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 20px 100px; 
            border-top: 1px solid var(--border-subtle); 
            text-align: center; 
        }
        footer .contact-row { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        footer .contact-link { color: var(--primary); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        footer .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: center; 
        }
        footer .footer-link { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        footer .footer-link:hover { color: var(--primary); }
        footer .copyright { color: var(--text-disabled); font-size: 13px; margin-top: 20px; }

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