:root {
            --primary: #FFD700;
            --primary-hover: #FFC400;
            --secondary: #D4AF37;
            --accent: #FF4D4D;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #1F1F1F;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --border-default: #3D3D3D;
            --font-main: 'Inter', 'Montserrat', -apple-system, sans-serif;
            --font-display: 'Bebas Neue', 'Oswald', sans-serif;
        }
        * { 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;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--bg-surface);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        header .brand { display: flex; align-items: center; gap: 10px; }
        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 {
            padding: 8px 16px;
            border-radius: 20px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: #000; }
        main { max-width: 1200px; margin: 0 auto; padding: 10px; }
        .banner { width: 100%; aspect-ratio: 2/1; border-radius: 15px; overflow: hidden; cursor: pointer; margin-bottom: 20px; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-box {
            background: linear-gradient(145deg, #1f1f1f, #000);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-display); font-size: 24px; color: var(--primary); margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-amount { font-family: var(--font-display); font-size: 40px; color: #fff; text-shadow: 0 0 10px var(--primary); }
        .intro-card { background: var(--bg-surface); border-radius: 15px; padding: 25px; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .intro-card h1 { font-family: var(--font-display); font-size: 28px; margin-bottom: 15px; color: var(--primary); line-height: 1.2; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }
        h2 { font-family: var(--font-display); font-size: 24px; margin: 25px 0 15px; color: var(--primary); text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 20px; }
        .game-card { background: var(--bg-elevated); border-radius: 12px; overflow: hidden; text-decoration: none; border: 1px solid var(--border-default); transition: transform 0.2s; }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card h3 { padding: 10px; font-size: 14px; color: var(--text-primary); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 25px; }
        .pay-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-default); }
        .pay-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }
        .guide-section { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .guide-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border-left: 4px solid var(--primary); }
        .guide-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--primary); }
        .lottery-list { background: var(--bg-surface); border-radius: 15px; padding: 15px; border: 1px solid var(--border-default); }
        .lottery-item { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-default); font-size: 14px; }
        .lottery-item:last-child { border-bottom: none; }
        .win-user { color: var(--primary); font-weight: 600; }
        .win-amount { color: #00C853; font-weight: 700; }
        .providers-wall { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 25px; }
        .provider-tag { flex: 1; min-width: 45%; background: linear-gradient(90deg, #D4AF37, #FFD700); color: #000; padding: 12px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 14px; }
        .comment-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin-bottom: 25px; }
        .comment-card { background: var(--bg-surface); padding: 20px; border-radius: 15px; border: 1px solid var(--border-default); }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
        .comment-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: var(--primary); font-size: 12px; }
        .faq-section { margin-bottom: 25px; }
        .faq-item { background: var(--bg-surface); border-radius: 10px; margin-bottom: 10px; padding: 15px; border: 1px solid var(--border-default); }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 8px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section { background: var(--bg-surface); padding: 20px; border-radius: 15px; text-align: center; border: 1px solid var(--border-default); }
        .security-badges { display: flex; justify-content: center; gap: 20px; margin-top: 15px; font-size: 24px; color: var(--primary); }
        .navigator { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 10px 0; border-top: 1px solid var(--border-default); z-index: 1001; }
        .nav-item { text-decoration: none; color: var(--text-secondary); text-align: center; font-size: 12px; flex: 1; }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        footer { background: var(--bg-surface); padding: 40px 20px 100px; border-top: 1px solid var(--border-default); }
        .footer-contact { text-align: center; margin-bottom: 30px; }
        .footer-contact a { color: var(--primary); margin: 0 10px; text-decoration: none; font-size: 14px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; }
        .footer-copy { text-align: center; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border-default); padding-top: 20px; }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guide-section, .comment-grid { grid-template-columns: repeat(2, 1fr); }
            .payment-methods { grid-template-columns: repeat(8, 1fr); }
        }