:root {
            --color-primary: #FFD700;
            --color-secondary: #B8860B;
            --color-accent: #FF4500;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --semantic-success: #28A745;
            --semantic-warning: #FFC107;
            --semantic-error: #DC3545;
            --semantic-info: #17A2B8;
            --border-subtle: #333333;
            --border-strong: #444444;
            --border-highlight: #FFD700;
            --font-sans: 'Inter', 'Roboto', 'Helvetica Neue', sans-serif;
            --font-heading: 'Poppins', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { background-color: var(--bg-main); color: var(--text-primary); font-family: var(--font-sans); line-height: var(--line-height-normal); overflow-x: hidden; }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        header { background-color: var(--bg-surface); border-bottom: 2px solid var(--color-primary); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
        .nav-top { display: flex; justify-content: space-between; align-items: center; }
        .logo-section { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .logo-section img { width: 25px; height: 25px; }
        .logo-section strong { font-size: 16px; font-weight: 400; color: var(--color-primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn { padding: 8px 20px; border-radius: 5px; cursor: pointer; border: none; font-weight: 600; transition: 0.3s; font-family: var(--font-sans); }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--color-primary); }
        .btn-login:hover { background: var(--color-primary); color: var(--text-inverse); }
        .btn-register { background: var(--color-primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--color-secondary); }
        .hero-banner { width: 100%; aspect-ratio: 2/1; cursor: pointer; overflow: hidden; }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section { background: linear-gradient(45deg, #000, #1a1a1a); padding: 30px 0; text-align: center; border-bottom: 1px solid var(--border-subtle); }
        .jackpot-container { font-family: var(--font-mono); font-size: 32px; color: var(--color-primary); font-weight: bold; }
        .jackpot-label { font-size: 14px; color: var(--text-secondary); text-transform: uppercase; margin-bottom: 10px; }
        .intro-section { padding: 60px 0; text-align: center; }
        .intro-section h1 { font-size: 32px; color: var(--color-primary); margin-bottom: 20px; }
        .intro-section p { font-size: 18px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .section-title { font-size: 24px; text-align: center; margin-bottom: 40px; color: var(--text-primary); position: relative; padding-bottom: 10px; }
        .section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--color-primary); }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 50px; }
        .game-card { background: var(--bg-surface); border-radius: 15px; overflow: hidden; text-decoration: none; transition: 0.3s; border: 1px solid var(--border-subtle); }
        .game-card:hover { transform: translateY(-5px); border-color: var(--color-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 15px; font-size: 16px; text-align: center; color: var(--text-primary); }
        .article-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; margin-bottom: 60px; }
        .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(--color-secondary); }
        .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(--color-primary); }
        .article-content p { font-size: 14px; color: var(--text-secondary); }
        .payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-bottom: 60px; }
        .payment-item { background: var(--bg-surface); padding: 20px; text-align: center; border-radius: 10px; border: 1px solid var(--border-subtle); }
        .payment-item i { font-size: 24px; color: var(--color-primary); margin-bottom: 10px; display: block; }
        .payment-item span { font-size: 14px; color: var(--text-secondary); }
        .winner-list { background: var(--bg-surface); border-radius: 15px; padding: 20px; margin-bottom: 60px; border: 1px solid var(--border-subtle); }
        .winner-item { display: grid; grid-template-columns: 1fr 2fr 1fr 1fr; padding: 12px 0; border-bottom: 1px solid var(--border-subtle); font-size: 14px; }
        .winner-item:last-child { border-bottom: none; }
        .winner-header { font-weight: bold; color: var(--color-primary); }
        .provider-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 60px; }
        .provider-card { background: linear-gradient(135deg, var(--bg-surface), #2a2a2a); padding: 30px; text-align: center; border-radius: 15px; border: 1px solid var(--border-strong); font-weight: bold; font-size: 20px; }
        .comment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 60px; }
        .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: 15px; margin-bottom: 15px; }
        .comment-header i { font-size: 30px; color: var(--color-primary); }
        .comment-header .user-name { font-weight: 600; }
        .comment-rating { color: #FFD700; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); }
        .faq-section { padding: 60px 0; }
        .faq-item { background: var(--bg-surface); margin-bottom: 15px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; transition: 0.3s; }
        .faq-question:hover { background: #252525; }
        .faq-answer { padding: 0 20px 20px 20px; font-size: 14px; color: var(--text-secondary); display: none; }
        .security-section { background: var(--bg-surface); padding: 40px 0; text-align: center; border-top: 1px solid var(--border-subtle); }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icons i { font-size: 40px; color: var(--color-primary); }
        .security-text { font-size: 14px; color: var(--text-secondary); max-width: 700px; margin: 0 auto 20px; }
        .navigator { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--bg-surface); display: flex; justify-content: space-around; padding: 12px 0; border-top: 2px solid var(--color-primary); z-index: 1000; }
        .nav-item { text-decoration: none; color: var(--text-secondary); display: flex; flex-direction: column; align-items: center; font-size: 12px; gap: 5px; }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--color-primary); }
        footer { background: #050505; padding: 40px 0 100px; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; text-align: center; }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; transition: 0.3s; }
        .footer-links a:hover { color: var(--color-primary); }
        .footer-bottom { text-align: center; font-size: 13px; color: var(--text-muted); border-top: 1px solid var(--border-subtle); padding-top: 20px; }
        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .winner-item { grid-template-columns: 1fr 1fr; gap: 10px; }
        }