:root {
            --primary: #D4AF37;
            --primary-hover: #F1D592;
            --primary-active: #AA8A2E;
            --secondary: #E21B23;
            --accent: #00C4FF;
            --bg-default: #0F0F12;
            --bg-surface: #1A1B1F;
            --bg-elevated: #25262B;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --bg-gradient: linear-gradient(180deg, #1A1B1F 0%, #0F0F12 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #A0A0A5;
            --text-brand: #D4AF37;
            --border-default: #2D2E33;
            --border-strong: #3F4046;
            --gold-win: #FFD700;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            background-color: var(--bg-default);
            color: var(--text-primary);
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }

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

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

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

        .header-left strong {
            font-size: 16px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
        }

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

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

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

        .btn-register {
            background: var(--primary);
            color: #000;
        }

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

        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            display: block;
        }

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

        .jackpot-container {
            margin: 20px 15px;
            background: var(--bg-elevated);
            border: 1px solid var(--primary);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }

        .jackpot-title {
            color: var(--primary);
            font-family: 'Montserrat', sans-serif;
            font-weight: 900;
            font-size: 18px;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .jackpot-value {
            font-size: 32px;
            font-weight: 900;
            color: var(--gold-win);
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            font-family: 'Montserrat', sans-serif;
        }

        .platform-intro {
            padding: 20px 15px;
            background: var(--bg-gradient);
            border-radius: 16px;
            margin: 0 15px 20px;
            border: 1px solid var(--border-default);
        }

        .platform-intro h1 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.25;
        }

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

        .section-title {
            padding: 0 15px;
            margin-bottom: 15px;
            font-size: 20px;
            color: var(--text-primary);
            border-left: 4px solid var(--primary);
            margin-left: 15px;
            font-family: 'Montserrat', sans-serif;
        }

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

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

        .game-card:active {
            transform: scale(0.97);
        }

        .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;
        }

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

        .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 {
            display: block;
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .guide-section {
            padding: 0 15px 25px;
        }

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

        .guide-item h2 {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .lottery-marquee {
            background: var(--bg-surface);
            margin: 10px 15px 25px;
            padding: 10px;
            border-radius: 8px;
            height: 120px;
            overflow: hidden;
            border: 1px solid var(--border-strong);
        }

        .marquee-content {
            animation: marquee 20s linear infinite;
        }

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

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

        .lottery-item span:last-child {
            color: var(--gold-win);
            font-weight: bold;
        }

        .providers-wall {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            padding: 0 15px 25px;
        }

        .provider-tag {
            flex: 1 1 calc(50% - 10px);
            background: linear-gradient(90deg, #25262B, #1A1B1F);
            padding: 12px;
            text-align: center;
            border-radius: 6px;
            font-weight: bold;
            color: var(--primary);
            border-left: 3px solid var(--primary);
        }

        .comment-section {
            padding: 0 15px 25px;
        }

        .comment-card {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
        }

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

        .comment-user i {
            font-size: 24px;
            color: var(--text-secondary);
        }

        .stars {
            color: var(--gold-win);
            font-size: 12px;
        }

        .faq-section {
            padding: 0 15px 25px;
        }

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

        .faq-item h2 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 8px;
        }

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

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

        .age-limit {
            display: inline-block;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            border-radius: 50%;
            width: 35px;
            height: 35px;
            line-height: 31px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 65px;
            background: var(--bg-surface);
            border-top: 1px solid var(--border-default);
            display: flex;
            justify-content: space-around;
            align-items: center;
            z-index: 1000;
        }

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

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

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

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

        .footer-contacts {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 25px;
        }

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

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

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

        .copyright {
            text-align: center;
            color: var(--text-disabled);
            font-size: 12px;
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
        }

        @media (min-width: 800px) {
            .game-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }