:root {
            --bg-dark: #1a1d24;
            --bg-card: #252a34;
            --accent-gold: #FFD700;
            --text-white: #ffffff;
            --text-gray: #a0aec0;
            --cta-gradient: linear-gradient(135deg, #FF6B35 0%, #FF2E63 100%);
            --gold-gradient: linear-gradient(135deg, #FFD700 0%, #B8860B 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: var(--bg-dark);
            color: var(--text-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            height: 60px;
            background: rgba(26, 29, 36, 0.95);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            text-decoration: none;
            transition: transform 0.2s;
        }
        .btn:active {
            transform: scale(0.95);
        }
        .btn-login {
            background: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
        }
        .btn-register {
            background: var(--cta-gradient);
            color: white;
        }
        .banner {
            width: 100%;
            display: block;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .jackpot-container {
            margin: 20px 15px;
            background: var(--bg-card);
            padding: 20px;
            border-radius: 15px;
            text-align: center;
            border: 1px solid var(--accent-gold);
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
        }
        .jackpot-title {
            color: var(--accent-gold);
            font-size: 14px;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            background: var(--gold-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: monospace;
        }
        .intro-card {
            margin: 20px 15px;
            padding: 20px;
            background: var(--bg-card);
            border-radius: 15px;
        }
        h1 {
            font-size: 20px;
            color: var(--accent-gold);
            margin-bottom: 10px;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-gray);
        }
        .section-title {
            margin: 25px 15px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-title h2 {
            font-size: 18px;
            color: var(--text-white);
        }
        .section-title i {
            color: var(--accent-gold);
        }
        .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;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
        }
        .game-info {
            padding: 8px;
        }
        .game-info h3 {
            font-size: 13px;
            color: var(--text-white);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            margin-bottom: 2px;
        }
        .game-info span {
            font-size: 11px;
            color: var(--text-gray);
        }
        .payments-section {
            margin: 30px 15px;
            text-align: center;
        }
        .icon-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-top: 15px;
            opacity: 0.7;
        }
        .icon-grid i {
            font-size: 24px;
            color: var(--text-gray);
        }
        .guidelines {
            margin: 30px 15px;
            display: grid;
            gap: 15px;
        }
        .guide-item {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 12px;
        }
        .guide-item h3 {
            font-size: 16px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .marquee {
            overflow: hidden;
            white-space: nowrap;
            background: rgba(0,0,0,0.3);
            padding: 10px 0;
            margin: 20px 0;
        }
        .marquee-content {
            display: inline-block;
            animation: marquee 40s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .win-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 20px;
            border-right: 1px solid var(--bg-card);
        }
        .win-item span {
            color: var(--accent-gold);
            font-weight: bold;
        }
        .providers-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 20px 15px;
            background: rgba(0,0,0,0.2);
            color: var(--text-gray);
            font-size: 14px;
            font-weight: 600;
        }
        .comment-grid {
            padding: 0 15px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .comment-card {
            background: var(--bg-card);
            padding: 15px;
            border-radius: 12px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }
        .user-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            color: var(--accent-gold);
            font-size: 12px;
        }
        .faq-section {
            margin: 30px 15px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: var(--bg-card);
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            color: var(--accent-gold);
            cursor: pointer;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        .faq-answer {
            padding: 15px;
            font-size: 14px;
            color: var(--text-gray);
        }
        .security-section {
            padding: 30px 15px;
            text-align: center;
            background: rgba(0,0,0,0.2);
        }
        .security-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            font-size: 30px;
            color: var(--accent-gold);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--bg-dark);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid rgba(255, 215, 0, 0.3);
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .nav-item i {
            font-size: 18px;
            margin-bottom: 4px;
        }
        footer {
            padding: 40px 15px 100px;
            background: #11141a;
            color: var(--text-gray);
        }
        .footer-contacts {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 30px;
        }
        .footer-contacts a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            text-align: center;
            font-size: 12px;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 20px;
        }