: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-inverse: #000000;
            --success: #28A745;
            --danger: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-subtle: #262626;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Poppins', sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }

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

        header { 
            background-color: var(--bg-surface); 
            border-bottom: 2px solid var(--border-highlight); 
            padding: 10px 20px; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        .header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .header-logo img { width: 25px; height: 25px; }
        .header-logo strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .header-auth { display: flex; gap: 10px; }
        .btn-auth { 
            padding: 8px 20px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-family: var(--font-secondary); 
            font-weight: 600; 
            transition: 0.3s; 
            border: none; 
            text-decoration: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-auth: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; 
            border: 2px solid var(--border-subtle); 
            margin-bottom: 20px; 
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container { 
            background: linear-gradient(45deg, #1a1a1a, #333); 
            border: 2px solid var(--primary); 
            border-radius: 15px; 
            padding: 20px; 
            text-align: center; 
            margin-bottom: 30px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2); 
        }
        .jackpot-label { font-family: var(--font-accent); color: var(--secondary); font-size: 18px; text-transform: uppercase; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 42px; 
            color: var(--primary); 
            font-weight: bold; 
            margin: 10px 0; 
            text-shadow: 0 0 10px var(--primary); 
        }

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

        .section-title { 
            font-family: var(--font-accent); 
            font-size: 24px; 
            color: var(--primary); 
            margin: 30px 0 20px; 
            border-left: 5px solid var(--accent); 
            padding-left: 15px; 
            text-transform: uppercase; 
        }

        .game-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            border: 1px solid var(--border-default); 
            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; 
            display: block; 
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            color: var(--text-primary); 
            text-align: center; 
            font-family: var(--font-secondary); 
        }

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

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            border: 1px solid var(--border-subtle); 
            padding: 15px; 
            border-radius: 10px; 
            text-align: center; 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 10px; 
            color: var(--text-secondary); 
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

        .win-table { 
            width: 100%; 
            border-collapse: collapse; 
            background: var(--bg-surface); 
            border-radius: 15px; 
            overflow: hidden; 
            margin-bottom: 30px; 
            font-size: 14px; 
        }
        .win-table th { background: var(--border-highlight); color: var(--text-inverse); padding: 12px; text-align: left; }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); }
        .win-table tr:last-child td { border: none; }
        .win-amount { color: var(--primary); font-weight: bold; }

        .provider-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
        }
        .provider-item { 
            background: linear-gradient(135deg, #222, #111); 
            padding: 20px; 
            border-radius: 12px; 
            text-align: center; 
            font-weight: bold; 
            border: 1px solid var(--border-subtle); 
            font-family: var(--font-accent); 
            color: var(--primary); 
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 30px; 
        }
        .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: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 24px; color: var(--primary); }
        .comment-header span { font-weight: 600; font-size: 14px; }
        .stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; font-style: italic; }
        .comment-date { font-size: 11px; color: var(--text-muted); text-align: right; }

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

        .safety-box { 
            background: #111; 
            border: 2px dashed var(--border-default); 
            border-radius: 15px; 
            padding: 25px; 
            text-align: center; 
            margin-bottom: 40px; 
        }
        .safety-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .safety-icons i { font-size: 30px; color: var(--success); }
        .safety-text { font-size: 13px; color: var(--text-muted); max-width: 700px; margin: 0 auto 15px; }
        .safety-link { color: var(--primary); text-decoration: none; font-weight: bold; font-size: 13px; }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            width: 100%; 
            background: var(--bg-surface); 
            border-top: 2px solid var(--border-highlight); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            z-index: 2000; 
        }
        .nav-item { 
            text-decoration: none; 
            color: var(--text-secondary); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 11px; 
            gap: 5px; 
        }
        .nav-item i { font-size: 20px; color: var(--primary); }

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

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