:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --secondary: #E31837;
            --accent: #00C8FF;
            --bg-main: #0A0A0B;
            --bg-surface: #161618;
            --bg-elevated: #222224;
            --text-primary: #FFFFFF;
            --text-secondary: #A1A1AA;
            --border-subtle: #27272A;
            --border-default: #3F3F46;
            --success: #22C55E;
            --win: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Montserrat', 'Inter', sans-serif;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }
        h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--primary); }
        h1 { font-size: 32px; text-align: center; margin: 20px 0; }
        h2 { font-size: 24px; margin: 25px 0 15px; border-left: 4px solid var(--primary); padding-left: 10px; }
        h3 { font-size: 18px; margin: 10px 0; color: var(--text-primary); }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; display: block; }

        header {
            background: var(--bg-surface);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border-subtle);
        }
        .logo-box { display: flex; align-items: center; gap: 8px; }
        .logo-box img { width: 25px; height: 25px; }
        .logo-box strong { font-size: 16px; font-weight: 400; color: var(--primary); }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }
        .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        .btn-register { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--bg-main); }

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

        .jackpot-container {
            background: var(--bg-elevated);
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--primary-dark);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
        }
        .jackpot-label { color: var(--primary-light); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 36px; font-weight: 900; color: var(--win); text-shadow: 0 0 10px rgba(255, 215, 0, 0.5); }

        .section-padding { padding: 0 15px; }
        .intro-text { color: var(--text-secondary); text-align: center; margin-bottom: 30px; font-size: 16px; }

        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 25px; }
        .game-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; border: 1px solid var(--border-subtle); transition: transform 0.2s; }
        .game-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
        .game-card-info { padding: 10px; text-align: center; }

        .article-grid { display: flex; flex-direction: column; gap: 15px; }
        .article-card { background: var(--bg-surface); border-radius: 12px; overflow: hidden; display: flex; gap: 12px; padding: 10px; border: 1px solid var(--border-subtle); }
        .article-card img { width: 100px; height: 100px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
        .article-content h3 { font-size: 14px; margin: 0 0 5px 0; color: var(--primary-light); }
        .article-content p { font-size: 12px; color: var(--text-secondary); line-height: 1.4; }

        .payment-grid { 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; font-size: 10px; color: var(--text-secondary); }
        .payment-item i { font-size: 20px; color: var(--primary); display: block; margin-bottom: 5px; }

        .winning-ticker { background: var(--bg-surface); border-radius: 12px; padding: 15px; margin-bottom: 25px; border: 1px solid var(--border-subtle); }
        .winning-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border-subtle); font-size: 13px; }
        .winning-row:last-child { border-bottom: none; }
        .win-name { color: var(--primary-light); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
        .provider-box { background: var(--bg-elevated); padding: 20px; border-radius: 10px; text-align: center; font-weight: bold; color: var(--primary); border: 1px solid var(--border-subtle); }

        .review-card { background: var(--bg-surface); padding: 15px; border-radius: 12px; margin-bottom: 15px; border-left: 3px solid var(--primary); }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-header i { font-size: 24px; color: var(--text-secondary); }
        .stars { color: var(--win); font-size: 12px; }
        .review-text { font-size: 13px; color: var(--text-secondary); font-style: italic; }

        .faq-item { background: var(--bg-surface); margin-bottom: 10px; border-radius: 8px; border: 1px solid var(--border-subtle); }
        .faq-question { padding: 15px; font-weight: 600; color: var(--primary-light); cursor: pointer; display: flex; justify-content: space-between; }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; }

        .security-section { text-align: center; padding: 30px 15px; background: var(--bg-elevated); border-radius: 20px; margin: 20px 15px; }
        .security-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 15px; font-size: 24px; color: var(--primary); }
        .responsible-text { font-size: 12px; color: var(--text-secondary); max-width: 300px; margin: 0 auto; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid var(--border-subtle);
            z-index: 1001;
        }
        .nav-item { text-align: center; color: var(--text-secondary); font-size: 11px; flex: 1; }
        .nav-item i { font-size: 20px; display: block; margin-bottom: 3px; color: var(--primary); }

        footer { background: var(--bg-main); padding: 40px 15px 100px; border-top: 1px solid var(--border-subtle); }
        .footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; margin-bottom: 30px; }
        .footer-links a { color: var(--text-secondary); font-size: 14px; }
        .copyright { text-align: center; color: var(--text-disabled); font-size: 12px; border-top: 1px solid var(--border-subtle); padding-top: 20px; }