:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B22222;
            --accent: #00FF00;
            --dark-accent: #C0C0C0;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-variant: #2D2D2D;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --border-default: #333333;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', 'Segoe UI', Arial, sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-default);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-area { display: flex; align-items: center; gap: 10px; }
        .logo-area img { width: 25px; height: 25px; object-fit: cover; }
        .logo-area strong { font-size: 16px; font-weight: normal; }
        .auth-btns { display: flex; gap: 10px; }
        .btn-auth {
            padding: 8px 16px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            transition: 0.3s;
        }
        .btn-login { background: var(--bg-variant); color: white; }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }
        main { max-width: 1000px; margin: 0 auto; padding: 20px 15px 100px; }
        .banner-container { margin-bottom: 25px; }
        .banner-container img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            border-radius: 15px;
            cursor: pointer;
            display: block;
        }
        .promo-card {
            background: linear-gradient(135deg, var(--secondary), #800000);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 30px;
            border: 2px solid var(--primary);
        }
        .promo-card h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; margin-bottom: 15px; }
        .promo-card p { color: var(--text-primary); margin-bottom: 20px; font-size: 16px; }
        .btn-promo {
            background: var(--primary);
            color: #000;
            padding: 15px 30px;
            font-size: 18px;
            font-weight: bold;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            text-transform: uppercase;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        }
        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            margin: 30px 0 20px;
            border-left: 4px solid var(--primary);
            padding-left: 15px;
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            transition: transform 0.2s;
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 {
            color: white;
            font-size: 14px;
            padding: 10px;
            text-align: center;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-card {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 20px;
            border: 1px solid var(--primary);
            margin-bottom: 30px;
            text-align: center;
        }
        .intro-card h1 { font-family: 'Montserrat', sans-serif; color: var(--primary); margin-bottom: 15px; }
        .payment-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-variant);
            padding: 15px 5px;
            border-radius: 10px;
            text-align: center;
            font-size: 12px;
            border: 1px solid var(--border-default);
        }
        .payment-item i { display: block; font-size: 20px; color: var(--primary); margin-bottom: 8px; }
        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .guide-item {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border-bottom: 3px solid var(--primary);
        }
        .guide-item h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
        .guide-item p { font-size: 13px; color: var(--text-secondary); }
        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-default);
        }
        .comment-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-name { font-weight: bold; }
        .comment-stars { color: var(--primary); font-size: 12px; }
        .comment-date { font-size: 11px; color: var(--text-disabled); float: right; }
        .comment-text { font-size: 14px; color: var(--text-secondary); margin-top: 10px; }
        .winner-list {
            background: var(--bg-surface);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .winner-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 20px;
            border-bottom: 1px solid var(--border-default);
            font-size: 13px;
        }
        .winner-item:last-child { border: none; }
        .win-amount { color: var(--accent); font-weight: bold; }
        .provider-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-item {
            background: var(--bg-variant);
            padding: 15px;
            text-align: center;
            border-radius: 8px;
            font-weight: bold;
            border: 1px solid var(--border-default);
        }
        .faq-container { margin-bottom: 30px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            background: var(--bg-variant);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-default);
        }
        .faq-answer { padding: 15px; font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--bg-surface);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 2px solid var(--primary);
            z-index: 2000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            text-align: center;
            font-size: 11px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .nav-item i { font-size: 20px; color: var(--text-primary); }
        footer {
            background: var(--bg-surface);
            padding: 40px 20px 120px;
            border-top: 1px solid var(--border-default);
        }
        .footer-contact {
            text-align: center;
            margin-bottom: 30px;
        }
        .contact-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 10px;
        }
        .contact-links a { color: var(--primary); text-decoration: none; font-size: 14px; }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 30px;
            text-align: center;
        }
        .footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
        .footer-security {
            text-align: center;
            border-top: 1px solid var(--border-default);
            padding-top: 20px;
            color: var(--text-disabled);
            font-size: 12px;
        }
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        @media (max-width: 600px) {
            .payment-grid { grid-template-columns: repeat(2, 1fr); }
        }