:root {
            --primary-gold: #D4AF37;
            --secondary-gold: #F9E076;
            --deep-gold: #996515;
            --accent-red: #E63946;
            --bg-main: #0D0D0D;
            --surface-dark: #1A1A1A;
            --surface-light: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numeric: 'Roboto Mono', monospace;
        }
        * { 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-color: var(--surface-dark);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--deep-gold);
        }
        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-gold); font-family: var(--font-heading); }
        header .actions { display: flex; gap: 10px; }
        header button {
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-heading);
        }
        header .login-btn { background: transparent; color: var(--primary-gold); border: 1px solid var(--primary-gold); }
        header .reg-btn { background: var(--primary-gold); color: var(--bg-main); }
        main { padding-bottom: 80px; }
        .banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            margin: 20px 15px;
            background: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { font-family: var(--font-heading); color: var(--secondary-gold); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-family: var(--font-numeric); font-size: 32px; color: var(--primary-gold); font-weight: 700; margin-top: 10px; }
        .intro-card { margin: 20px 15px; padding: 20px; background: var(--surface-dark); border-radius: 12px; border-left: 4px solid var(--primary-gold); }
        .intro-card h1 { font-family: var(--font-heading); font-size: 20px; color: var(--primary-gold); margin-bottom: 10px; }
        .intro-card p { font-size: 14px; color: var(--text-secondary); }
        .section-title { padding: 0 15px; margin: 25px 0 15px; font-family: var(--font-heading); font-size: 18px; color: var(--secondary-gold); display: flex; align-items: center; gap: 8px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 15px; }
        .game-card { background: var(--surface-light); border-radius: 10px; overflow: hidden; text-decoration: none; border: 1px solid var(--surface-light); transition: transform 0.2s; }
        .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: 12px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 500; }
        .trust-section { margin: 30px 15px; background: var(--surface-dark); border-radius: 12px; padding: 15px; }
        .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
        .trust-item { color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .trust-item i { font-size: 20px; color: var(--primary-gold); }
        .trust-item span { font-size: 10px; }
        .guides-container { padding: 0 15px; }
        .guide-item { background: var(--surface-dark); border-radius: 10px; padding: 15px; margin-bottom: 15px; border: 1px solid var(--surface-light); }
        .guide-item h3 { color: var(--primary-gold); font-size: 16px; margin-bottom: 8px; }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .lottery-container { margin: 20px 15px; background: var(--surface-dark); border-radius: 12px; padding: 15px; }
        .lottery-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--surface-light); font-size: 12px; }
        .lottery-row:last-child { border-bottom: none; }
        .winner-name { color: var(--secondary-gold); font-weight: 600; }
        .winner-amount { color: var(--accent-red); font-weight: 700; }
        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 15px; }
        .provider-tag { background: var(--surface-dark); color: var(--primary-gold); padding: 12px; text-align: center; border-radius: 8px; font-weight: 600; font-size: 14px; border: 1px solid var(--deep-gold); }
        .comment-grid { padding: 0 15px; }
        .comment-card { background: var(--surface-dark); border-radius: 12px; padding: 15px; margin-bottom: 15px; border: 1px solid var(--surface-light); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-header i { font-size: 24px; color: var(--text-secondary); }
        .comment-info h4 { font-size: 14px; color: var(--primary-gold); }
        .stars { color: #FFC107; font-size: 10px; }
        .comment-content { font-size: 13px; color: var(--text-secondary); margin: 8px 0; }
        .comment-date { font-size: 11px; color: var(--text-disabled); }
        .faq-container { padding: 0 15px; }
        .faq-item { background: var(--surface-dark); margin-bottom: 10px; border-radius: 8px; overflow: hidden; }
        .faq-question { padding: 15px; color: var(--primary-gold); font-weight: 600; font-size: 14px; border-bottom: 1px solid var(--surface-light); }
        .faq-answer { padding: 15px; font-size: 13px; color: var(--text-secondary); background: rgba(255,255,255,0.02); }
        .safety-section { margin: 30px 15px; padding: 20px; border: 1px dashed var(--deep-gold); border-radius: 12px; text-align: center; }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary-gold); }
        .safety-text { font-size: 12px; color: var(--text-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background: var(--surface-dark);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--deep-gold);
            z-index: 1000;
        }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; gap: 4px; }
        .nav-item i { font-size: 20px; }
        .nav-item span { font-size: 11px; }
        footer {
            background: var(--bg-main);
            padding: 30px 15px 100px;
            border-top: 1px solid var(--surface-light);
        }
        .footer-contact { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; margin-bottom: 25px; }
        .footer-contact a { color: var(--primary-gold); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 5px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 25px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .copyright { text-align: center; font-size: 11px; color: var(--text-disabled); padding-top: 20px; border-top: 1px solid var(--surface-light); }