:root {
            --primary: #FFD700;
            --primary-dark: #B8860B;
            --secondary: #E60012;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2C2C2C;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Roboto', 'Arial', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background-color: var(--bg-main); 
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            padding-bottom: 80px; 
        }

        header {
            background-color: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            color: var(--text-primary);
        }
        header .logo-area img {
            width: 25px;
            height: 25px;
            object-fit: cover;
        }
        header .logo-area strong {
            font-size: 16px;
            font-weight: normal;
        }
        header .auth-buttons {
            display: flex;
            gap: 10px;
        }
        header .btn {
            padding: 8px 16px;
            border-radius: 5px;
            cursor: pointer;
            font-family: var(--font-heading);
            font-weight: 600;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            font-size: 14px;
        }
        header .btn-login {
            background: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }
        header .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        header .btn-register {
            background: var(--secondary);
            color: white;
        }
        header .btn-register:hover { background: var(--accent); }

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

        .hero-banner {
            width: 100%;
            aspect-ratio: 2/1;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            margin-bottom: 20px;
            border: 2px solid var(--border-medium);
        }
        .hero-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .jackpot-container {
            background: linear-gradient(45deg, #B8860B, #FFD700);
            color: var(--text-inverse);
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .jackpot-title { font-family: var(--font-heading); font-weight: 700; font-size: 18px; text-transform: uppercase; }
        .jackpot-amount {
            font-family: 'Courier New', monospace;
            font-size: 32px;
            font-weight: bold;
            display: block;
            margin: 10px 0;
            animation: pulse 1s infinite;
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
        }
        .intro-card h1 {
            font-family: var(--font-heading);
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        h2 {
            font-family: var(--font-heading);
            font-size: 22px;
            color: var(--primary);
            margin: 30px 0 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h2::before { content: ''; width: 4px; height: 20px; background: var(--secondary); display: inline-block; }

        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 30px;
        }
        .game-card {
            background: var(--bg-surface);
            border-radius: 12px;
            text-decoration: none;
            color: white;
            overflow: hidden;
            transition: transform 0.3s, border-color 0.3s;
            border: 1px solid var(--border-light);
        }
        .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 {
            padding: 12px;
            font-size: 15px;
            text-align: center;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 10px;
            margin-bottom: 30px;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .payment-item i { color: var(--primary); font-size: 20px; }

        .guides-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }
        .guide-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 18px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .win-records {
            background: var(--bg-surface);
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 30px;
        }
        .win-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
        }
        .win-table th {
            background: var(--bg-elevated);
            color: var(--primary);
            padding: 12px;
            text-align: left;
        }
        .win-table td {
            padding: 12px;
            border-bottom: 1px solid var(--border-light);
            color: var(--text-secondary);
        }
        .win-amount { color: var(--success); font-weight: bold; }

        .providers-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 30px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            font-weight: bold;
            font-family: var(--font-heading);
            background: var(--bg-elevated);
            border: 1px solid var(--border-medium);
        }
        .provider-box:nth-child(odd) { color: var(--primary); }
        .provider-box:nth-child(even) { color: var(--accent); }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        .review-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 12px;
            border: 1px solid var(--border-light);
        }
        .review-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
        }
        .review-header i { font-size: 30px; color: var(--primary); }
        .review-header .user-info { display: flex; flex-direction: column; }
        .review-header .user-name { font-weight: bold; }
        .review-stars { color: var(--warning); font-size: 14px; margin-bottom: 10px; }
        .review-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .review-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section {
            margin-bottom: 30px;
        }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 8px;
            padding: 15px;
            border: 1px solid var(--border-light);
        }
        .faq-item h3 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 10px;
            display: flex;
            gap: 10px;
        }
        .faq-item p { color: var(--text-secondary); font-size: 14px; }

        .security-footer {
            background: var(--bg-surface);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            border: 1px dashed var(--primary);
        }
        .security-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }
        .badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
        }
        .badge i { color: var(--success); }
        .security-text { font-size: 13px; color: var(--text-secondary); }
        .security-text a { color: var(--primary); text-decoration: none; }

        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-surface);
            border-top: 2px solid var(--border-strong);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

        footer {
            background-color: var(--bg-surface);
            padding: 40px 20px;
            border-top: 1px solid var(--border-light);
            text-align: center;
            color: var(--text-secondary);
            font-size: 14px;
        }
        footer .contact-area {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        footer .contact-area a {
            color: var(--text-primary);
            text-decoration: none;
            transition: 0.3s;
        }
        footer .contact-area a:hover { color: var(--primary); }
        footer .links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 600px;
            margin: 0 auto 30px;
            text-align: left;
        }
        footer .links-grid a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
        }
        footer .links-grid a:hover { color: var(--primary); }
        footer .copyright {
            border-top: 1px solid var(--border-light);
            padding-top: 20px;
            font-size: 12px;
        }

        @media (max-width: 768px) {
            .links-grid { grid-template-columns: repeat(2, 1fr); }
            .providers-wall { grid-template-columns: 1fr; }
        }