:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --highlight: #FFB800;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-contrast: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFD600;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-medium: #4D4D4D;
            --border-bold: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-bold);
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; }
        .logo-area strong { font-size: 16px; font-weight: normal; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background-color: var(--bg-contrast); color: white; border: 1px solid var(--primary); }
        .btn-register { background-color: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; transform: translateY(-2px); }
        main { padding-bottom: 80px; }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .hero-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-container {
            background: linear-gradient(45deg, #000, #262626);
            padding: 20px;
            text-align: center;
            border: 2px solid var(--primary);
            margin: 20px auto;
            width: 90%;
            border-radius: 15px;
            box-shadow: 0 0 20px var(--highlight);
        }
        .jackpot-label { color: var(--secondary); font-size: 14px; margin-bottom: 5px; }
        .jackpot-amount {
            font-family: 'Oswald', sans-serif;
            font-size: 32px;
            color: var(--primary);
            font-weight: bold;
        }
        .intro-section {
            text-align: center;
            padding: 40px 20px;
            background-color: var(--bg-surface);
        }
        .intro-section h1 { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); max-width: 800px; margin: 0 auto; }
        .section-title {
            text-align: center;
            padding: 30px 0 15px;
            font-size: 24px;
            color: var(--primary);
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--accent);
            margin: 10px auto;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 0 15px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
            display: block;
        }
        .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: 10px;
            font-size: 14px;
            text-align: center;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 20px 15px;
        }
        .article-card {
            display: flex;
            gap: 15px;
            background: var(--bg-surface);
            padding: 10px;
            border-radius: 10px;
            text-decoration: none;
            color: inherit;
            border-left: 4px solid var(--primary);
        }
        .article-card img {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            object-fit: cover;
        }
        .article-content h3 { font-size: 16px; margin-bottom: 5px; color: var(--primary); }
        .article-content p { font-size: 13px; color: var(--text-secondary); }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
        }
        .payment-item {
            background: var(--bg-contrast);
            padding: 15px 5px;
            border-radius: 8px;
            text-align: center;
            font-size: 12px;
            color: var(--secondary);
            border: 1px solid var(--border-subtle);
        }
        .payment-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 8px;
            color: var(--primary);
        }
        .win-table {
            width: 90%;
            margin: 20px auto;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            font-size: 13px;
        }
        .win-table th { background: var(--bg-contrast); color: var(--primary); padding: 12px; text-align: left; }
        .win-table td { padding: 10px; border-bottom: 1px solid var(--border-subtle); }
        .win-amount { color: var(--success); font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 20px 15px;
        }
        .provider-item {
            padding: 20px;
            text-align: center;
            font-weight: bold;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--bg-contrast), var(--bg-main));
            border: 1px solid var(--border-medium);
            color: var(--primary);
        }
        .comment-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            padding: 20px 15px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            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; }
        .stars { color: var(--warning); font-size: 12px; margin-bottom: 5px; }
        .comment-body { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 11px; color: var(--text-muted); text-align: right; }
        .faq-section { padding: 40px 20px; background: var(--bg-surface); }
        .faq-item { margin-bottom: 20px; background: var(--bg-contrast); padding: 15px; border-radius: 10px; }
        .faq-item h3 { font-size: 16px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .safety-footer {
            text-align: center;
            padding: 30px 20px;
            background: #000;
            border-top: 1px solid var(--border-subtle);
        }
        .safety-footer i { font-size: 30px; color: var(--success); margin-bottom: 10px; }
        .safety-footer p { font-size: 13px; color: var(--text-muted); margin: 10px 0; }
        .safety-footer a { color: var(--primary); text-decoration: none; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            border-top: 2px solid var(--primary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 11px;
            font-family: 'Poppins', sans-serif;
            flex: 1;
        }
        .nav-item i { display: block; font-size: 20px; margin-bottom: 4px; }
        footer {
            background: #000;
            padding: 30px 15px 100px;
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 20px;
            text-align: left;
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; }
        .footer-links a:hover { color: var(--primary); }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .provider-grid { grid-template-columns: repeat(4, 1fr); }
            .comment-grid { grid-template-columns: repeat(3, 1fr); }
            .footer-links { grid-template-columns: repeat(5, 1fr); }
        }