:root {
            --primary: #FFD700;
            --secondary: #C0C0C0;
            --accent: #FF4500;
            --highlight: #FFFACD;
            --bg-main: #0B0B0B;
            --bg-surface: #1A1A1A;
            --bg-elevated: #2D2D2D;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFB300;
            --error: #FF5252;
            --info: #2979FF;
            --border-light: #333333;
            --border-medium: #4D4D4D;
            --border-strong: #FFD700;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            background-color: var(--bg-main);
            color: var(--text-primary);
            font-family: 'Roboto', sans-serif;
            line-height: 1.5;
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        
        header {
            background: var(--bg-surface);
            border-bottom: 2px solid var(--border-strong);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 60px;
            display: flex;
            align-items: center;
        }
        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }
        .brand { display: flex; align-items: center; gap: 10px; }
        .brand img { width: 25px; height: 25px; }
        .brand strong { font-size: 16px; font-weight: 400; }
        .auth-buttons { display: flex; gap: 10px; }
        .btn {
            padding: 8px 16px;
            border-radius: 5px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: 'Roboto', sans-serif;
        }
        .btn-login { background: var(--bg-elevated); color: var(--text-primary); border: 1px solid var(--border-medium); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn:hover { opacity: 0.9; transform: translateY(-2px); }

        .main-banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            overflow: hidden;
        }
        .main-banner img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: linear-gradient(135deg, #B8860B, #FFD700);
            padding: 20px;
            text-align: center;
            color: var(--text-inverse);
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
        }
        .jackpot-title { font-size: 18px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 36px; 
            font-weight: 900; 
            animation: countUp 2s ease-out;
        }

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

        .section-title {
            font-size: 24px;
            text-align: center;
            margin: 40px 0 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
        }

        .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;
            border: 1px solid var(--border-light);
            transition: 0.3s;
        }
        .game-card:hover { border-color: var(--primary); transform: scale(1.02); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { 
            padding: 12px; 
            font-size: 14px; 
            text-align: center; 
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 10px;
            margin: 30px 0;
        }
        .payment-item {
            background: var(--bg-elevated);
            padding: 15px;
            text-align: center;
            border-radius: 10px;
            font-size: 12px;
            color: var(--text-secondary);
            border: 1px solid var(--border-light);
        }
        .payment-item i { display: block; font-size: 24px; color: var(--primary); margin-bottom: 8px; }

        .guide-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .guide-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            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-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-surface);
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .win-table th, .win-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid var(--border-light);
            font-size: 14px;
        }
        .win-table th { background: var(--bg-elevated); color: var(--primary); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 40px;
        }
        .provider-box {
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
        }
        .provider-box:nth-child(odd) { background: var(--primary); color: var(--text-inverse); }
        .provider-box:nth-child(even) { background: var(--accent); color: var(--text-primary); }

        .comment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .comment-card {
            background: var(--bg-surface);
            padding: 20px;
            border-radius: 15px;
            border: 1px solid var(--border-light);
        }
        .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: 600; }
        .comment-stars { color: #f1c40f; font-size: 12px; margin-bottom: 10px; }
        .comment-text { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

        .faq-section { margin-bottom: 40px; }
        .faq-item {
            background: var(--bg-surface);
            margin-bottom: 10px;
            border-radius: 10px;
            border: 1px solid var(--border-light);
        }
        .faq-question {
            padding: 15px;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary);
            display: flex;
            justify-content: space-between;
        }
        .faq-answer { padding: 0 15px 15px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-footer {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 60px;
            border: 1px dashed var(--border-medium);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icon { color: var(--secondary); font-size: 14px; display: flex; align-items: center; gap: 8px; }
        .security-icon i { font-size: 24px; color: var(--success); }
        .security-footer p { color: var(--text-secondary); font-size: 13px; margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: underline; }

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

        footer {
            background: var(--bg-surface);
            padding: 40px 0 100px;
            border-top: 1px solid var(--border-light);
            text-align: center;
        }
        .footer-contact { margin-bottom: 30px; }
        .footer-contact a { 
            display: inline-block; 
            margin: 0 10px; 
            color: var(--text-secondary); 
            font-size: 14px; 
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            max-width: 600px;
            margin: 0 auto 30px;
            text-align: left;
        }
        .footer-links a { 
            font-size: 13px; 
            color: var(--text-secondary); 
            padding: 5px 0;
        }
        .footer-copy { color: var(--text-disabled); font-size: 12px; }

        @keyframes countUp {
            from { opacity: 0; transform: scale(0.9); }
            to { opacity: 1; transform: scale(1); }
        }
        @media (max-width: 768px) {
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
        }