:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --bg-card: #242424;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #4CAF50;
            --warning: #FF9800;
            --error: #F44336;
            --info: #2196F3;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #2A2A2A;
        }
        * { 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; }
        header { 
            background-color: var(--bg-surface); 
            padding: 10px 20px; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
            border-bottom: 2px solid var(--primary);
        }
        header .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
        header .brand img { width: 25px; height: 25px; object-fit: contain; }
        header .brand strong { font-size: 16px; font-weight: normal; }
        header .auth-buttons { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            transition: all 0.3s ease; 
            border: none; 
            text-decoration: none; 
            font-family: 'Roboto', sans-serif;
        }
        .btn-login { background: transparent; color: var(--primary); border: 1px solid var(--primary); }
        .btn-login:hover { background: var(--primary); color: var(--text-inverse); }
        .btn-register { background: var(--primary); color: var(--text-inverse); }
        .btn-register:hover { background: var(--primary-hover); }

        main { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .banner-container { width: 100%; margin-bottom: 30px; cursor: pointer; }
        .banner-container img { 
            width: 100%; 
            aspect-ratio: 2/1; 
            object-fit: cover; 
            border-radius: 15px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }

        .jackpot-section { 
            background: linear-gradient(45deg, var(--bg-surface), var(--bg-card)); 
            padding: 20px; 
            text-align: center; 
            border-radius: 15px; 
            border: 1px solid var(--primary); 
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-size: 18px; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: 'JetBrains Mono', monospace; 
            font-size: 32px; 
            font-weight: bold; 
            color: #fff; 
            text-shadow: 0 0 10px var(--primary);
        }

        .intro-card { 
            background: var(--bg-card); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            margin-bottom: 40px; 
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 32px; color: var(--primary); margin-bottom: 15px; line-height: 1.2; }
        .intro-card p { font-size: 16px; color: var(--text-secondary); max-width: 800px; margin: 0 auto; }

        .section-title { 
            font-size: 24px; 
            margin-bottom: 20px; 
            text-align: center; 
            color: var(--primary); 
            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: 20px; 
            margin-bottom: 40px; 
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            text-decoration: none; 
            transition: transform 0.3s ease, box-shadow 0.3s ease; 
            border: 1px solid var(--border-default);
        }
        .game-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 15px; font-size: 16px; text-align: center; color: var(--text-primary); }

        .payment-licenses { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); 
            gap: 15px; 
            margin-bottom: 40px; 
            text-align: center;
        }
        .pay-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            border-radius: 10px; 
            border: 1px solid var(--border-muted); 
            color: var(--text-secondary);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }
        .pay-item i { font-size: 24px; color: var(--primary); }

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

        .providers-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
        }
        .provider-box { 
            background: linear-gradient(135deg, var(--bg-card), var(--bg-surface)); 
            padding: 20px; 
            border-radius: 10px; 
            text-align: center; 
            font-weight: bold; 
            border: 1px solid var(--border-muted);
            color: var(--primary);
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin-bottom: 40px; 
        }
        .comment-card { 
            background: var(--bg-card); 
            padding: 20px; 
            border-radius: 12px; 
            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; margin-bottom: 10px; }
        .comment-text { font-size: 14px; color: var(--text-secondary); 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: 8px; 
            border: 1px solid var(--border-default); 
            overflow: hidden;
        }
        .faq-question { 
            padding: 15px 20px; 
            cursor: pointer; 
            font-weight: 600; 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
            color: var(--primary);
        }
        .faq-answer { padding: 0 20px 15px 20px; color: var(--text-secondary); font-size: 14px; line-height: 1.6; }

        .security-section { 
            background: var(--bg-card); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px dashed var(--primary);
        }
        .security-badges { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
        .security-badge { display: flex; align-items: center; gap: 10px; color: var(--text-primary); font-weight: 500; }
        .security-badge i { color: var(--success); font-size: 20px; }
        .security-text { font-size: 14px; color: var(--text-secondary); margin-bottom: 15px; }
        .security-link { color: var(--primary); text-decoration: none; font-weight: bold; }

        .navigator { 
            position: fixed; 
            bottom: 20px; 
            left: 50%; 
            transform: translateX(-50%); 
            background: var(--bg-overlay); 
            backdrop-filter: blur(10px); 
            padding: 10px 20px; 
            border-radius: 50px; 
            display: flex; 
            gap: 20px; 
            z-index: 2000; 
            border: 1px solid var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            text-decoration: none; 
            color: var(--text-secondary); 
            font-size: 12px; 
            gap: 5px; 
            transition: color 0.3s;
        }
        .nav-item i { font-size: 20px; }
        .nav-item:hover { color: var(--primary); }

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

        @media (max-width: 768px) {
            .game-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .intro-card h1 { font-size: 24px; }
            .jackpot-amount { font-size: 24px; }
        }