:root {
            --primary: #FFD700;
            --primary-dark: #C5A000;
            --secondary: #E60012;
            --accent: #00FFC2;
            --bg-main: #0B0E11;
            --bg-surface: #1A1D23;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --text-primary: #FFFFFF;
            --text-secondary: #B7B9CC;
            --text-muted: #6C757D;
            --text-inverse: #0B0E11;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #2D333B;
            --border-medium: #40464F;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Open Sans', Arial, sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .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(--primary); }
        .header-right { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 8px; 
            cursor: pointer; 
            font-family: var(--font-heading); 
            font-weight: 600; 
            border: none; 
            transition: 0.3s; 
            text-decoration: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-medium); }
        .btn-login:hover { border-color: var(--primary); color: var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-dark); }

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

        .jackpot-section { 
            background: linear-gradient(135deg, var(--bg-surface), #2a2e35);
            border: 2px solid var(--primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { font-family: var(--font-accent); color: var(--primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 32px; 
            font-weight: 800; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
            display: block;
        }

        .intro-card { 
            background: var(--bg-surface); 
            padding: 25px; 
            border-radius: 15px; 
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .intro-card h1 { font-family: var(--font-heading); font-size: 24px; color: var(--primary); margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            font-family: var(--font-heading); 
            font-size: 22px; 
            margin-bottom: 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
            color: var(--primary);
        }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--secondary); display: inline-block; }

        .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: transform 0.2s; 
            border: 1px solid var(--border-light);
        }
        .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: 12px; 
            font-size: 14px; 
            color: var(--text-primary); 
            text-align: center; 
            font-family: var(--font-body);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px 5px; 
            border-radius: 10px; 
            text-align: center; 
            font-size: 12px; 
            color: var(--text-secondary); 
            border: 1px solid var(--border-light);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }

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

        .lottery-list { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            margin-bottom: 30px; 
            border: 1px solid var(--border-medium);
        }
        .lottery-header { background: var(--primary); color: var(--text-inverse); padding: 12px; font-weight: bold; text-align: center; }
        .lottery-row { 
            display: grid; 
            grid-template-columns: 1fr 1fr 1fr 1fr; 
            padding: 12px; 
            border-bottom: 1px solid var(--border-light); 
            font-size: 13px; 
            text-align: center; 
            align-items: center;
        }
        .lottery-row:last-child { border-bottom: none; }
        .lottery-row .amount { color: var(--success); font-weight: bold; }

        .providers-wall { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 10px; 
            margin-bottom: 30px; 
        }
        .provider-box { 
            padding: 15px; 
            border-radius: 8px; 
            text-align: center; 
            font-weight: bold; 
            font-family: var(--font-accent);
            color: #fff;
        }
        .p-1 { background: linear-gradient(45deg, #e67e22, #f1c40f); }
        .p-2 { background: linear-gradient(45deg, #3498db, #2ecc71); }
        .p-3 { background: linear-gradient(45deg, #9b59b6, #8e44ad); }
        .p-4 { background: linear-gradient(45deg, #e74c3c, #c0392b); }
        .p-5 { background: linear-gradient(45deg, #1abc9c, #16a085); }
        .p-6 { background: linear-gradient(45deg, #f39c12, #d35400); }
        .p-7 { background: linear-gradient(45deg, #7f8c8d, #2c3e50); }
        .p-8 { background: linear-gradient(45deg, #ff00ff, #7a00ff); }

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

        .faq-container { margin-bottom: 30px; }
        .faq-item { 
            background: var(--bg-surface); 
            border-radius: 10px; 
            margin-bottom: 10px; 
            border: 1px solid var(--border-light);
        }
        .faq-question { 
            padding: 15px; 
            cursor: pointer; 
            font-weight: 600; 
            display: flex; 
            justify-content: space-between; 
            color: var(--primary);
        }
        .faq-answer { padding: 0 15px 15px 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-box { 
            background: var(--bg-surface); 
            border: 1px solid var(--border-medium); 
            border-radius: 15px; 
            padding: 25px; 
            text-align: center; 
            margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; }
        .security-icons i { font-size: 40px; color: var(--accent); }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
        .security-link { color: var(--primary); text-decoration: none; font-size: 13px; border-bottom: 1px solid var(--primary); }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            border-top: 2px solid var(--primary); 
            display: grid; 
            grid-template-columns: repeat(5, 1fr); 
            z-index: 1001; 
            padding: 10px 0;
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            justify-content: center; 
            color: var(--text-secondary); 
            text-decoration: none; 
            font-size: 11px; 
            gap: 5px;
        }
        .nav-item i { font-size: 20px; color: var(--primary); }

        footer { 
            background-color: var(--bg-surface); 
            padding: 40px 20px; 
            border-top: 1px solid var(--border-light); 
            text-align: center; 
            color: var(--text-secondary);
        }
        .footer-contact { margin-bottom: 25px; }
        .footer-contact p { margin-bottom: 10px; color: var(--text-primary); font-weight: bold; }
        .footer-contact-links { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
        .footer-contact-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; }
        .footer-contact-links a:hover { color: var(--primary); }

        .footer-links-grid { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left; 
        }
        .footer-links-grid a { color: var(--text-muted); text-decoration: none; font-size: 13px; display: block; padding: 5px 0; }
        .footer-links-grid a:hover { color: var(--primary); }
        .footer-copy { font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border-light); padding-top: 20px; }

        @media (max-width: 600px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
            .lottery-row { font-size: 11px; }
            .jackpot-amount { font-size: 24px; }
        }