:root {
            --primary: #FFD700;
            --primary-hover: #FFC800;
            --secondary: #B8860B;
            --accent: #FF4500;
            --bg-main: #0F0F0F;
            --bg-surface: #1A1A1A;
            --bg-surface-light: #2C2C2C;
            --text-primary: #FFFFFF;
            --text-secondary: #B3B3B3;
            --text-disabled: #666666;
            --text-inverse: #000000;
            --success: #00C853;
            --error: #FF1744;
            --warning: #FFAB00;
            --info: #2979FF;
            --border-default: #333333;
            --border-highlight: #FFD700;
            --border-muted: #222222;
            --font-primary: 'Montserrat', sans-serif;
            --font-secondary: 'Roboto', sans-serif;
            --font-accent: 'Playfair Display', serif;
        }

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

        header {
            background-color: var(--bg-surface);
            border-bottom: 1px solid var(--border-default);
            padding: 0 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        header .logo-area { display: flex; align-items: center; gap: 10px; }
        header .logo-area img { width: 25px; height: 25px; }
        header .logo-area strong { font-size: 16px; font-weight: normal; font-family: var(--font-primary); }
        header .auth-buttons { display: flex; gap: 10px; }
        header .btn {
            padding: 6px 16px;
            border-radius: 4px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: var(--font-primary);
        }
        header .btn-login { background: transparent; color: var(--text-primary); border: 1px solid var(--border-highlight); }
        header .btn-register { background: var(--primary); color: var(--text-inverse); }
        header .btn-register:hover { background: var(--primary-hover); }

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

        .jackpot-section {
            background: linear-gradient(45deg, var(--bg-surface), #2a2a2a);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid var(--secondary);
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        .jackpot-title { font-family: var(--font-accent); color: var(--primary); font-size: 18px; text-transform: uppercase; margin-bottom: 10px; }
        .jackpot-amount { font-family: var(--font-primary); font-size: 32px; font-weight: bold; color: #fff; text-shadow: 0 0 10px var(--primary); }

        .intro-card {
            background: var(--bg-surface);
            padding: 30px;
            border-radius: 15px;
            border-left: 5px solid var(--primary);
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .intro-card h1 { font-family: var(--font-accent); font-size: 24px; color: var(--primary); margin-bottom: 15px; line-height: 1.3; }
        .intro-card p { color: var(--text-secondary); font-size: 16px; }

        .section-title { font-family: var(--font-primary); font-size: 20px; color: var(--text-primary); margin: 30px 0 20px; display: flex; align-items: center; gap: 10px; }
        .section-title::before { content: ''; width: 4px; height: 20px; background: var(--primary); display: inline-block; }

        .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-muted); 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: 14px; text-align: center; font-family: var(--font-primary); color: var(--text-primary); }

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

        .guide-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
        .guide-card { background: var(--bg-surface); 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; }

        .lottery-table { width: 100%; border-collapse: collapse; background: var(--bg-surface); border-radius: 12px; overflow: hidden; }
        .lottery-table th { background: var(--bg-surface-light); color: var(--primary); padding: 12px; text-align: left; font-size: 14px; }
        .lottery-table td { padding: 12px; border-bottom: 1px solid var(--border-muted); font-size: 13px; }
        .lottery-table .win-amount { color: var(--success); font-weight: bold; }

        .provider-wall { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
        .provider-box { padding: 15px; border-radius: 8px; font-weight: bold; text-align: center; border: 1px solid var(--border-highlight); color: var(--primary); background: linear-gradient(135deg, var(--bg-surface), #222); }

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

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

        .security-footer { background: var(--bg-surface); padding: 25px; border-radius: 12px; text-align: center; border: 1px dashed var(--primary); }
        .security-footer .ssl-badge { font-size: 40px; color: var(--success); margin-bottom: 15px; }
        .security-footer p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
        .security-footer a { color: var(--primary); text-decoration: underline; }

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

        footer { background: var(--bg-surface); padding: 40px 15px 100px; border-top: 1px solid var(--border-default); color: var(--text-secondary); text-align: center; }
        footer .contact-row { margin-bottom: 30px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
        footer .contact-row a { color: var(--text-primary); font-size: 14px; display: flex; align-items: center; gap: 5px; }
        footer .link-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-width: 600px; margin: 0 auto 30px; text-align: left; }
        footer .link-grid a { font-size: 13px; display: block; padding: 5px 0; color: var(--text-secondary); }
        footer .link-grid a:hover { color: var(--primary); }
        footer .copyright { font-size: 12px; color: var(--text-disabled); margin-top: 20px; }

        @media (max-width: 768px) {
            .link-grid { grid-template-columns: repeat(3, 1fr); }
            .provider-wall { grid-template-columns: 1fr 1fr; }
        }