:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F1C40F;
            --brand-secondary: #059669;
            --brand-secondary-hover: #10B981;
            --brand-accent: #FF4500;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-elevated: #262626;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --border-default: #333333;
            --border-gold: #D4AF37;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--brand-primary); }
        h1 { font-size: 1.5rem; margin-bottom: 1rem; }
        h2 { font-size: 1.25rem; margin: 1.5rem 0 1rem; text-transform: uppercase; border-left: 4px solid var(--brand-primary); padding-left: 10px; }
        h3 { font-size: 0.9rem; margin-top: 0.5rem; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        header {
            height: 60px;
            background: var(--bg-surface);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-default);
        }
        .header-left { display: flex; align-items: center; gap: 10px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: 400; color: var(--text-primary); }
        .header-right { display: flex; gap: 8px; }
        .btn {
            padding: 8px 16px;
            border-radius: 6px;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: 0.3s;
        }
        .btn-login { background: transparent; color: var(--brand-primary); border: 1px solid var(--brand-primary); }
        .btn-register { background: var(--brand-primary); color: #000; }
        .container { padding: 0 12px; max-width: 1200px; margin: 0 auto; }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            cursor: pointer;
            display: block;
        }
        .jackpot-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
            margin: 15px 0;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--border-gold);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }
        .jackpot-title { color: var(--brand-primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-size: 2rem; font-family: 'Montserrat', sans-serif; font-weight: 900; color: #FFF; text-shadow: 0 0 10px var(--brand-primary); }
        .intro-card { background: var(--bg-surface); padding: 20px; border-radius: 12px; margin-bottom: 20px; border: 1px solid var(--border-default); }
        .intro-card p { color: var(--text-secondary); font-size: 0.875rem; }
        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 10px; overflow: hidden; border: 1px solid var(--border-default); transition: 0.3s; }
        .game-card:active { transform: scale(0.97); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-info { padding: 10px; text-align: center; }
        .payment-section { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
        .payment-item { background: var(--bg-elevated); padding: 15px 5px; border-radius: 8px; text-align: center; border: 1px solid var(--border-default); }
        .payment-item i { font-size: 1.2rem; color: var(--brand-primary); margin-bottom: 5px; display: block; }
        .payment-item span { font-size: 0.65rem; color: var(--text-secondary); font-weight: 600; }
        .guidelines { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
        .guide-item { background: var(--bg-surface); padding: 15px; border-radius: 10px; border-left: 3px solid var(--brand-secondary); }
        .guide-item h3 { color: var(--brand-secondary); margin-bottom: 8px; font-size: 1rem; }
        .guide-item p { font-size: 0.85rem; color: var(--text-secondary); }
        .marquee-box { background: var(--bg-surface); padding: 15px; border-radius: 10px; overflow: hidden; margin: 20px 0; }
        .marquee-content { display: flex; flex-direction: column; gap: 10px; animation: scrollUp 20s linear infinite; }
        @keyframes scrollUp { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
        .winner-row { display: flex; justify-content: space-between; font-size: 0.75rem; border-bottom: 1px solid var(--border-default); padding-bottom: 5px; }
        .winner-name { color: var(--brand-primary); }
        .winner-amount { color: var(--brand-secondary); font-weight: 700; }
        .providers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 20px 0; }
        .provider-block { padding: 15px; border-radius: 8px; text-align: center; font-weight: 700; font-size: 0.9rem; }
        .p-gold { background: rgba(212, 175, 55, 0.15); color: #D4AF37; border: 1px solid #D4AF37; }
        .p-green { background: rgba(5, 150, 105, 0.15); color: #059669; border: 1px solid #059669; }
        .reviews { display: flex; flex-direction: column; gap: 15px; margin: 25px 0; }
        .review-card { background: var(--bg-elevated); padding: 15px; border-radius: 12px; border: 1px solid var(--border-default); }
        .review-user { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-user i { font-size: 1.5rem; color: var(--text-secondary); }
        .stars { color: #FFCC00; font-size: 0.8rem; margin-bottom: 8px; }
        .faq-section { margin: 30px 0; }
        .faq-item { background: var(--bg-surface); border-radius: 8px; margin-bottom: 10px; border: 1px solid var(--border-default); }
        .faq-question { padding: 15px; font-weight: 600; font-size: 0.95rem; cursor: pointer; color: var(--brand-primary); }
        .faq-answer { padding: 0 15px 15px; font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
        .security-section { background: #111; padding: 20px; border-radius: 12px; text-align: center; margin-bottom: 20px; }
        .security-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-top: 15px; }
        .security-badge { font-size: 0.7rem; color: var(--text-muted); }
        .security-badge i { font-size: 1.5rem; display: block; margin-bottom: 5px; color: var(--brand-secondary); }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid var(--border-default);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-secondary); font-size: 0.7rem; }
        .nav-item i { font-size: 1.2rem; }
        .nav-item.active { color: var(--brand-primary); }
        footer { background: var(--bg-surface); padding: 30px 15px 100px; text-align: center; border-top: 1px solid var(--border-default); }
        .footer-contacts { display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-bottom: 25px; }
        .footer-contacts a { font-size: 0.85rem; color: var(--brand-primary); border: 1px solid var(--brand-primary); padding: 5px 12px; border-radius: 20px; }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 25px; text-align: left; }
        .footer-links a { font-size: 0.75rem; color: var(--text-secondary); padding: 5px 0; display: block; }
        .footer-bottom { font-size: 0.7rem; color: var(--text-secondary); border-top: 1px solid var(--border-default); pt: 20px; }