:root {
            --primary-gold: #FFD700;
            --primary-gold-hover: #FFC400;
            --secondary-gold: #C5A059;
            --accent-red: #E63946;
            --bg-main: #050505;
            --bg-surface: #121212;
            --bg-overlay: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #9E9E9E;
            --border-default: #333333;
            --font-main: 'Montserrat', sans-serif;
            --font-display: 'Bebas Neue', cursive;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        header .logo-box img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        header .logo-box strong {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 1px;
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        header button {
            padding: 6px 15px;
            border-radius: 20px;
            border: none;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }
        header .login-btn {
            background: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }
        header .register-btn {
            background: var(--primary-gold);
            color: #000;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            margin: 15px 0;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-section {
            background: linear-gradient(135deg, #1e1e1e 0%, #000 100%);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        .jackpot-amount {
            font-size: 36px;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 10px var(--primary-gold);
            font-variant-numeric: tabular-nums;
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin: 20px 0;
            border-left: 4px solid var(--primary-gold);
        }
        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--primary-gold);
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .section-header {
            display: flex;
            align-items: center;
            margin: 25px 0 15px;
            gap: 10px;
        }
        .section-header h2 {
            font-size: 18px;
            font-family: var(--font-display);
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .section-header i {
            color: var(--primary-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .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: 13px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: 500;
        }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 20px 0;
        }
        .payment-item {
            background: var(--bg-overlay);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-default);
        }
        .payment-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--secondary-gold);
        }
        .guides-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin: 25px 0;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            border-top: 2px solid var(--primary-gold);
        }
        .guide-card h3 {
            color: var(--primary-gold);
            margin-bottom: 10px;
            font-size: 16px;
        }
        .lottery-list {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 15px;
            margin: 20px 0;
        }
        .lottery-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .lottery-item:last-child { border-bottom: none; }
        .lottery-user { color: var(--primary-gold); font-weight: 600; }
        .lottery-win { color: var(--semantic-success, #00C853); font-weight: 700; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 20px 0;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            background: var(--bg-overlay);
            border-radius: 8px;
            font-weight: 700;
            color: var(--primary-gold);
            border: 1px solid var(--border-default);
        }
        .review-grid {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 20px 0;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i {
            font-size: 30px;
            color: var(--secondary-gold);
        }
        .review-info h4 { font-size: 14px; }
        .stars { color: #FFD700; font-size: 12px; }
        .faq-section {
            margin: 25px 0;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            color: var(--primary-gold);
            margin-bottom: 8px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-secondary);
        }
        .security-section {
            background: #000;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin: 25px 0;
            border: 1px dashed var(--secondary-gold);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
            font-size: 24px;
            color: var(--secondary-gold);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1001;
        }
        .navigator a {
            text-decoration: none;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            gap: 4px;
        }
        .navigator i { font-size: 20px; }
        .navigator a:nth-child(3) i {
            background: var(--primary-gold);
            color: #000;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-top: -30px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        footer {
            background: var(--bg-surface);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }
        .footer-socials {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 25px;
        }
        .footer-socials a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            border: 1px solid var(--border-default);
            padding: 5px 12px;
            border-radius: 5px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }
        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 12px;
        }
        .copyright {
            font-size: 11px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }
        @keyframes countUp {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        .jackpot-amount span { animation: countUp 1s ease-in; }