:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-soft: #444444;
            --font-heading: 'Montserrat', sans-serif;
            --font-body: 'Roboto', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }

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

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

        h1, h2, h3 {
            font-family: var(--font-heading);
            font-weight: 700;
            text-transform: uppercase;
        }

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

        header .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

        header .brand img {
            width: 25px;
            height: 25px;
        }

        header .brand strong {
            font-size: 16px;
            font-weight: normal;
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-family: var(--font-heading);
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }

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

        .btn-login:hover {
            background-color: var(--primary);
            color: var(--text-inverse);
        }

        .btn-register {
            background-color: var(--primary);
            color: var(--text-inverse);
        }

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

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

        .banner-container {
            width: 100%;
            aspect-ratio: 2/1;
            margin-bottom: 20px;
            cursor: pointer;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 0 20px var(--primary);
        }

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-elevated));
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

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

        .jackpot-amount {
            font-family: var(--font-mono);
            font-size: 48px;
            font-weight: bold;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background-color: var(--bg-surface);
            border-left: 5px solid var(--primary);
            padding: 25px;
            border-radius: 10px;
            margin-bottom: 40px;
        }

        .intro-card h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
        }

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

        .section-title {
            font-size: 24px;
            color: var(--primary);
            margin: 40px 0 20px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

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

        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            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;
        }

        .game-card h3 {
            padding: 12px;
            font-size: 16px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
        }

        .payment-item {
            background-color: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-size: 12px;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-soft);
        }

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

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .guide-item {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-soft);
        }

        .guide-item h3 {
            color: var(--primary);
            font-size: 18px;
            margin-bottom: 10px;
        }

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--bg-surface);
            border-radius: 10px;
            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-color: var(--bg-elevated);
            color: var(--primary);
            font-size: 14px;
        }

        .lottery-table td {
            color: var(--text-secondary);
            font-size: 14px;
        }

        .win-amount {
            color: var(--success);
            font-weight: bold;
        }

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

        .provider-box {
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-heading);
            text-transform: uppercase;
            font-size: 16px;
        }

        .p-1 { background: linear-gradient(135deg, #d4af37, #b8860b); color: #000; }
        .p-2 { background: linear-gradient(135deg, #c0c0c0, #808080); color: #000; }
        .p-3 { background: linear-gradient(135deg, #ff4500, #b22222); color: #fff; }
        .p-4 { background: linear-gradient(135deg, #1e90ff, #00008b); color: #fff; }
        .p-5 { background: linear-gradient(135deg, #32cd32, #006400); color: #fff; }
        .p-6 { background: linear-gradient(135deg, #ff69b4, #c71585); color: #fff; }
        .p-7 { background: linear-gradient(135deg, #ffd700, #daa520); color: #000; }
        .p-8 { background: linear-gradient(135deg, #8a2be2, #4b0082); color: #fff; }

        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .review-card {
            background-color: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-soft);
            position: relative;
        }

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

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

        .review-name {
            font-weight: bold;
            font-size: 16px;
        }

        .review-stars {
            color: var(--primary);
            font-size: 12px;
            margin-bottom: 10px;
        }

        .review-content {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .review-date {
            font-size: 12px;
            color: var(--text-disabled);
        }

        .faq-container {
            display: grid;
            gap: 15px;
            margin-bottom: 40px;
        }

        .faq-item {
            background-color: var(--bg-surface);
            border: 1px solid var(--border-soft);
            border-radius: 8px;
            padding: 20px;
        }

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

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

        .security-section {
            text-align: center;
            background-color: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid var(--border-highlight);
            margin-bottom: 40px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .sec-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: var(--primary);
        }

        .sec-icon i {
            font-size: 40px;
        }

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

        .sec-commitment {
            color: var(--text-secondary);
            font-size: 14px;
            max-width: 700px;
            margin: 0 auto 20px;
        }

        .sec-age {
            font-weight: bold;
            color: var(--accent);
            font-size: 18px;
            margin-bottom: 15px;
        }

        .sec-links a {
            color: var(--primary);
            font-size: 14px;
            text-decoration: none;
            border-bottom: 1px solid var(--primary);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-surface);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            align-items: center;
            height: 70px;
            z-index: 1000;
        }

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            font-size: 12px;
            transition: 0.3s;
        }

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

        .nav-item:hover {
            color: var(--primary);
        }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-default);
            text-align: center;
        }

        .footer-contact {
            margin-bottom: 30px;
        }

        .footer-contact p {
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .footer-contact-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-contact-links a {
            color: var(--text-secondary);
            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: center;
        }

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

        .footer-links-grid a:hover {
            color: var(--primary);
        }

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

        @media (max-width: 768px) {
            .payment-licenses { grid-template-columns: repeat(2, 1fr); }
            .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
            .jackpot-amount { font-size: 32px; }
        }