:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #B22222;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFC107;
            --error: #FF1744;
            --info: #2979FF;
            --border-subtle: #333333;
            --border-medium: #4D4D4D;
            --border-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        .accent-font { font-family: 'Oswald', sans-serif; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        header .logo-area img {
            width: 25px;
            height: 25px;
            object-fit: cover;
        }
        header .logo-area strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-variant); }

        .main-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            object-fit: cover;
            display: block;
        }
        
        .jackpot-section {
            background: var(--bg-surface);
            text-align: center;
            padding: 30px 0;
            border-bottom: 1px solid var(--border-medium);
        }
        .jackpot-title {
            color: var(--primary);
            font-size: 1.2rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .jackpot-value {
            font-family: 'Oswald', sans-serif;
            font-size: 3rem;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
            font-weight: 900;
        }

        .intro-card {
            background: linear-gradient(135deg, var(--bg-surface), #2a2a2a);
            padding: 40px;
            border-radius: 20px;
            margin: 30px 0;
            border-left: 5px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .intro-card h1 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }
        .intro-card p {
            font-size: 1.1rem;
            color: var(--text-secondary);
        }

        .section-title {
            text-align: center;
            font-size: 1.8rem;
            margin: 40px 0 20px;
            color: var(--primary);
            text-transform: uppercase;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid var(--border-subtle);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 12px;
            font-size: 1rem;
            text-align: center;
            color: var(--text-primary);
        }

        .payment-license {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin: 40px 0;
            text-align: center;
        }
        .pl-item {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .pl-item i { font-size: 1.5rem; color: var(--primary); }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }
        .guide-card p { font-size: 0.9rem; color: var(--text-secondary); }

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin: 40px 0;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-subtle);
        }
        .lottery-table th { background: var(--primary-variant); color: var(--text-inverse); }
        .lottery-table td { color: var(--text-secondary); font-size: 0.9rem; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin: 40px 0;
        }
        .provider-box {
            padding: 15px;
            text-align: center;
            font-weight: bold;
            border-radius: 5px;
            background: var(--secondary);
            color: white;
            border: 1px solid var(--primary);
        }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-subtle);
        }
        .rev-header { display: flex; align-items: center; gap: 15px; margin-bottom: 10px; }
        .rev-header i { font-size: 2rem; color: var(--primary); }
        .rev-name { font-weight: bold; }
        .rev-stars { color: var(--warning); font-size: 0.8rem; }
        .rev-body { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 10px; }
        .rev-date { font-size: 0.7rem; color: var(--text-muted); }

        .faq-section { margin: 40px 0; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            overflow: hidden;
        }
        .faq-q {
            padding: 15px;
            background: #222;
            color: var(--primary);
            font-weight: bold;
            cursor: pointer;
            display: block;
        }
        .faq-a { padding: 15px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

        .security-footer {
            text-align: center;
            padding: 40px 20px;
            background: var(--bg-surface);
            border-radius: 20px;
            margin: 40px 0;
            border: 1px dashed var(--primary);
        }
        .sec-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; font-size: 2rem; color: var(--primary); }
        .sec-text { font-size: 0.9rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto 20px; }
        .sec-link { color: var(--accent); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 0.7rem;
            color: var(--text-secondary);
            gap: 5px;
        }
        .nav-item i { font-size: 1.2rem; color: var(--primary); }

        footer {
            background: #050505;
            padding: 50px 0 100px;
            border-top: 1px solid var(--border-medium);
            text-align: center;
        }
        .footer-contact {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-contact a { color: var(--primary); font-size: 0.9rem; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 600px;
            margin: 0 auto 30px;
            text-align: center;
        }
        .footer-links a { font-size: 0.8rem; color: var(--text-secondary); }
        .footer-copy { color: var(--text-muted); font-size: 0.8rem; }

        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .jackpot-value { font-size: 2rem; }
            .intro-card h1 { font-size: 1.5rem; }
        }