:root {
            --primary: #FFD700;
            --primary-hover: #FFC107;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0B0E11;
            --bg-surface: #1E2329;
            --bg-overlay: rgba(0, 0, 0, 0.7);
            --bg-gradient: linear-gradient(180deg, #0B0E11 0%, #1A1D23 100%);
            --text-primary: #FFFFFF;
            --text-secondary: #B7BDC6;
            --text-disabled: #5E6673;
            --text-highlight: #FFD700;
            --success: #0ECB81;
            --warning: #F0B90B;
            --error: #F6465D;
            --info: #3B82F6;
            --border-default: #2B3139;
            --border-focus: #FFD700;
            --border-subtle: #363C44;
            --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
            --font-body: 'Inter', 'Roboto', Arial, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { background: var(--bg-main); background: var(--bg-gradient); color: var(--text-primary); font-family: var(--font-body); line-height: 1.5; overflow-x: hidden; }
        a { text-decoration: none; color: inherit; transition: 0.3s; }
        ul { list-style: none; }

        header {
            position: sticky; top: 0; z-index: 1000; background: var(--bg-surface);
            border-bottom: 1px solid var(--border-default); display: flex;
            justify-content: space-between; align-items: center; padding: 10px 20px;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; object-fit: contain; }
        header .logo-area strong { font-size: 16px; font-weight: normal; color: var(--text-primary); }
        header .auth-btns { display: flex; gap: 10px; }
        header .btn {
            padding: 8px 16px; border-radius: 4px; font-weight: 600; font-size: 14px; cursor: pointer; border: none; transition: 0.2s;
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-default); }
        header .btn-login:hover { border-color: var(--primary); color: var(--primary); }
        header .btn-register { background: var(--primary); color: #000; }
        header .btn-register:hover { background: var(--primary-hover); }

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

        .banner-container {
            width: 100%; aspect-ratio: 2/1; overflow: hidden; border-radius: 12px;
            cursor: pointer; margin-bottom: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.5);
        }
        .banner-container img { width: 100%; height: 100%; object-fit: cover; }

        .jackpot-section {
            background: var(--bg-surface); border: 2px solid var(--primary); border-radius: 12px;
            padding: 20px; text-align: center; margin-bottom: 20px; position: relative;
            overflow: hidden; box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
        }
        .jackpot-title { color: var(--primary); font-family: var(--font-heading); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace; font-size: 32px; font-weight: 800;
            color: #fff; text-shadow: 0 0 10px var(--primary);
        }

        .intro-card {
            background: var(--bg-surface); padding: 30px; border-radius: 15px;
            text-align: center; 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; line-height: 1.3;
        }
        .intro-card p { color: var(--text-secondary); font-size: 16px; line-height: 1.6; }

        .section-title {
            font-family: var(--font-heading); font-size: 22px; color: var(--text-primary);
            margin: 30px 0 20px; display: flex; align-items: center; gap: 10px;
        }
        .section-title::before { content: ""; width: 4px; height: 24px; background: var(--primary); 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: 10px; overflow: hidden;
            border: 1px solid var(--border-default); transition: 0.3s;
        }
        .game-card:hover { transform: translateY(-5px); border-color: var(--primary); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
        .game-card h3 {
            padding: 12px; font-size: 15px; text-align: center; color: var(--text-primary);
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
        }

        .payment-methods {
            display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 15px; background: var(--bg-surface); padding: 20px; border-radius: 12px;
            margin-bottom: 30px; text-align: center;
        }
        .payment-item {
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            color: var(--text-secondary); font-size: 13px;
        }
        .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: 30px;
        }
        .guide-card {
            background: var(--bg-surface); padding: 20px; border-radius: 12px;
            border: 1px solid var(--border-subtle);
        }
        .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(--secondary); color: #fff; padding: 12px; text-align: left; }
        .win-table td { padding: 12px; border-bottom: 1px solid var(--border-default); color: var(--text-secondary); }
        .win-table tr:last-child td { border: none; }
        .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall {
            display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px;
        }
        .provider-box {
            background: var(--bg-surface); padding: 15px; border-radius: 8px;
            text-align: center; font-weight: bold; color: var(--primary);
            border: 1px solid var(--border-default);
        }

        .comment-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-bottom: 30px;
        }
        .comment-card {
            background: var(--bg-surface); padding: 20px; border-radius: 12px;
            border: 1px solid var(--border-default); position: relative;
        }
        .comment-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
        .comment-header i { font-size: 30px; color: var(--primary); }
        .comment-user { font-weight: bold; font-size: 15px; }
        .comment-stars { color: var(--warning); font-size: 12px; margin-bottom: 10px; }
        .comment-body { color: var(--text-secondary); font-size: 14px; margin-bottom: 10px; }
        .comment-date { font-size: 12px; color: var(--text-disabled); }

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

        .security-box {
            background: var(--bg-surface); padding: 25px; border-radius: 15px;
            text-align: center; border: 1px solid var(--border-default); margin-bottom: 30px;
        }
        .security-icons { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 20px; }
        .security-icon { color: var(--success); font-size: 14px; display: flex; flex-direction: column; align-items: center; gap: 5px; }
        .security-icon i { font-size: 30px; }
        .security-text { color: var(--text-secondary); font-size: 14px; max-width: 700px; margin: 0 auto; }
        .security-text a { color: var(--primary); text-decoration: underline; }

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

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

        @media (max-width: 768px) {
            header .btn-login { display: none; }
            .links-grid { grid-template-columns: repeat(3, 1fr); }
        }