:root {
            --primary: #FFD700;
            --primary-hover: #FFB800;
            --secondary: #C60000;
            --accent: #00C853;
            --dark-gold: #B8860B;
            --bg-main: #1A1A1A;
            --bg-surface: #2D2D2D;
            --bg-elevated: #3D3D3D;
            --bg-footer: #121212;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --text-link: #FFD700;
            --border-default: #444444;
            --border-highlight: #FFD700;
            --font-primary: 'Roboto', 'Segoe UI', Arial, sans-serif;
            --font-heading: 'Montserrat', '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-body); font-family: var(--font-primary); line-height: 1.5; overflow-x: hidden; }
        h1, h2, h3 { font-family: var(--font-heading); color: var(--text-heading); line-height: 1.2; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        header {
            background-color: 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(--border-highlight);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }
        .header-right { display: flex; gap: 10px; }
        .btn-login { background: transparent; border: 1px solid var(--primary); color: var(--primary); padding: 6px 15px; border-radius: 4px; cursor: pointer; font-weight: 500; }
        .btn-register { background: var(--primary); border: none; color: var(--text-inverse); padding: 6px 15px; border-radius: 4px; cursor: pointer; font-weight: 700; }

        main { max-width: 1200px; margin: 0 auto; padding: 20px 15px; }
        .hero-banner { width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 15px; cursor: pointer; margin-bottom: 30px; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .promo-card {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-elevated));
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid var(--primary);
            margin-bottom: 40px;
        }
        .promo-card h2 { color: var(--primary); font-size: 32px; margin-bottom: 15px; }
        .promo-card p { font-size: 18px; margin-bottom: 25px; color: var(--text-body); }
        .btn-promo { background: var(--accent); color: #fff; padding: 15px 40px; border-radius: 50px; font-size: 20px; font-weight: bold; cursor: pointer; border: none; box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4); }

        .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); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { font-size: 16px; padding: 12px; text-align: center; font-weight: 500; }

        .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: 40px; margin-bottom: 15px; color: var(--primary); text-transform: uppercase; }
        .intro-card p { font-size: 16px; color: var(--text-body); line-height: 1.8; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid var(--border-default);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .guide-item { background: var(--bg-surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border-default); }
        .guide-item h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 14px; color: var(--text-muted); }

        .comment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .comment-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; position: relative; border: 1px solid var(--border-default); }
        .user-info { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .user-info i { font-size: 30px; color: var(--primary); }
        .user-info span { font-weight: bold; color: #fff; }
        .stars { color: var(--primary); font-size: 14px; margin-bottom: 10px; }
        .comment-text { font-size: 14px; margin-bottom: 10px; font-style: italic; }
        .comment-date { font-size: 12px; color: var(--text-muted); text-align: right; }

        .lottery-list { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-default);
        }
        .lottery-item { 
            display: grid; 
            grid-template-columns: 1fr 2fr 1fr 1fr; 
            padding: 12px 20px; 
            border-bottom: 1px solid var(--border-default); 
            font-size: 14px; 
            align-items: center;
        }
        .lottery-item:last-child { border-bottom: none; }
        .win-amount { color: var(--accent); font-weight: bold; }

        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 40px; }
        .provider-item { background: var(--bg-elevated); padding: 20px; text-align: center; border-radius: 10px; font-weight: bold; color: #fff; border: 1px solid var(--border-default); }

        .faq-container { margin-bottom: 40px; }
        .faq-item { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 15px; color: var(--text-body); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
        }
        .nav-item { text-align: center; color: var(--text-muted); font-size: 12px; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; transition: 0.3s; }
        .nav-item:hover i { color: var(--primary); }

        footer { background: var(--bg-footer); padding: 40px 20px; color: var(--text-muted); text-align: center; }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-contact a { color: var(--text-body); font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 30px; text-align: left; }
        .footer-links a { font-size: 13px; display: block; padding: 4px 0; }
        .footer-security { border-top: 1px solid var(--border-default); padding-top: 20px; font-size: 13px; }
        .security-icons { margin-bottom: 10px; font-size: 20px; color: var(--primary); }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .hero-banner { aspect-ratio: 16/9; }
            .intro-card h1 { font-size: 32px; }
        }