:root {
            --bg-primary: #0D1117;
            --bg-secondary: #161B22;
            --bg-tertiary: #21262D;
            --overlay: rgba(0, 0, 0, 0.85);
            --brand-primary: #D4AF37;
            --brand-hover: #F9C80E;
            --brand-secondary: #B8860B;
            --brand-accent: #FFD700;
            --success: #00C853;
            --error: #FF3D00;
            --warning: #FFAB00;
            --info: #2979FF;
            --win: #4CAF50;
            --text-primary: #FFFFFF;
            --text-secondary: #B0B3B8;
            --text-muted: #65676B;
            --text-gold: #F9C80E;
            --border-subtle: #30363D;
            --border-default: #484F58;
            --border-active: #D4AF37;
            --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            --font-display: 'Montserrat', 'Inter', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-main);
            line-height: 1.5;
            overflow-x: hidden;
            padding-bottom: 70px;
        }

        header {
            background-color: var(--bg-secondary);
            border-bottom: 1px solid var(--border-subtle);
            padding: 10px 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--text-primary);
        }

        .header-logo img {
            width: 25px;
            height: 25px;
        }

        .header-logo strong {
            font-size: 16px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .header-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn-login {
            background: transparent;
            color: var(--text-primary);
            border: 1px solid var(--border-default);
        }

        .btn-register {
            background: var(--brand-primary);
            color: var(--bg-primary);
        }

        .btn-register:hover {
            background: var(--brand-hover);
        }

        main {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            overflow: hidden;
        }

        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-section {
            background: linear-gradient(145deg, var(--bg-secondary), var(--bg-tertiary));
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--brand-primary);
            text-align: center;
        }

        .jackpot-label {
            color: var(--brand-accent);
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        #jackpot-amount {
            font-family: var(--font-display);
            font-size: 32px;
            font-weight: 800;
            color: var(--text-gold);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        .intro-section {
            padding: 20px 15px;
            text-align: center;
        }

        h1 {
            font-size: 24px;
            color: var(--brand-primary);
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .intro-section p {
            color: var(--text-secondary);
            font-size: 16px;
        }

        .section-title {
            padding: 20px 15px 10px;
            font-size: 20px;
            color: var(--brand-accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 15px;
        }

        .game-card {
            background: var(--bg-secondary);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            text-decoration: none;
            transition: transform 0.2s;
        }

        .game-card img {
            width: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            display: block;
        }

        .game-card h3 {
            padding: 10px;
            font-size: 14px;
            color: var(--text-primary);
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-list {
            padding: 15px;
        }

        .article-card {
            display: flex;
            gap: 15px;
            background: var(--bg-tertiary);
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 12px;
            text-decoration: none;
            border: 1px solid var(--border-subtle);
        }

        .article-card img {
            width: 80px;
            height: 80px;
            border-radius: 6px;
            object-fit: cover;
        }

        .article-info h3 {
            font-size: 14px;
            color: var(--brand-primary);
            margin-bottom: 5px;
        }

        .article-info p {
            font-size: 12px;
            color: var(--text-secondary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 15px;
        }

        .payment-item {
            background: var(--bg-secondary);
            padding: 10px 5px;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border-subtle);
        }

        .payment-item i {
            font-size: 20px;
            color: var(--brand-primary);
            margin-bottom: 5px;
            display: block;
        }

        .payment-item span {
            font-size: 10px;
            color: var(--text-secondary);
        }

        .winners-section {
            background: var(--bg-secondary);
            margin: 15px;
            border-radius: 12px;
            overflow: hidden;
        }

        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-subtle);
            font-size: 13px;
        }

        .winner-name { color: var(--text-gold); font-weight: 600; }
        .winner-amount { color: var(--success); font-weight: 700; }
        .winner-game { color: var(--text-secondary); }

        .providers-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }

        .provider-block {
            background: var(--bg-tertiary);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            border-left: 3px solid var(--brand-primary);
            font-weight: 700;
            color: var(--text-primary);
        }

        .review-section {
            padding: 15px;
        }

        .review-card {
            background: var(--bg-secondary);
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
            border: 1px solid var(--border-subtle);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .review-header i {
            font-size: 24px;
            color: var(--brand-primary);
        }

        .star-rating { color: var(--brand-accent); font-size: 12px; }

        .faq-section {
            padding: 15px;
        }

        .faq-item {
            margin-bottom: 15px;
            background: var(--bg-secondary);
            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);
        }

        .security-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-tertiary);
            margin-top: 20px;
        }

        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 24px;
            color: var(--brand-primary);
        }

        .security-text {
            font-size: 12px;
            color: var(--text-muted);
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-secondary);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }

        .nav-item {
            text-decoration: none;
            text-align: center;
            color: var(--text-secondary);
            font-size: 11px;
        }

        .nav-item i {
            display: block;
            font-size: 18px;
            margin-bottom: 4px;
        }

        footer {
            padding: 30px 15px 100px;
            background: var(--bg-primary);
            border-top: 1px solid var(--border-subtle);
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
        }

        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: var(--text-muted);
            padding-top: 15px;
            border-top: 1px solid var(--border-subtle);
        }