:root {
            --primary: #FFD700;
            --primary-variant: #B8860B;
            --secondary: #E60012;
            --accent: #00FFCC;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #333333;
            --border-medium: #4D4D4D;
            --border-strong: #FFD700;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-heading: 'Poppins', sans-serif;
        }

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

        body {
            background-color: var(--bg-main);
            background-image: linear-gradient(to bottom, var(--grad-start), var(--grad-end));
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            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 img {
            width: 25px;
            height: 25px;
            object-fit: cover;
        }

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

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

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

        .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 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            padding-bottom: 100px;
        }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 20px;
            border: 2px solid var(--border-medium);
            transition: transform 0.3s ease;
        }

        .hero-banner:hover {
            transform: scale(1.01);
        }

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

        .jackpot-container {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: var(--text-inverse);
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }

        .jackpot-title {
            font-family: var(--font-heading);
            font-size: 18px;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .jackpot-amount {
            font-family: var(--font-heading);
            font-size: 36px;
            font-weight: 900;
            letter-spacing: 2px;
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid var(--primary);
            margin-bottom: 40px;
            text-align: center;
        }

        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.2;
        }

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

        section {
            margin-bottom: 50px;
        }

        h2 {
            font-family: var(--font-heading);
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 25px;
            text-align: center;
            position: relative;
            padding-bottom: 10px;
        }

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

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

        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-primary);
            border: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

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

        .game-card h3 {
            padding: 15px;
            font-size: 16px;
            text-align: center;
            font-family: var(--font-heading);
        }

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

        .payment-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-medium);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

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

        .payment-item span {
            font-size: 14px;
            font-weight: 500;
        }

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

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

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

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
        }

        .lottery-table th, .lottery-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid var(--border-light);
        }

        .lottery-table th {
            background: var(--primary-variant);
            color: var(--text-inverse);
            font-family: var(--font-heading);
        }

        .lottery-table tr:last-child td {
            border-bottom: none;
        }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

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

        .prov-1 { background: linear-gradient(135deg, #ff416c, #ff4b2b); color: white; }
        .prov-2 { background: linear-gradient(135deg, #1f4037, #99f2c8); color: #000; }
        .prov-3 { background: linear-gradient(135deg, #4776e6, #8e54e9); color: white; }
        .prov-4 { background: linear-gradient(135deg, #f7971e, #ffd200); color: #000; }
        .prov-5 { background: linear-gradient(135deg, #00b09b, #96c93d); color: white; }
        .prov-6 { background: linear-gradient(135deg, #8e2de2, #4a00e0); color: white; }
        .prov-7 { background: linear-gradient(135deg, #ff00cc, #333399); color: white; }
        .prov-8 { background: linear-gradient(135deg, #f2994a, #f2c94c); color: #000; }

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

        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }

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

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

        .comment-user {
            font-weight: 600;
            display: block;
        }

        .comment-stars {
            color: #ffcc00;
            font-size: 12px;
            margin-bottom: 10px;
            display: block;
        }

        .comment-text {
            color: var(--text-secondary);
            font-size: 14px;
            margin-bottom: 10px;
            font-style: italic;
        }

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

        .faq-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

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

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

        .security-banner {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            border: 1px dashed var(--primary);
        }

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

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

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

        .security-text a {
            color: var(--accent);
            text-decoration: underline;
        }

        .navigator {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-strong);
            border-radius: 50px;
            display: flex;
            padding: 10px 20px;
            gap: 15px;
            z-index: 2000;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-secondary);
            font-size: 11px;
            gap: 4px;
            transition: all 0.3s ease;
            min-width: 60px;
        }

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

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

        footer {
            background: #000;
            padding: 40px 20px;
            border-top: 1px solid var(--border-medium);
            text-align: center;
        }

        footer .contact-section {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        footer .contact-link {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        footer .contact-link:hover {
            color: var(--primary);
        }

        footer .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 800px;
            margin: 0 auto 30px;
            text-align: center;
        }

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

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

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

        @media (max-width: 768px) {
            .game-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
            .hero-banner {
                aspect-ratio: 1/1;
            }
            .jackpot-amount {
                font-size: 24px;
            }
            .intro-card h1 {
                font-size: 24px;
            }
        }