:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFD700;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1A1A1A;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #808080;
            --text-inverse: #000000;
            --success: #00C853;
            --error: #D32F2F;
            --warning: #FFB300;
            --info: #2196F3;
            --border-default: #333333;
            --border-focus: #FFD700;
            --border-subtle: #262626;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-main);
            color: var(--text-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; }
        header {
            background: var(--bg-surface);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
        }
        .logo-area { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        .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-auth {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: 0.3s;
            border: none;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--accent); color: white; }
        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .main-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 30px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .main-banner img { width: 100%; height: 100%; object-fit: cover; }
        .jackpot-section {
            background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            border: 2px solid var(--primary);
            margin-bottom: 30px;
        }
        .jackpot-label { color: var(--secondary); font-size: 18px; margin-bottom: 10px; }
        .jackpot-amount {
            font-size: 48px;
            font-weight: bold;
            color: var(--primary);
            text-shadow: 0 0 10px var(--primary);
            font-family: 'Roboto', sans-serif;
        }
        .intro-section { text-align: center; margin-bottom: 40px; }
        .intro-section h1 { font-size: 32px; color: var(--primary); margin-bottom: 15px; }
        .intro-section p { color: var(--text-secondary); font-size: 16px; max-width: 800px; margin: 0 auto; }
        .section-title { text-align: center; font-size: 24px; color: var(--primary); margin-bottom: 25px; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 10px auto; }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
            border: 1px solid var(--border-default);
            transition: transform 0.3s, border-color 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-info { padding: 15px; text-align: center; }
        .game-info h3 { font-size: 16px; color: var(--text-primary); }
        .article-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .article-card {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            text-decoration: none;
            color: inherit;
            transition: 0.3s;
        }
        .article-card:hover { background: #252525; border-color: var(--primary); }
        .article-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
        .article-content { padding: 20px; }
        .article-content h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .article-content p { font-size: 14px; color: var(--text-secondary); }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .payment-item {
            background: var(--bg-surface);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            color: var(--text-secondary);
            font-weight: 500;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }
        .winner-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .winner-table th, .winner-table td {
            padding: 12px;
            text-align: center;
            border-bottom: 1px solid var(--border-subtle);
        }
        .winner-table th { background: var(--primary); color: var(--text-inverse); font-weight: 600; }
        .winner-table tr:last-child td { border-bottom: none; }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-box {
            background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
            padding: 20px;
            text-align: center;
            border-radius: 12px;
            font-weight: bold;
            font-size: 18px;
            border-left: 4px solid var(--primary);
        }
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .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: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header span { font-weight: 600; }
        .stars { color: var(--primary); font-size: 14px; 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 { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 15px;
            border-radius: 10px;
            border: 1px solid var(--border-subtle);
            padding: 20px;
        }
        .faq-item h3 { font-size: 18px; color: var(--primary); margin-bottom: 10px; }
        .faq-item p { font-size: 15px; color: var(--text-secondary); }
        .security-section {
            text-align: center;
            padding: 30px;
            background: var(--bg-surface);
            border-radius: 15px;
            border: 1px solid var(--border-default);
            margin-bottom: 40px;
        }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
        .security-icons i { font-size: 30px; color: var(--success); }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-text a { color: var(--primary); text-decoration: none; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            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: #000;
            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: 1000px;
            margin: 0 auto 30px;
            font-size: 13px;
        }
        .footer-links a { color: var(--text-muted); text-decoration: none; }
        .footer-links a:hover { color: var(--primary); }
        .copyright { color: var(--text-muted); font-size: 14px; }
        @media (max-width: 768px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 32px; }
        }