:root {
            --primary: #D4AF37;
            --primary-hover: #F1C40F;
            --primary-active: #B8860B;
            --secondary: #1E293B;
            --accent: #FF4D4D;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-card: #242424;
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A0;
            --text-gold: #FFD700;
            --border-default: #333333;
            --win: #FFD700;
        }

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

        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

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

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

        .btn {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }

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

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

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
        }

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

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

        .jackpot-container {
            background: linear-gradient(135deg, #2c3e50, #000);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
        }

        .jackpot-label {
            color: var(--text-gold);
            font-weight: 800;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: 'Roboto Mono', monospace;
            font-size: 32px;
            font-weight: 800;
            color: var(--win);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

        .platform-intro {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
            border: 1px solid var(--border-default);
        }

        .platform-intro h1 {
            color: var(--primary);
            font-size: 24px;
        }

        .section-title {
            font-size: 20px;
            color: var(--text-gold);
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 4px solid var(--primary);
        }

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

        .game-card {
            background: var(--bg-card);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
            border: 1px solid var(--border-default);
        }

        .game-card:hover {
            transform: translateY(-5px);
        }

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

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin: 0;
        }

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

        .payment-item {
            background: var(--bg-surface);
            padding: 15px 5px;
            border-radius: 8px;
            font-size: 12px;
            color: var(--text-secondary);
        }

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

        .lottery-marquee {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
        }

        .marquee-container {
            height: 150px;
            overflow: hidden;
            position: relative;
        }

        .marquee-content {
            position: absolute;
            width: 100%;
            animation: scrollUp 20s linear infinite;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .lottery-item {
            padding: 8px 0;
            border-bottom: 1px solid #333;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
        }

        .lottery-item span:first-child { color: var(--primary); }
        .lottery-item span:last-child { color: var(--win); font-weight: bold; }

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

        .provider-box {
            background: linear-gradient(45deg, #1e293b, #0f172a);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--text-gold);
            border: 1px solid #334155;
        }

        .reviews-grid {
            margin-bottom: 30px;
        }

        .review-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }

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

        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: #f1c40f; font-size: 12px; }

        .instructions-grid {
            margin-bottom: 30px;
        }

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

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

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

        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .security-section {
            background: #1a1a1a;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 30px;
        }

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

        .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: 1000;
        }

        .navigator a {
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
        }

        .navigator a i { font-size: 18px; }

        footer {
            background: #000;
            padding: 30px 15px 100px;
            text-align: center;
            border-top: 2px solid var(--primary);
        }

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

        footer .contact-links a {
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
        }

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

        footer .footer-grid a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
        }

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-methods { grid-template-columns: repeat(8, 1fr); }
            .providers { grid-template-columns: repeat(4, 1fr); }
        }