:root {
            --primary: #D4AF37;
            --secondary: #B8860B;
            --accent: #FFD700;
            --gradient-start: #BF953F;
            --gradient-end: #AA771C;
            --bg-primary: #050505;
            --bg-secondary: #121212;
            --bg-surface: #1E1E1E;
            --text-primary: #FFFFFF;
            --text-secondary: #E0E0E0;
            --text-muted: #A0A0A0;
            --border-default: #333333;
            --border-active: #D4AF37;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: 'Montserrat', 'Be Vietnam Pro', sans-serif;
            line-height: 1.6;
            padding-bottom: 70px;
        }

        h1, h2 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        header {
            background-color: var(--bg-secondary);
            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(--border-default);
        }

        header .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        header .logo-container img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }

        header .logo-container strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-primary);
        }

        header .auth-buttons {
            display: flex;
            gap: 10px;
        }

        header button {
            padding: 6px 15px;
            border-radius: 4px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

        header .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        header .btn-register {
            background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
            color: #000;
        }

        main {
            max-width: 600px;
            margin: 0 auto;
            padding: 10px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            margin-bottom: 20px;
        }

        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-box {
            background: radial-gradient(circle, #2a2a2a 0%, #000 100%);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
        }

        .jackpot-title {
            color: var(--accent);
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .intro-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 20px;
            border-left: 4px solid var(--primary);
        }

        .intro-card h1 {
            font-size: 24px;
            line-height: 1.2;
        }

        .intro-card p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .section-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-left: 5px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 25px;
        }

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.2s;
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }

        .game-info {
            padding: 8px;
            text-align: center;
        }

        .game-info h3 {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--text-primary);
        }

        .payment-license {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 25px;
        }

        .payment-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 10px;
            color: var(--text-muted);
        }

        .payment-item i {
            font-size: 20px;
            color: var(--primary);
        }

        .guide-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        .guide-card {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }

        .guide-card h3 {
            color: var(--primary);
            margin-bottom: 8px;
        }

        .lottery-ticker {
            background-color: var(--bg-secondary);
            height: 150px;
            overflow: hidden;
            border-radius: 12px;
            margin-bottom: 25px;
            border: 1px solid var(--border-default);
            position: relative;
        }

        .lottery-track {
            animation: scroll-up 30s linear infinite;
        }

        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid #222;
            display: flex;
            justify-content: space-between;
            font-size: 12px;
        }

        .lottery-user { color: var(--accent); }
        .lottery-win { color: var(--primary); font-weight: bold; }

        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-80%); }
        }

        .providers-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 25px;
        }

        .provider-tag {
            background: #252525;
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            font-weight: 600;
            color: var(--primary);
        }

        .comment-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .comment-card {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
        }

        .comment-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .comment-header i {
            font-size: 24px;
            color: var(--primary);
        }

        .comment-stars { color: #FFD700; font-size: 12px; }

        .faq-section {
            margin-bottom: 25px;
        }

        .faq-item {
            margin-bottom: 10px;
            background-color: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-default);
        }

        .faq-answer {
            padding: 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .security-footer {
            text-align: center;
            padding: 20px;
            background-color: var(--bg-surface);
            border-radius: 12px;
            font-size: 12px;
            margin-bottom: 20px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 10px;
            font-size: 24px;
            color: var(--primary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-default);
            z-index: 1000;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            color: var(--text-muted);
        }

        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }

        footer {
            background-color: var(--bg-secondary);
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 1px solid var(--border-default);
        }

        footer .contact-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 25px;
        }

        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            text-align: left;
            margin-bottom: 25px;
            font-size: 13px;
            color: var(--text-muted);
        }

        footer .copyright {
            font-size: 12px;
            color: var(--text-disabled);
            border-top: 1px solid #222;
            padding-top: 20px;
        }

        @keyframes countJackpot {
            from { opacity: 0.8; }
            to { opacity: 1; }
        }