:root {
            --bg-primary: #0F0F0F;
            --bg-secondary: #1A1A1A;
            --bg-accent: #252525;
            --bg-surface: #1E1E1E;
            --brand-primary: #FFD700;
            --brand-secondary: #C0C0C0;
            --brand-highlight: #FF0000;
            --gold-grad-start: #FFD700;
            --gold-grad-end: #B8860B;
            --success: #28A745;
            --warning: #FFC107;
            --error: #DC3545;
            --info: #17A2B8;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --border-primary: #333333;
            --border-secondary: #444444;
            --border-highlight: #FFD700;
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
            --font-accent: 'Roboto Slab', serif;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-secondary);
            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: var(--text-primary);
        }
        .header-logo img { width: 25px; height: 25px; }
        .header-logo strong { font-size: 16px; font-weight: normal; }
        .header-auth { display: flex; gap: 10px; }
        .btn-auth {
            padding: 8px 16px;
            border-radius: 8px;
            cursor: pointer;
            font-family: var(--font-secondary);
            font-weight: 600;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: var(--bg-accent); color: var(--text-primary); border: 1px solid var(--border-primary); }
        .btn-register { background: linear-gradient(to right, var(--gold-grad-start), var(--gold-grad-end)); color: var(--text-inverse); }
        
        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-container {
            background: var(--bg-surface);
            border: 2px solid var(--border-highlight);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        .jackpot-label { font-family: var(--font-secondary); color: var(--brand-secondary); text-transform: uppercase; letter-spacing: 2px; font-size: 14px; }
        .jackpot-amount {
            font-family: var(--font-accent);
            font-size: 48px;
            font-weight: 700;
            color: var(--brand-primary);
            margin: 10px 0;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }

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

        .section-title {
            font-family: var(--font-secondary);
            font-size: 24px;
            margin-bottom: 20px;
            border-left: 4px solid var(--brand-primary);
            padding-left: 15px;
            color: var(--text-primary);
        }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text-primary);
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid var(--border-primary);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--brand-primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 16px; 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(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-primary);
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
        }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 15px; }
        .article-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--brand-primary); }
        .article-card p { font-size: 14px; color: var(--text-secondary); }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-accent);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }
        .payment-item i { font-size: 20px; color: var(--brand-secondary); }

        .win-table-container {
            background: var(--bg-surface);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 40px;
            overflow-x: auto;
        }
        .win-table { width: 100%; border-collapse: collapse; text-align: left; }
        .win-table th { color: var(--text-muted); font-size: 14px; padding: 10px; border-bottom: 1px solid var(--border-primary); }
        .win-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-primary); font-size: 14px; }
        .win-amount { color: var(--success); font-weight: 600; }

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-box {
            background: linear-gradient(135deg, var(--bg-surface), var(--bg-accent));
            padding: 25px;
            border-radius: 12px;
            text-align: center;
            font-weight: 600;
            font-size: 18px;
            border: 1px solid var(--border-primary);
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-primary);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--brand-primary); }
        .comment-name { font-weight: 600; font-size: 16px; }
        .comment-stars { color: var(--warning); font-size: 12px; 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-container {
            display: grid;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--bg-surface);
            border: 1px solid var(--border-primary);
            border-radius: 8px;
            padding: 15px;
        }
        .faq-item h3 { font-size: 16px; color: var(--brand-primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }

        .safety-section {
            background: var(--bg-accent);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px solid var(--border-primary);
        }
        .safety-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .safety-icon-box { display: flex; flex-direction: column; align-items: center; gap: 10px; }
        .safety-icon-box i { font-size: 30px; color: var(--brand-secondary); }
        .safety-text { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .safety-link { color: var(--brand-primary); text-decoration: none; font-weight: 600; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-secondary);
            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: 12px;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; }

        footer {
            background: var(--bg-secondary);
            padding: 40px 20px 100px;
            border-top: 1px solid var(--border-primary);
            text-align: center;
        }
        .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: 13px;
            transition: 0.3s;
        }
        .footer-links a:hover { color: var(--brand-primary); }
        .copyright { 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; }
        }