:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFC107;
            --main-bg: #0B0B0B;
            --surface: #1A1A1A;
            --overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --text-link: #FFD700;
            --success: #4CAF50;
            --error: #F44336;
            --warning: #FF9800;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-strong: #FFD700;
            --border-divider: #262626;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Montserrat', sans-serif;
        }

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

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

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

        .auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 20px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            border: none; 
            transition: 0.3s;
            font-family: var(--font-primary);
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }

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

        .hero-banner { 
            width: 100%; 
            aspect-ratio: 2/1; 
            border-radius: 15px; 
            overflow: hidden; 
            cursor: pointer; 
            margin-bottom: 20px;
            box-shadow: 0 0 20px var(--overlay);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
            border: 2px solid var(--primary);
            border-radius: 15px;
            text-align: center;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { color: var(--primary); font-size: 1.2rem; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 3rem; 
            font-weight: 700; 
            color: #FFFFFF; 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-section { text-align: center; margin-bottom: 40px; padding: 0 10px; }
        .intro-section h1 { color: var(--text-heading); font-size: 2.5rem; margin-bottom: 15px; line-height: 1.2; }
        .intro-section p { color: var(--text-muted); font-size: 1.1rem; max-width: 800px; margin: 0 auto; }

        .section-title { 
            color: var(--text-heading); 
            text-align: center; 
            margin-bottom: 25px; 
            font-size: 2rem; 
            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; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--surface); 
            border-radius: 12px; 
            text-decoration: none; 
            overflow: hidden; 
            transition: 0.3s; 
            border: 1px solid var(--border-subtle);
        }
        .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 h3 { 
            padding: 12px; 
            color: var(--text-heading); 
            text-align: center; 
            font-size: 1rem; 
            font-weight: 500;
        }

        .article-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .article-card { 
            background: var(--surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-subtle); 
            text-decoration: none; 
            transition: 0.3s; 
        }
        .article-card:hover { background: #252525; }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.1rem; }
        .article-content p { color: var(--text-muted); font-size: 0.9rem; }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 10px; 
            margin-bottom: 40px; 
        }
        .payment-item { 
            background: var(--surface); 
            padding: 15px; 
            text-align: center; 
            border-radius: 10px; 
            border: 1px solid var(--border-subtle); 
            color: var(--text-heading);
            font-weight: 500;
        }
        .payment-item i { display: block; margin-bottom: 8px; color: var(--primary); font-size: 1.5rem; }

        .win-table { 
            width: 100%; 
            background: var(--surface); 
            border-radius: 12px; 
            border-collapse: collapse; 
            margin-bottom: 40px; 
            overflow: hidden; 
        }
        .win-table th, .win-table td { 
            padding: 12px; 
            text-align: center; 
            border-bottom: 1px solid var(--border-divider); 
        }
        .win-table th { background: var(--border-strong); color: var(--text-inverse); }
        .win-table td { color: var(--text-body); }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-item { 
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a); 
            padding: 20px; 
            text-align: center; 
            border-radius: 10px; 
            border-left: 4px solid var(--primary); 
            font-weight: 700; 
            color: var(--text-heading);
            font-size: 1.2rem;
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .comment-card { 
            background: var(--surface); 
            padding: 20px; 
            border-radius: 12px; 
            border: 1px solid var(--border-subtle); 
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 2rem; color: var(--primary); }
        .comment-header div h4 { color: var(--text-heading); }
        .comment-stars { color: var(--highlight); margin-bottom: 10px; }
        .comment-body { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 10px; }
        .comment-date { font-size: 0.8rem; color: var(--text-muted); }

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

        .safety-section { 
            text-align: center; 
            background: var(--surface); 
            padding: 30px; 
            border-radius: 15px; 
            border-top: 3px solid var(--primary);
            margin-bottom: 40px;
        }
        .safety-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .safety-icons i { font-size: 2.5rem; color: var(--primary); }
        .safety-text { color: var(--text-muted); font-size: 0.9rem; max-width: 700px; margin: 0 auto 15px; }
        .safety-link { color: var(--primary); text-decoration: none; font-weight: 600; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--surface); 
            border-top: 2px solid var(--border-strong); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            z-index: 1001; 
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-muted); 
            text-align: center; 
            font-size: 0.75rem; 
            display: flex; 
            flex-direction: column; 
            gap: 5px;
        }
        .nav-item i { font-size: 1.2rem; color: var(--primary); }

        footer { 
            background: #000; 
            padding: 40px 20px 100px; 
            text-align: center; 
            border-top: 1px solid var(--border-divider); 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
            gap: 10px; 
            margin-bottom: 30px; 
            max-width: 1000px; 
            margin-left: auto; 
            margin-right: auto; 
        }
        .footer-links a { 
            color: var(--text-muted); 
            text-decoration: none; 
            font-size: 0.8rem; 
        }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 0.8rem; }

        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .intro-section h1 { font-size: 1.8rem; }
            .jackpot-amount { font-size: 2rem; }
        }