:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-highlight: #FFD700;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-strong: #4D4D4D;
            --border-active: #FFD700;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Poppins', sans-serif;
        }

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

        header {
            background-color: var(--bg-surface);
            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-strong);
        }

        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-family: var(--font-primary); font-size: 16px; font-weight: normal; color: var(--text-primary); }

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

        main { padding-bottom: 80px; }

        .banner-container { 
            width: 100%; 
            cursor: pointer; 
            aspect-ratio: 2/1; 
            overflow: hidden; 
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section { 
            background: linear-gradient(45deg, #1a1a1a, #333); 
            padding: 30px 20px; 
            text-align: center; 
            border-bottom: 2px solid var(--primary);
        }
        .jackpot-title { font-family: var(--font-accent); color: var(--text-secondary); font-size: 14px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-primary); 
            font-size: 32px; 
            font-weight: 700; 
            color: var(--primary); 
            text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        }

        .section-container { padding: 40px 20px; max-width: 1200px; margin: 0 auto; }
        .intro-box { text-align: center; margin-bottom: 50px; }
        .intro-box h1 { font-family: var(--font-primary); font-size: 28px; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
        .intro-box p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }

        .grid-games { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-subtle); 
            transition: 0.3s; 
            display: flex; 
            flex-direction: column;
        }
        .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; 
            font-size: 14px; 
            text-align: center; 
            color: var(--text-primary); 
            font-family: var(--font-accent);
        }

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

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

        .win-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            margin: 30px 0;
        }
        .win-table th, .win-table td { padding: 12px; text-align: left; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .win-table th { background: var(--border-strong); color: var(--primary); }
        .win-table td:nth-child(3) { color: var(--success); font-weight: 600; }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin: 40px 0; 
        }
        .provider-item { 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center; 
            font-weight: 700; 
            font-family: var(--font-primary); 
            background: linear-gradient(135deg, #2a2a2a, #111); 
            border: 1px solid var(--border-strong);
        }

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

        .faq-section { margin-top: 50px; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-subtle); 
        }
        .faq-question { padding: 15px 20px; cursor: pointer; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 20px 15px 20px; font-size: 14px; color: var(--text-secondary); display: block; }

        .security-box { 
            background: #111; 
            padding: 30px 20px; 
            text-align: center; 
            border-top: 1px solid var(--border-strong); 
            margin-top: 40px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; }
        .security-icons i { font-size: 40px; color: var(--secondary); }
        .security-text { font-size: 13px; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
        .security-text a { color: var(--primary); }

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

        footer { background: #050505; padding: 40px 20px 100px 20px; border-top: 1px solid var(--border-strong); }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            margin-bottom: 30px; 
            text-align: center; 
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 12px; }
        .footer-copy { text-align: center; color: var(--text-muted); font-size: 12px; }

        h2 { 
            font-family: var(--font-primary); 
            font-size: 24px; 
            color: var(--primary); 
            text-align: center; 
            margin-bottom: 30px; 
            text-transform: uppercase; 
            letter-spacing: 1px; 
        }

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