:root {
            --primary-bg: #080808;
            --secondary-bg: #121212;
            --tertiary-bg: #1E1E1E;
            --overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #FFD700;
            --brand-variant: #B8860B;
            --brand-secondary: #C0C0C0;
            --brand-accent: #FF4500;
            --success: #2ECC71;
            --error: #E74C3C;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-highlight: #FFD700;
            --border-subtle: #2A2A2A;
            --border-default: #3F3F3F;
            --border-active: #FFD700;
            --font-main: 'Montserrat', 'Inter', -apple-system, sans-serif;
            --font-heading: 'Oswald', 'Roboto Condensed', sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-primary);
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 {
            font-family: var(--font-heading);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background-color: var(--secondary-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--brand-primary);
        }
        .logo-box {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-box img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .logo-box strong {
            font-size: 16px;
            font-weight: 500;
            color: var(--brand-primary);
        }
        .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--brand-primary);
            border: 1px solid var(--brand-primary);
        }
        .btn-register {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-variant));
            color: #000;
        }
        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            background: radial-gradient(circle, #2a0000 0%, #080808 100%);
            padding: 20px;
            text-align: center;
            border-top: 1px solid var(--border-subtle);
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-label {
            color: var(--brand-secondary);
            font-size: 14px;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            color: var(--brand-primary);
            font-size: 32px;
            font-family: var(--font-heading);
            font-weight: 800;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        .intro-section {
            padding: 30px 20px;
            text-align: center;
            background-color: var(--secondary-bg);
        }
        .intro-section h1 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--brand-primary);
        }
        .intro-section p {
            color: var(--text-secondary);
            font-size: 14px;
        }
        .section-title {
            padding: 20px 15px 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title h2 {
            font-size: 20px;
            color: var(--text-primary);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }
        .game-card {
            background: var(--tertiary-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: transform 0.2s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
            text-align: center;
        }
        .game-info h3 {
            font-size: 14px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .article-list {
            padding: 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .article-card {
            display: flex;
            gap: 12px;
            background: var(--secondary-bg);
            padding: 10px;
            border-radius: 10px;
        }
        .article-card img {
            width: 100px;
            height: 70px;
            object-fit: cover;
            border-radius: 6px;
        }
        .article-content h3 {
            font-size: 14px;
            color: var(--brand-primary);
            margin-bottom: 4px;
        }
        .article-content p {
            font-size: 12px;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .payment-section {
            background: var(--tertiary-bg);
            margin: 20px 15px;
            padding: 20px;
            border-radius: 15px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            text-align: center;
        }
        .payment-item i {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 5px;
        }
        .payment-item span {
            font-size: 10px;
            display: block;
            color: var(--text-secondary);
        }
        .winners-section {
            padding: 15px;
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            background: rgba(255, 255, 255, 0.03);
            margin-bottom: 8px;
            padding: 10px;
            border-radius: 8px;
            font-size: 13px;
        }
        .winner-user { color: var(--brand-secondary); }
        .winner-game { color: var(--text-primary); font-weight: bold; }
        .winner-amount { color: var(--success); font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }
        .provider-block {
            background: linear-gradient(45deg, #1e1e1e, #2a2a2a);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            border: 1px solid var(--border-subtle);
            font-weight: bold;
            color: var(--brand-secondary);
        }
        .review-section {
            padding: 15px;
        }
        .review-card {
            background: var(--secondary-bg);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px;
            border-left: 4px solid var(--brand-primary);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .review-header i { font-size: 20px; color: var(--text-secondary); }
        .review-rating { color: var(--brand-primary); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }
        .faq-section {
            padding: 20px 15px;
        }
        .faq-item {
            margin-bottom: 20px;
            background: var(--tertiary-bg);
            padding: 15px;
            border-radius: 10px;
        }
        .faq-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--brand-primary); }
        .faq-item p { font-size: 14px; color: var(--text-secondary); }
        .security-section {
            padding: 30px 15px;
            text-align: center;
            background: #000;
            border-top: 1px solid var(--border-subtle);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        .security-icons i { font-size: 30px; color: var(--brand-primary); }
        .security-text { font-size: 12px; color: var(--text-muted); max-width: 300px; margin: 0 auto; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--brand-primary);
            z-index: 1001;
        }
        .nav-item {
            text-align: center;
            color: var(--text-secondary);
            font-size: 11px;
        }
        .nav-item i { font-size: 20px; margin-bottom: 3px; display: block; }
        .nav-item.active { color: var(--brand-primary); }
        footer {
            padding: 40px 15px 100px;
            background: #050505;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-links a { font-size: 13px; color: var(--text-secondary); }
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-subtle);
            padding-top: 20px;
        }
        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .hero-banner { aspect-ratio: 3/1; }
        }