:root {
            --primary-gold: #D4AF37;
            --primary-light: #F9E29B;
            --primary-dark: #AA8A2E;
            --secondary-red: #B20000;
            --accent-emerald: #00875A;
            --bg-main: #0A0A0A;
            --bg-surface: #161616;
            --bg-elevated: #222222;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B0B0;
            --border-default: #333333;
            --border-active: #D4AF37;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', 'Inter', sans-serif;
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }

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

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        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-gold);
        }

        header .actions {
            display: flex;
            gap: 10px;
        }

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

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

        header .btn-register {
            background: var(--primary-gold);
            color: #000;
        }

        main {
            padding-bottom: 80px;
        }

        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            cursor: pointer;
        }

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

        .jackpot-section {
            background: linear-gradient(180deg, #161616 0%, #0A0A0A 100%);
            padding: 20px 15px;
            text-align: center;
            border-bottom: 2px solid var(--primary-gold);
        }

        .jackpot-title {
            color: var(--primary-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

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

        .platform-intro {
            padding: 25px 15px;
            background-color: var(--bg-surface);
            margin: 15px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-gold);
        }

        .platform-intro h1 {
            font-size: 20px;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

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

        .section-header {
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-header h2 {
            font-size: 18px;
            color: var(--text-primary);
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--primary-gold);
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
            margin-bottom: 20px;
        }

        .game-card {
            background: var(--bg-elevated);
            border-radius: 10px;
            overflow: hidden;
            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 {
            font-size: 14px;
            padding: 10px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            font-weight: 500;
        }

        .payment-methods {
            background: var(--bg-surface);
            padding: 20px 15px;
            margin: 20px 0;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }

        .payment-item i {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }

        .payment-item span {
            display: block;
            font-size: 10px;
            color: var(--text-secondary);
        }

        .guides-container {
            padding: 0 15px;
        }

        .guide-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        .guide-item h3 {
            color: var(--primary-gold);
            font-size: 16px;
            margin-bottom: 8px;
        }

        .guide-item p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .lottery-marquee {
            background: #111;
            margin: 20px 0;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            border-top: 1px solid var(--border-default);
            border-bottom: 1px solid var(--border-default);
        }

        .lottery-track {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }

        .lottery-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 20px;
            font-size: 13px;
        }

        .lottery-item span:first-child { color: var(--primary-gold); }
        .lottery-item b { color: var(--accent-emerald); }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .providers-wall {
            padding: 0 15px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 25px;
        }

        .provider-box {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: 600;
            color: var(--primary-light);
            border: 1px solid var(--border-default);
        }

        .comments-section {
            padding: 0 15px;
        }

        .comment-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid #333;
        }

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

        .comment-user i {
            background: var(--bg-elevated);
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-gold);
        }

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

        .faq-section {
            padding: 0 15px;
            margin-top: 30px;
        }

        .faq-item {
            margin-bottom: 20px;
            background: var(--bg-surface);
            border-radius: 8px;
            padding: 15px;
        }

        .faq-item h3 {
            font-size: 15px;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }

        .faq-item p {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .security-section {
            margin: 30px 15px;
            padding: 20px;
            background: var(--bg-elevated);
            border-radius: 12px;
            text-align: center;
        }

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

        .security-text { font-size: 12px; color: var(--text-secondary); }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            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-align: center;
            font-size: 10px;
            color: var(--text-secondary);
        }

        .nav-item i {
            display: block;
            font-size: 18px;
            margin-bottom: 3px;
        }

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

        footer .contact-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }

        footer .contact-link {
            background: var(--bg-elevated);
            padding: 10px;
            border-radius: 5px;
            text-align: center;
            border: 1px solid var(--border-default);
        }

        footer .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }

        footer .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid var(--border-default);
            font-size: 11px;
        }