:root {
            --primary: #FFD700;
            --primary-variant: #C5A000;
            --secondary: #E61E25;
            --accent: #00FFC3;
            --bg-main: #0B0E11;
            --bg-surface: #1B1F24;
            --bg-overlay: rgba(0, 0, 0, 0.85);
            --grad-start: #1A1A2E;
            --grad-end: #0B0E11;
            --text-primary: #FFFFFF;
            --text-secondary: #A0AEC0;
            --text-muted: #718096;
            --text-inverse: #0B0E11;
            --success: #00C853;
            --warning: #FFAB00;
            --error: #FF5252;
            --info: #2196F3;
            --border-light: #2D3748;
            --border-medium: #4A5568;
            --border-strong: #FFD700;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Roboto', Arial, sans-serif;
            --font-accent: 'Oswald', sans-serif;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { 
            background: linear-gradient(to bottom, var(--grad-start), var(--grad-end)); 
            background-attachment: fixed;
            color: var(--text-primary); 
            font-family: var(--font-body); 
            line-height: 1.5; 
            overflow-x: hidden;
        }
        h1, h2, h3 { font-family: var(--font-heading); font-weight: 700; color: var(--primary); }
        a { text-decoration: none; color: inherit; transition: 0.3s; }

        header { 
            background: 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(--border-strong);
            box-shadow: 0 4px 10px rgba(0,0,0,0.5);
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header img { width: 25px; height: 25px; object-fit: contain; }
        header strong { font-size: 16px; font-weight: normal; }
        header .auth-btns { display: flex; gap: 10px; }
        .btn { 
            padding: 8px 16px; 
            border-radius: 5px; 
            cursor: pointer; 
            font-weight: 600; 
            font-family: var(--font-accent); 
            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(--secondary); color: white; }
        .btn-register:hover { background: #b3181d; transform: scale(1.05); }

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

        .jackpot-section { 
            background: var(--bg-surface); 
            text-align: center; 
            padding: 30px; 
            border-radius: 15px; 
            border: 2px solid var(--primary); 
            margin-bottom: 30px; 
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { font-family: var(--font-accent); font-size: 24px; color: var(--text-secondary); margin-bottom: 10px; }
        .jackpot-amount { 
            font-family: var(--font-accent); 
            font-size: 48px; 
            color: var(--primary); 
            font-weight: 900; 
            text-shadow: 0 0 10px var(--primary);
            display: block;
        }

        .intro-card { 
            background: linear-gradient(135deg, var(--bg-surface), #252a31); 
            padding: 40px; 
            border-radius: 20px; 
            text-align: center; 
            margin-bottom: 40px; 
            border-left: 5px solid var(--primary);
        }
        .intro-card h1 { font-size: 32px; margin-bottom: 20px; line-height: 1.2; }
        .intro-card p { font-size: 18px; color: var(--text-secondary); }

        .section-title { text-align: center; margin: 40px 0 20px; font-size: 28px; position: relative; }
        .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--primary); margin: 10px auto; }

        .game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
        .game-card { 
            background: var(--bg-surface); 
            border-radius: 12px; 
            overflow: hidden; 
            border: 1px solid var(--border-light); 
            transition: 0.3s; 
            text-align: center;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 5px 15px rgba(0,0,0,0.4); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 { padding: 12px; font-size: 16px; color: var(--text-primary); }

        .payment-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 15px; 
            margin-bottom: 40px; 
            text-align: center;
        }
        .payment-item { 
            background: var(--bg-surface); 
            padding: 20px; 
            border-radius: 10px; 
            border: 1px solid var(--border-medium); 
            display: flex; 
            flex-direction: column; 
            align-items: center; 
            gap: 10px; 
            font-weight: 500;
        }
        .payment-item i { font-size: 24px; color: var(--primary); }

        .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: 12px; border-bottom: 3px solid var(--primary); }
        .guide-card h3 { margin-bottom: 10px; font-size: 20px; }
        .guide-card p { color: var(--text-secondary); font-size: 14px; }

        .winner-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 10px; overflow: hidden; margin-bottom: 40px; }
        .winner-table th { background: var(--primary); color: var(--text-inverse); padding: 12px; text-align: left; }
        .winner-table td { padding: 12px; border-bottom: 1px solid var(--border-light); color: var(--text-secondary); }
        .winner-table tr:hover { background: rgba(255,215,0,0.05); }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 40px; }
        .provider-block { padding: 15px; border-radius: 8px; font-weight: bold; text-align: center; font-family: var(--font-accent); }
        .p-even { background: var(--primary); color: var(--text-inverse); }
        .p-odd { background: var(--secondary); color: white; }

        .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: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-header strong { font-size: 16px; }
        .comment-stars { color: var(--warning); margin-bottom: 8px; font-size: 14px; }
        .comment-body { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-muted); display: block; }

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

        .security-footer { 
            background: var(--bg-surface); 
            padding: 30px; 
            border-radius: 15px; 
            text-align: center; 
            border: 1px dashed var(--primary);
            margin-bottom: 50px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; flex-wrap: wrap; }
        .security-icons div { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--text-secondary); }
        .security-icons i { color: var(--primary); font-size: 20px; }
        .security-footer p { font-size: 14px; color: var(--text-muted); margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: underline; }

        .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; 
            box-shadow: 0 -5px 15px rgba(0,0,0,0.5);
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 5px; font-size: 12px; color: var(--text-secondary); transition: 0.3s; }
        .nav-item i { font-size: 20px; color: var(--primary); }
        .nav-item:hover { color: white; }

        footer { 
            background: #05070a; 
            padding: 50px 20px 100px; 
            text-align: center; 
            border-top: 1px solid var(--border-light);
        }
        .footer-contact { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .footer-contact a { color: var(--text-secondary); font-size: 14px; }
        .footer-contact a:hover { color: var(--primary); }
        .footer-links { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 10px; 
            max-width: 800px; 
            margin: 0 auto 30px; 
            text-align: left; 
        }
        .footer-links a { color: var(--text-muted); font-size: 14px; }
        .footer-links a:hover { color: white; }
        .footer-bottom { color: var(--text-muted); font-size: 13px; margin-top: 30px; }

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