:root {
            --primary: #FFD700;
            --secondary: #B8860B;
            --accent: #FF0000;
            --main-bg: #0B0B0B;
            --surface-bg: #1A1A1A;
            --overlay: rgba(0, 0, 0, 0.85);
            --text-heading: #FFFFFF;
            --text-body: #E0E0E0;
            --text-muted: #A0A0A0;
            --text-inverse: #000000;
            --success: #28A745;
            --error: #DC3545;
            --warning: #FFC107;
            --info: #17A2B8;
            --border-subtle: #333333;
            --border-strong: #444444;
            --border-active: #FFD700;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--main-bg);
            color: var(--text-body);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-heading);
            font-weight: 700;
        }
        h1 { font-size: 32px; line-height: 1.2; margin-bottom: 1rem; }
        h2 { font-size: 24px; text-align: center; margin: 2rem 0 1.5rem; position: relative; padding-bottom: 10px; }
        h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--primary); }
        h3 { font-size: 18px; font-weight: 500; }

        header {
            background-color: var(--surface-bg);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .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(--text-heading); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            border: none;
            transition: 0.3s;
            font-family: 'Roboto', sans-serif;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.8; }

        main { max-width: 1200px; margin: 0 auto; padding: 0 15px; }

        .main-banner {
            width: 100%;
            aspect-ratio: 2/1;
            overflow: hidden;
            border-radius: 15px;
            margin: 20px 0;
            cursor: pointer;
        }
        .main-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(145deg, #1a1a1a, #000);
            border: 2px solid var(--secondary);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(184, 134, 11, 0.3);
        }
        .jackpot-title { color: var(--primary); font-size: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            font-weight: 900;
            color: #fff;
            text-shadow: 0 0 10px var(--primary);
            display: block;
        }

        .intro-section {
            text-align: center;
            padding: 40px 0;
            max-width: 800px;
            margin: 0 auto;
        }
        .intro-section p { color: var(--text-muted); font-size: 16px; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--surface-bg);
            border-radius: 12px;
            text-decoration: none;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; text-align: center; color: var(--text-body); font-size: 16px; }

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

        .payment-licenses {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 40px;
        }
        .pl-item {
            background: var(--surface-bg);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .pl-item i { color: var(--primary); font-size: 20px; }

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

        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-item {
            background: linear-gradient(45deg, #1a1a1a, #333);
            padding: 25px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            border-left: 4px solid var(--primary);
            color: #fff;
        }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--surface-bg);
            padding: 20px;
            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: 30px; color: var(--primary); }
        .comment-header .user-info { display: flex; flex-direction: column; }
        .stars { color: var(--warning); font-size: 14px; margin-bottom: 10px; }
        .comment-body { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: #666; }

        .faq-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--surface-bg);
            border: 1px solid var(--border-subtle);
            border-radius: 10px;
            padding: 20px;
        }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

        .security-footer {
            background: var(--surface-bg);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 40px;
            border: 1px solid var(--border-subtle);
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; font-size: 24px; color: var(--primary); }
        .security-text { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .security-text a { color: var(--primary); text-decoration: none; }

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

        footer {
            background: #050505;
            padding: 40px 20px 100px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
        }
        .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(--primary); }
        .copyright { color: #666; font-size: 13px; }

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