:root {
            --primary: #FFD700;
            --primary-variant: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-highlight: #252525;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FF9100;
            --error: #FF5252;
            --info: #2196F3;
            --border-default: #333333;
            --border-bright: #4D4D4D;
            --border-highlight: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Segoe UI', Roboto, sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 80px;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-highlight);
            padding: 10px 20px;
            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;
            text-decoration: none;
            color: var(--text-primary);
        }
        header .brand img {
            width: 25px;
            height: 25px;
            object-fit: cover;
        }
        header .brand strong {
            font-size: 16px;
            font-weight: normal;
            font-family: var(--font-heading);
        }
        header .auth-btns {
            display: flex;
            gap: 10px;
        }
        header .btn {
            padding: 8px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 600;
            transition: 0.3s;
            border: none;
            font-size: 14px;
        }
        header .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        header .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        header .btn-register {
            background: var(--primary);
            color: var(--text-inverse);
        }
        header .btn-register:hover { background: var(--primary-variant); }

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

        .banner-container {
            width: 100%;
            aspect-ratio: 2 / 1;
            margin-bottom: 30px;
            cursor: pointer;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .banner-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(45deg, #1a1a1a, #333);
            border: 2px solid var(--primary);
            border-radius: 15px;
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title {
            font-family: var(--font-accent);
            color: var(--primary);
            font-size: 24px;
            text-transform: uppercase;
            margin-bottom: 10px;
        }
        .jackpot-amount {
            font-family: var(--font-accent);
            font-size: 48px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
            display: block;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
        }
        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .intro-card p {
            color: var(--text-secondary);
            font-size: 18px;
        }

        h2 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin: 40px 0 20px;
            text-align: center;
            text-transform: uppercase;
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-primary);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            border-color: var(--primary);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }
        .game-card h3 {
            padding: 15px;
            font-size: 16px;
            text-align: center;
            font-family: var(--font-heading);
        }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin: 40px 0;
            text-align: center;
        }
        .payment-item {
            background: var(--bg-highlight);
            padding: 15px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            border: 1px solid var(--border-bright);
        }
        .payment-item i {
            font-size: 24px;
            color: var(--primary);
        }
        .payment-item span {
            font-size: 14px;
            font-weight: 500;
        }

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .lottery-table th, .lottery-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-default);
        }
        .lottery-table th {
            background: var(--bg-highlight);
            color: var(--primary);
            font-family: var(--font-heading);
        }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 40px;
        }
        .provider-block {
            padding: 15px;
            border-radius: 8px;
            font-weight: bold;
            text-align: center;
            font-family: var(--font-accent);
            text-transform: uppercase;
        }
        .provider-block:nth-child(odd) { background: var(--primary); color: var(--text-inverse); }
        .provider-block:nth-child(even) { background: var(--bg-highlight); color: var(--primary); border: 1px solid var(--primary); }

        .comments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-default);
        }
        .comment-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .comment-header i { font-size: 30px; color: var(--secondary); }
        .comment-header .name { font-weight: bold; color: var(--primary); }
        .comment-stars { color: #ffcc00; font-size: 12px; margin-bottom: 10px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section {
            max-width: 800px;
            margin: 0 auto 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-default);
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            background: var(--bg-highlight);
            cursor: pointer;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            justify-content: space-between;
        }
        .faq-answer { padding: 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer {
            text-align: center;
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border-bright);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .sec-item { display: flex; align-items: center; gap: 10px; color: var(--secondary); font-size: 14px; }
        .sec-item i { color: var(--success); font-size: 20px; }
        .sec-warning { color: var(--error); font-weight: bold; margin: 10px 0; }
        .sec-link { color: var(--info); text-decoration: none; font-size: 14px; }

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

        footer {
            background: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }
        footer .contact-row {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        footer .contact-row a {
            color: var(--primary);
            text-decoration: none;
            font-size: 14px;
        }
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .links-grid a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: 0.2s;
        }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copyright {
            color: var(--text-disabled);
            font-size: 13px;
            margin-top: 20px;
        }

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