:root {
            --primary: #D4AF37;
            --primary-light: #F9E076;
            --primary-dark: #996515;
            --secondary: #1A1A1A;
            --accent: #FF4D4D;
            --bg-main: #0D0D0D;
            --bg-surface: #1A1A1A;
            --bg-overlay: #262626;
            --bg-nav: #050505;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #737373;
            --border-default: #333333;
            --border-gold: rgba(212, 175, 55, 0.3);
            --font-main: 'Montserrat', sans-serif;
            --font-secondary: 'Inter', sans-serif;
        }

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

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

        header {
            background-color: var(--bg-nav);
            height: 60px;
            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-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }

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

        .header-logo strong {
            font-size: 16px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

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

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

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

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

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px;
        }

        .banner-container {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
            aspect-ratio: 2 / 1;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }

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

        .jackpot-box {
            background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
            border: 2px solid var(--primary);
            border-radius: 15px;
            padding: 20px;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }

        .jackpot-title {
            color: var(--primary);
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 800;
            margin-bottom: 10px;
        }

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

        .intro-card {
            background-color: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
            margin-bottom: 30px;
        }

        h1 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1.3;
        }

        h2 {
            font-size: 18px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            border-left: 4px solid var(--primary);
            padding-left: 10px;
        }

        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }

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

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

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

        .game-card h3 {
            font-size: 13px;
            padding: 10px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-section {
            background: var(--bg-overlay);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

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

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

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

        .guide-section {
            margin-bottom: 30px;
        }

        .guide-card {
            background: var(--bg-surface);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 15px;
            border-left: 3px solid var(--primary);
        }

        .guide-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
            color: var(--primary-light);
        }

        .guide-card p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        .lottery-section {
            background: var(--bg-overlay);
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 30px;
        }

        .lottery-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-default);
            font-size: 12px;
        }

        .lottery-user { color: var(--text-secondary); }
        .lottery-game { color: var(--text-primary); font-weight: 600; }
        .lottery-win { color: var(--primary); font-weight: 700; }

        .providers-section {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .provider-tag {
            flex: 1 1 calc(50% - 10px);
            background: var(--primary-dark);
            color: white;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            font-weight: 700;
            font-size: 14px;
        }

        .comment-section {
            margin-bottom: 30px;
        }

        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 15px;
            border: 1px solid var(--border-gold);
        }

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

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

        .comment-stars {
            color: #FFCC00;
            font-size: 12px;
        }

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

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

        .faq-question {
            padding: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            color: var(--primary-light);
            font-size: 14px;
        }

        .faq-answer {
            padding: 0 15px 15px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .security-section {
            text-align: center;
            padding: 20px;
            background: #111;
            border-radius: 15px;
            margin-bottom: 30px;
        }

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

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

        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 5px;
        }

        .nav-item i {
            font-size: 20px;
        }

        .nav-item:nth-child(3) {
            background: var(--primary);
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            justify-content: center;
            margin-top: -25px;
            box-shadow: 0 0 15px var(--primary);
        }

        footer {
            background: var(--bg-nav);
            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: 30px;
        }

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

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

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

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

        @media (min-width: 768px) {
            .game-grid { grid-template-columns: repeat(4, 1fr); }
            .payment-grid { grid-template-columns: repeat(8, 1fr); }
            .providers-section { flex-wrap: nowrap; }
        }