:root {
            --brand-primary: #D4AF37;
            --brand-primary-hover: #F9E498;
            --brand-primary-active: #AA8A2E;
            --brand-secondary: #1E212A;
            --brand-accent: #E63946;
            --bg-base: #0B0C10;
            --bg-surface: #161B22;
            --bg-elevated: #21262D;
            --text-primary: #FFFFFF;
            --text-secondary: #8B949E;
            --border-default: #30363D;
            --font-headings: 'Montserrat', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-numbers: 'Roboto Mono', monospace;
        }

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

        body {
            background-color: var(--bg-base);
            color: var(--text-primary);
            font-family: var(--font-body);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            padding-bottom: 70px;
        }

        h1, h2, h3 {
            font-family: var(--font-headings);
            font-weight: 700;
            line-height: 1.2;
            color: var(--brand-primary);
        }

        h1 { font-size: 28px; margin: 20px 0; text-align: center; }
        h2 { font-size: 24px; margin: 24px 0 16px; border-left: 4px solid var(--brand-primary); padding-left: 12px; }
        h3 { font-size: 18px; margin: 10px 0; }

        a { text-decoration: none; color: inherit; }

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

        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }

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

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--brand-primary);
        }

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

        .btn {
            padding: 8px 16px;
            border-radius: 4px;
            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: var(--brand-primary);
            color: var(--bg-base);
        }

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

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

        .jackpot-container {
            background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-surface) 100%);
            margin: 15px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid var(--brand-primary);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
        }

        .jackpot-title {
            font-size: 14px;
            color: var(--text-secondary);
            text-transform: uppercase;
            margin-bottom: 5px;
        }

        .jackpot-amount {
            font-family: var(--font-numbers);
            font-size: 32px;
            color: var(--brand-primary);
            font-weight: 900;
        }

        .intro-section {
            padding: 0 15px;
            margin-bottom: 30px;
        }

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

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .game-card {
            background: var(--bg-surface);
            border-radius: 8px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }

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

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

        .article-list {
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .article-card {
            display: flex;
            background: var(--bg-surface);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            border: 1px solid var(--border-default);
        }

        .article-card img {
            width: 100px;
            height: 100px;
            object-fit: cover;
        }

        .article-info {
            padding: 10px;
            flex: 1;
        }

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

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

        .payment-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            padding: 20px 15px;
            background: var(--bg-surface);
            margin: 20px 0;
        }

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

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

        .lottery-ticker {
            background: var(--bg-surface);
            margin: 20px 15px;
            border-radius: 8px;
            height: 200px;
            overflow: hidden;
            border: 1px solid var(--border-default);
            position: relative;
        }

        .lottery-list {
            animation: scrollUp 20s linear infinite;
        }

        @keyframes scrollUp {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }

        .lottery-item {
            padding: 10px 15px;
            border-bottom: 1px solid var(--border-default);
            display: flex;
            justify-content: space-between;
            font-size: 12px;
        }

        .winner-name { color: var(--brand-primary); font-weight: bold; }
        .win-amount { color: var(--semantic-success, #2ECC71); font-family: var(--font-numbers); }

        .providers-section {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .provider-block {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--brand-primary);
            border: 1px solid var(--border-default);
        }

        .review-grid {
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .review-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border: 1px solid var(--border-default);
        }

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

        .review-avatar {
            width: 40px;
            height: 40px;
            background: var(--bg-elevated);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-primary);
        }

        .star-rating { color: #F1C40F; font-size: 12px; }

        .faq-section {
            padding: 0 15px;
            margin-bottom: 30px;
        }

        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
        }

        .faq-item h3 {
            color: var(--brand-primary);
            font-size: 15px;
            margin-bottom: 8px;
        }

        .faq-item p {
            color: var(--text-secondary);
            font-size: 13px;
        }

        .responsible-section {
            padding: 20px 15px;
            text-align: center;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
        }

        .responsible-section i {
            font-size: 40px;
            color: var(--brand-primary);
            margin-bottom: 15px;
        }

        .age-badge {
            display: inline-block;
            border: 2px solid var(--brand-accent);
            color: var(--brand-accent);
            padding: 2px 8px;
            border-radius: 50%;
            font-weight: bold;
            margin: 10px 0;
        }

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

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

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

        .nav-item.active { color: var(--brand-primary); }

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

        .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-disabled);
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }