:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2D2D2D;
            --bg-contrast: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-highlight: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-body);
            font-family: 'Poppins', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; color: var(--text-heading); }
        h1 { font-size: 32px; line-height: 1.2; margin-bottom: 1rem; }
        h2 { font-size: 24px; text-align: center; margin: 2rem 0; color: var(--primary); }
        h3 { font-size: 18px; margin: 0.5rem 0; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        
        header {
            background-color: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-heading); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

        main { padding: 0 0 80px 0; max-width: 1200px; margin: 0 auto; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-contrast), var(--bg-surface));
            padding: 30px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-label { color: var(--text-muted); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Montserrat', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--primary);
            margin: 10px 0;
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .intro-section { padding: 40px 20px; text-align: center; }
        .intro-section p { color: var(--text-muted); max-width: 800px; margin: 0 auto; font-size: 16px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px;
        }
        .game-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card-info { padding: 12px; text-align: center; }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            padding: 20px;
        }
        .article-card {
            background-color: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
        }
        .article-card img { width: 100%; height: 180px; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { margin-bottom: 10px; font-size: 16px; }
        .article-content p { font-size: 14px; color: var(--text-muted); margin-bottom: 15px; }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px;
            text-align: center;
        }
        .payment-item {
            background-color: var(--bg-surface);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            font-size: 12px;
            color: var(--secondary);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

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

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px;
        }
        .provider-box {
            background: linear-gradient(135deg, var(--bg-overlay), var(--bg-surface));
            padding: 25px;
            text-align: center;
            border-radius: 12px;
            border: 1px solid var(--border-medium);
            font-weight: 600;
            color: var(--primary);
            font-size: 18px;
        }

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

        .faq-section { padding: 20px; }
        .faq-item {
            background-color: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 12px;
            border: 1px solid var(--border-subtle);
            padding: 20px;
        }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-body); }

        .security-footer {
            text-align: center;
            padding: 40px 20px;
            background-color: var(--bg-contrast);
            border-top: 1px solid var(--border-subtle);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; font-size: 30px; color: var(--secondary); }
        .security-text { font-size: 14px; color: var(--text-muted); max-width: 600px; margin: 0 auto 20px; }
        .security-link { color: var(--primary); text-decoration: underline; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1000;
        }
        .nav-item {
            text-align: center;
            color: var(--text-muted);
            font-size: 12px;
            flex: 1;
        }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }

        footer {
            background-color: var(--bg-contrast);
            padding: 40px 20px 100px;
            text-align: center;
            font-size: 13px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
            text-align: left;
        }
        .footer-links a { color: var(--text-muted); display: block; margin-bottom: 5px; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            h1 { font-size: 24px; }
        }