:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --main-bg: #0F0F0F;
            --surface-bg: #1A1A1A;
            --overlay-bg: #2C2C2C;
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --on-primary: #000000;
            --link: #FFD700;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-def: #333333;
            --border-high: #FFD700;
            --border-sub: #252525;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Montserrat', sans-serif;
        }

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

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

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

        .auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            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(--on-primary); }
        .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; 
            overflow: hidden; 
            border-radius: 15px; 
            cursor: pointer; 
            margin-bottom: 20px;
            border: 2px solid var(--border-def);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
        .hero-banner:hover img { scale: 1.05; }

        .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;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-size: 24px; font-weight: bold; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 48px; 
            font-weight: 800; 
            color: #FFF; 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-section { text-align: center; margin-bottom: 40px; padding: 0 10px; }
        .intro-section h1 { 
            font-size: 32px; 
            color: var(--text-heading); 
            margin-bottom: 15px; 
            font-family: var(--font-accent); 
        }
        .intro-section p { color: var(--text-muted); max-width: 800px; margin: 0 auto; }

        .section-title { 
            font-size: 24px; 
            color: var(--primary); 
            margin-bottom: 20px; 
            text-align: center; 
            font-family: var(--font-accent);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--surface-bg); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-sub); 
            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: 16px; 
            color: var(--text-heading); 
            text-align: center; 
            font-weight: 500; 
        }

        .article-list { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .article-card { 
            background: var(--surface-bg); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-sub); 
            text-decoration: none; 
            color: inherit; 
            transition: 0.3s; 
        }
        .article-card:hover { border-color: var(--primary); background: var(--overlay-bg); }
        .article-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-content h3 { color: var(--primary); font-size: 18px; margin-bottom: 8px; }
        .article-content p { font-size: 14px; color: var(--text-muted); }

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

        .win-records { 
            background: var(--surface-bg); 
            border-radius: 15px; 
            padding: 20px; 
            margin-bottom: 40px; 
            border: 1px solid var(--border-sub); 
        }
        .win-table { width: 100%; border-collapse: collapse; text-align: left; font-size: 14px; }
        .win-table th { color: var(--primary); padding: 12px; border-bottom: 2px solid var(--border-sub); }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-sub); }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center; 
            font-weight: bold; 
            font-size: 18px; 
            color: #FFF; 
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .comment-card { 
            background: var(--surface-bg); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-sub); 
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header h4 { color: var(--text-heading); }
        .stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: #666; }

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

        .security-section { 
            background: var(--overlay-bg); 
            border-radius: 15px; 
            padding: 30px; 
            text-align: center; 
            margin-bottom: 40px; 
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon { color: var(--primary); font-size: 40px; }
        .security-text { color: var(--text-muted); font-size: 14px; line-height: 1.8; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--surface-bg); 
            border-top: 2px solid var(--primary); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            z-index: 1001; 
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-muted); 
            text-align: center; 
            font-size: 12px; 
            display: flex; 
            flex-direction: column; 
            gap: 5px; 
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: #000; 
            padding: 40px 20px 100px; 
            text-align: center; 
            border-top: 1px solid var(--border-sub); 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
        }
        .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: 14px; }

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