:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #C0C0C0;
            --accent: #FF0000;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-overlay: rgba(0, 0, 0, 0.8);
            --grad-start: #1a1a1a;
            --grad-end: #000000;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-muted: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-subtle: #333333;
            --border-medium: #444444;
            --border-strong: #FFD700;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background: var(--bg-main); 
            color: var(--text-primary); 
            font-family: 'Roboto', sans-serif; 
            line-height: 1.5; 
            overflow-x: hidden;
            padding-bottom: 70px;
        }
        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 20px; }
        
        header { 
            background: var(--bg-surface); 
            border-bottom: 2px solid var(--primary); 
            padding: 10px 0; 
            position: sticky; 
            top: 0; 
            z-index: 1000; 
        }
        header .container { display: flex; justify-content: space-between; align-items: center; }
        .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; color: var(--primary); text-transform: uppercase; }
        .auth-buttons { display: flex; gap: 12px; }
        .btn { 
            padding: 8px 20px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-family: 'Oswald', sans-serif; 
            font-weight: 600; 
            text-transform: uppercase; 
            border: none; 
            transition: 0.3s;
        }
        .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); }

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

        .jackpot-section { 
            background: linear-gradient(45deg, var(--grad-start), var(--grad-end)); 
            text-align: center; 
            padding: 30px 0; 
            border-bottom: 1px solid var(--border-subtle);
        }
        .jackpot-title { font-family: 'Oswald', sans-serif; color: var(--secondary); font-size: 18px; text-transform: uppercase; }
        .jackpot-amount { 
            font-size: 48px; 
            font-weight: 800; 
            color: var(--primary); 
            text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); 
            margin: 10px 0; 
            font-family: 'Oswald', sans-serif;
        }

        .intro-card { 
            background: var(--bg-surface); 
            border: 1px solid var(--border-medium); 
            border-radius: 15px; 
            padding: 30px; 
            text-align: center; 
            margin: 40px 0; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        .intro-card h1 { font-size: 28px; color: var(--primary); margin-bottom: 15px; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { 
            text-align: center; 
            margin: 40px 0 20px; 
            font-size: 24px; 
            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: 40px;
        }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-subtle); 
            transition: 0.3s; 
            text-align: center;
        }
        .game-card:hover { border-color: var(--primary); transform: translateY(-5px); }
        .game-card img { 
            width: 100%; 
            aspect-ratio: 1/1; 
            object-fit: cover; 
            display: block;
        }
        .game-card h3 { 
            padding: 12px; 
            font-size: 16px; 
            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: 40px 0; 
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 15px; 
            text-align: center; 
            border-radius: 10px; 
            border: 1px solid var(--border-subtle); 
            color: var(--text-secondary); 
            font-size: 14px; 
            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-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin: 40px 0;
        }
        .guide-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 12px; 
            border-left: 4px solid var(--primary);
        }
        .guide-card h3 { margin-bottom: 10px; color: var(--primary); }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .win-records { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            padding: 20px; 
            margin: 40px 0; 
            border: 1px solid var(--border-subtle);
        }
        .win-table { width: 100%; border-collapse: collapse; font-size: 14px; }
        .win-table th { text-align: left; color: var(--text-muted); padding: 10px; border-bottom: 1px solid var(--border-medium); }
        .win-table td { padding: 12px 10px; border-bottom: 1px solid var(--border-subtle); }
        .win-amount { color: var(--success); font-weight: 600; }

        .provider-wall { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 10px; 
            margin: 40px 0;
        }
        .provider-box { 
            padding: 20px; 
            text-align: center; 
            border-radius: 8px; 
            font-weight: 700; 
            text-transform: uppercase; 
            font-family: 'Oswald', sans-serif;
            background: linear-gradient(135deg, #222, #333); 
            border: 1px solid var(--border-medium);
            color: var(--primary);
        }

        .comment-grid { 
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
            gap: 20px; 
            margin: 40px 0;
        }
        .comment-card { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 15px; 
            border: 1px solid var(--border-subtle);
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; }
        .comment-header i { font-size: 40px; color: var(--primary); }
        .comment-header .user-info h4 { font-size: 16px; }
        .comment-header .stars { color: var(--primary); font-size: 12px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); text-align: right; }

        .faq-section { margin: 40px 0; }
        .faq-item { 
            background: var(--bg-surface); 
            margin-bottom: 10px; 
            border-radius: 8px; 
            overflow: hidden; 
            border: 1px solid var(--border-subtle);
        }
        .faq-question { 
            padding: 15px 20px; 
            cursor: pointer; 
            font-weight: 600; 
            display: flex; 
            justify-content: space-between; 
            align-items: center;
            background: #222;
        }
        .faq-answer { padding: 15px 20px; color: var(--text-secondary); font-size: 14px; display: block; border-top: 1px solid var(--border-subtle); }

        .security-box { 
            text-align: center; 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 15px; 
            margin: 40px 0; 
            border: 1px solid var(--border-medium);
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .sec-item { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
        .sec-item i { font-size: 30px; color: var(--success); }
        .age-badge { 
            display: inline-block; 
            border: 2px solid var(--accent); 
            color: var(--accent); 
            border-radius: 50%; 
            width: 40px; 
            height: 40px; 
            line-height: 36px; 
            font-weight: 800; 
            margin: 10px 0;
        }

        .navigator { 
            position: fixed; 
            bottom: 0; 
            left: 0; 
            right: 0; 
            background: var(--bg-surface); 
            display: flex; 
            justify-content: space-around; 
            padding: 10px 0; 
            border-top: 2px solid var(--primary); 
            z-index: 1001; 
            box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
        }
        .nav-item { 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            font-size: 12px; 
            color: var(--text-secondary); 
            gap: 5px; 
        }
        .nav-item i { font-size: 20px; color: var(--text-primary); }
        .nav-item:hover { color: var(--primary); }

        footer { 
            background: var(--bg-surface); 
            padding: 40px 0 100px; 
            border-top: 1px solid var(--border-medium); 
            font-size: 14px;
        }
        .footer-contact { 
            display: flex; 
            justify-content: center; 
            gap: 20px; 
            margin-bottom: 30px; 
            flex-wrap: wrap; 
            text-align: center;
        }
        .footer-contact a { color: var(--primary); font-weight: 600; }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 15px; 
            margin-bottom: 30px; 
            text-align: center;
        }
        .footer-links a { color: var(--text-secondary); }
        .footer-links a:hover { color: var(--primary); }
        .copyright { 
            text-align: center; 
            color: var(--text-muted); 
            border-top: 1px solid var(--border-subtle); 
            padding-top: 20px; 
        }

        @media (max-width: 768px) {
            .payment-methods { grid-template-columns: repeat(2, 1fr); }
            .footer-links { grid-template-columns: repeat(2, 1fr); }
            .jackpot-amount { font-size: 32px; }
        }