:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #D4AF37;
            --accent: #B71C1C;
            --gold-gradient: linear-gradient(180deg, #FFD700 0%, #D4AF37 100%);
            --bg-default: #0A0A0A;
            --bg-paper: #121212;
            --bg-surface: #1E1E1E;
            --bg-elevated: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --text-brand: #000000;
            --border-subtle: #2C2C2C;
            --border-medium: #424242;
            --border-active: #D4AF37;
            --font-main: 'Inter', 'Roboto', sans-serif;
            --font-heading: 'Montserrat', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-paper);
            border-bottom: 1px solid var(--border-subtle);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .brand { display: flex; align-items: center; gap: 8px; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        header .actions { display: flex; gap: 10px; }
        header button {
            border: none;
            padding: 8px 16px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
        }
        header .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        header .btn-register { background: var(--gold-gradient); color: var(--text-brand); }

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

        .jackpot-container {
            background: var(--bg-surface);
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-heading); color: var(--primary); font-size: 18px; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: 'Roboto Mono', monospace; 
            font-size: 32px; 
            font-weight: 900; 
            color: var(--primary);
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-section { padding: 20px 0; text-align: center; }
        .intro-section h1 { font-family: var(--font-heading); font-size: 28px; color: var(--primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .section-title { font-family: var(--font-heading); font-size: 20px; margin: 25px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; text-decoration: none; transition: transform 0.2s; border: 1px solid var(--border-subtle); }
        .game-card:active { transform: scale(0.95); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 8px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }

        .payment-methods { background: var(--bg-paper); padding: 20px; border-radius: 12px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; text-align: center; }
        .payment-item { display: flex; flex-direction: column; align-items: center; gap: 5px; color: var(--text-secondary); }
        .payment-item i { font-size: 24px; color: var(--secondary); }
        .payment-item span { font-size: 10px; }

        .instructions { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 20px 0; }
        .inst-card { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 3px solid var(--accent); }
        .inst-card h2 { font-size: 18px; margin-bottom: 8px; color: var(--primary); }
        .inst-card p { font-size: 14px; color: var(--text-secondary); }

        .lottery-marquee { background: var(--bg-elevated); padding: 10px; border-radius: 8px; height: 150px; overflow: hidden; position: relative; }
        .marquee-content { animation: scrollUp 20s linear infinite; }
        .lottery-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .lottery-item span:last-child { color: var(--primary); font-weight: bold; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-100%); } }

        .providers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
        .provider-box { padding: 15px; text-align: center; border-radius: 8px; font-weight: bold; font-family: var(--font-heading); background: var(--bg-surface); border: 1px solid var(--border-subtle); color: var(--secondary); }

        .comment-grid { display: flex; flex-direction: column; gap: 15px; }
        .comment-card { background: var(--bg-paper); padding: 15px; 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(--text-secondary); }
        .comment-info h3 { font-size: 14px; margin-bottom: 2px; }
        .stars { color: #FFD700; font-size: 12px; }
        .comment-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 8px; }
        .comment-date { font-size: 11px; color: var(--text-disabled); }

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

        .security-section { background: var(--bg-paper); padding: 20px; border-radius: 12px; text-align: center; border: 1px solid var(--accent); }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--secondary); }
        .security-text { font-size: 13px; color: var(--text-secondary); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-paper);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--text-secondary); font-size: 11px; }
        .nav-item i { font-size: 20px; margin-bottom: 4px; }
        .nav-item.active { color: var(--primary); }

        footer { background: var(--bg-paper); padding: 30px 15px; border-top: 1px solid var(--border-subtle); }
        footer .contact-row { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        footer .contact-row a { color: var(--primary); text-decoration: none; font-size: 14px; }
        footer .links-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 25px; }
        footer .links-grid a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        footer .copyright { text-align: center; color: var(--text-disabled); font-size: 12px; padding-top: 15px; border-top: 1px solid var(--border-subtle); }

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .instructions { grid-template-columns: 1fr 1fr; }
            .comment-grid { display: grid; grid-template-columns: 1fr 1fr; }
        }