:root {
            --primary: #FFD700;
            --primary-hover: #FFC400;
            --secondary: #B8860B;
            --accent: #FF0000;
            --bg-main: #0B0D17;
            --bg-surface: #1A1D29;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --gradient-start: #0F121D;
            --gradient-end: #05070A;
            --text-heading: #FFFFFF;
            --text-body: #B0B3B8;
            --text-muted: #6B7280;
            --text-inverse: #0B0D17;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #2D3245;
            --border-strong: #3F445E;
            --border-highlight: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { 
            background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end)); 
            background-attachment: fixed;
            color: var(--text-body); 
            font-family: var(--font-body); 
            line-height: 1.5;
            overflow-x: hidden;
        }

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

        header .logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }

        header .auth-buttons { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 8px 16px; 
            border-radius: 6px; 
            font-family: var(--font-heading); 
            font-weight: 600; 
            cursor: pointer; 
            transition: 0.3s; 
            border: 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-hover); }

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

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            cursor: pointer; 
            border-radius: 16px; 
            overflow: hidden; 
            border: 2px solid var(--border-strong);
            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, var(--bg-surface), #252a3d);
            border: 2px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-family: var(--font-heading); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; }
        .jackpot-value { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 32px; 
            font-weight: 800; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-surface);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { 
            font-family: var(--font-heading); 
            color: var(--text-heading); 
            font-size: 24px; 
            margin-bottom: 15px; 
            line-height: 1.3;
        }
        .intro-card p { font-size: 16px; color: var(--text-body); }

        .section-title { 
            font-family: var(--font-heading); 
            color: var(--text-heading); 
            font-size: 22px; 
            margin: 40px 0 20px; 
            display: flex; 
            align-items: center; 
            gap: 10px; 
        }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--primary); display: inline-block; border-radius: 2px; }

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

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 10px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            padding: 15px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-heading);
            font-size: 14px;
            justify-content: center;
        }
        .payment-item i { color: var(--primary); }

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

        .lottery-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
        }
        .lottery-table th, .lottery-table td { 
            padding: 12px; 
            text-align: left; 
            border-bottom: 1px solid var(--border-subtle); 
            font-size: 14px; 
        }
        .lottery-table th { background: var(--border-strong); color: var(--text-heading); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            color: #fff;
            font-family: var(--font-heading);
        }
        .p-1 { background: #e74c3c; } .p-2 { background: #3498db; }
        .p-3 { background: #f1c40f; color: #000; } .p-4 { background: #2ecc71; }
        .p-5 { background: #9b59b6; } .p-6 { background: #e67e22; }
        .p-7 { background: #1abc9c; } .p-8 { background: #34495e; }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-user i { font-size: 24px; color: var(--primary); }
        .comment-user span { font-weight: 600; color: var(--text-heading); }
        .comment-stars { color: var(--primary); margin-bottom: 10px; font-size: 12px; }
        .comment-text { font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

        .faq-section {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 10px; }
        .faq-item p { font-size: 14px; }

        .security-footer {
            background: var(--bg-surface);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            margin-top: 40px;
            border: 1px solid var(--border-strong);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        .sec-item { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 13px; color: var(--text-body); }
        .sec-item i { font-size: 24px; color: var(--success); }

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

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

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