:root {
            --primary: #D4AF37;
            --secondary: #8B0000;
            --accent: #FFD700;
            --luxury: #1C1C1C;
            --bg-main: #0A0A0A;
            --bg-sec: #161616;
            --bg-card: #1E1E1E;
            --text-main: #FFFFFF;
            --text-sec: #B0B0B0;
            --success: #28A745;
            --border: #333333;
            --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
            --font-body: 'Inter', 'Roboto', sans-serif;
        }

        body {
            background-color: var(--bg-main);
            color: var(--text-main);
            font-family: var(--font-body);
            margin: 0;
            padding-bottom: 70px;
            line-height: 1.5;
        }

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

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

        header img {
            width: 25px;
            height: 25px;
        }

        header strong {
            font-size: 16px;
            font-weight: 400;
            color: var(--primary);
            font-family: var(--font-heading);
        }

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

        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-size: 14px;
        }

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

        .btn-register {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: var(--luxury);
        }

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

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

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

        .jackpot-section {
            background: radial-gradient(circle, var(--secondary), var(--bg-main));
            padding: 20px;
            text-align: center;
            margin: 15px;
            border-radius: 15px;
            border: 1px solid var(--primary);
        }

        .jackpot-amount {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
            font-family: var(--font-heading);
        }

        .intro-card {
            background: var(--bg-card);
            margin: 15px;
            padding: 25px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
        }

        h1 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: var(--font-heading);
        }

        h2 {
            font-size: 24px;
            color: var(--primary);
            margin: 25px 15px 15px;
            font-family: var(--font-heading);
            text-transform: uppercase;
            border-bottom: 1px solid var(--border);
            padding-bottom: 5px;
        }

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

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

        .game-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

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

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

        .payment-section {
            background: var(--bg-sec);
            padding: 20px;
            margin: 15px;
            border-radius: 15px;
            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;
        }

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

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

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

        .guide-card h3 {
            color: var(--accent);
            margin-bottom: 8px;
            font-size: 18px;
        }

        .lottery-section {
            background: var(--bg-sec);
            margin: 15px;
            border-radius: 15px;
            padding: 10px;
            overflow: hidden;
        }

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

        .lottery-row span:nth-child(3) {
            color: var(--success);
            font-weight: bold;
        }

        .providers-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 15px;
        }

        .provider-block {
            background: linear-gradient(45deg, var(--secondary), var(--luxury));
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .comment-section {
            padding: 15px;
        }

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

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

        .user-info i {
            font-size: 30px;
            color: var(--primary);
        }

        .stars {
            color: #FFD700;
            margin-bottom: 8px;
        }

        .faq-section {
            padding: 15px;
        }

        .faq-item {
            margin-bottom: 20px;
        }

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

        .security-section {
            background: #111;
            margin: 15px;
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--secondary);
        }

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

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--luxury);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 1000;
        }

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

        .nav-item i {
            display: block;
            font-size: 20px;
            margin-bottom: 3px;
            color: var(--primary);
        }

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

        .footer-contacts {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
        }

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

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

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

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

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