:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: #2D2D2D;
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-on-primary: #000000;
            --success: #00C851;
            --warning: #FFBB00;
            --error: #FF4444;
            --info: #33B5E5;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #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(--bg-main); 
            color: var(--text-body); 
            font-family: var(--font-primary); 
            line-height: 1.5; 
            overflow-x: hidden; 
        }

        header {
            background: linear-gradient(to right, var(--grad-start), var(--grad-end));
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }

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

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

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

        .banner-wrap { 
            margin-top: 20px; 
            cursor: pointer; 
            border-radius: 15px; 
            overflow: hidden; 
            border: 2px solid var(--border-default); 
            transition: 0.3s; 
        }
        .banner-wrap:hover { border-color: var(--primary); }
        .banner-wrap img { width: 100%; aspect-ratio: 2/1; object-fit: cover; display: block; }

        .jackpot-section { 
            background: var(--bg-surface); 
            margin: 20px 0; 
            padding: 30px; 
            text-align: center; 
            border-radius: 15px; 
            border: 1px solid var(--border-highlight); 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-label { color: var(--primary); font-size: 18px; font-weight: 600; margin-bottom: 10px; }
        .jackpot-amount { 
            font-size: 48px; 
            font-weight: 700; 
            color: #FFF; 
            font-family: var(--font-accent); 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-section { text-align: center; padding: 40px 0; }
        .intro-section h1 { 
            font-size: 32px; 
            color: var(--text-heading); 
            margin-bottom: 20px; 
            line-height: 1.2; 
        }
        .intro-section p { font-size: 16px; color: var(--text-body); max-width: 800px; margin: 0 auto; }

        .section-title { 
            font-size: 24px; 
            color: var(--text-heading); 
            margin: 40px 0 20px; 
            border-left: 5px solid var(--primary); 
            padding-left: 15px; 
        }

        .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-default); 
            transition: 0.3s; 
        }
        .game-card:hover { transform: scale(1.03); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            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; }
        .article-card { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            border: 1px solid var(--border-default); 
            text-decoration: none; 
            color: inherit; 
            transition: 0.3s; 
        }
        .article-card:hover { border-color: var(--primary); background: var(--bg-overlay); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 20px; }
        .article-content h3 { color: var(--text-heading); font-size: 18px; margin-bottom: 10px; }
        .article-content p { font-size: 14px; color: var(--text-muted); }

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

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

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

        .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-default); 
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
        .comment-header i { font-size: 40px; color: var(--primary); }
        .comment-name { font-weight: 600; color: var(--text-heading); }
        .comment-stars { color: var(--primary); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-body); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }

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

        .safety-box { 
            background: var(--bg-overlay); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            margin-top: 40px; 
            border: 1px solid var(--border-default); 
        }
        .safety-box i { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .safety-box p { margin-bottom: 15px; font-size: 14px; }
        .safety-box a { color: var(--primary); text-decoration: none; font-weight: 600; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: rgba(26, 26, 26, 0.95); 
            backdrop-filter: blur(10px); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            border-top: 1px solid var(--border-highlight); 
            z-index: 2000; 
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-muted); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 12px; 
            gap: 5px; 
            flex: 1; 
        }
        .nav-item i { font-size: 20px; }

        footer { 
            background: var(--grad-end); 
            padding: 40px 20px; 
            text-align: center; 
            border-top: 1px solid var(--border-default); 
            font-size: 13px; 
        }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 900px; 
            margin: 0 auto 30px; 
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); }

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