:root {
            --primary-gold: #d4af37;
            --accent-red: #e63946;
            --bg-dark: #0f1116;
            --card-bg: #1a1d24;
            --text-main: #e0e0e0;
            --text-muted: #a0a0a0;
            --white: #ffffff;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a { text-decoration: none; color: inherit; }
        header {
            background-color: #161920;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2a2e38;
        }
        .header-left { display: flex; align-items: center; gap: 8px; }
        .header-left img { width: 25px; height: 25px; border-radius: 4px; }
        .header-left strong { font-size: 16px; font-weight: normal; color: var(--primary-gold); }
        .header-right { display: flex; gap: 10px; }
        .btn {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: opacity 0.3s;
        }
        .btn-login { background-color: transparent; border: 1px solid var(--primary-gold); color: var(--primary-gold); }
        .btn-register { background: linear-gradient(135deg, #d4af37, #f1c40f); color: #000; }
        .banner { width: 100%; aspect-ratio: 2/1; display: block; cursor: pointer; }
        .banner img { width: 100%; height: 100%; object-fit: cover; }
        .container { padding: 15px; max-width: 800px; margin: 0 auto; }
        .jackpot-box {
            background: linear-gradient(135deg, #2c3e50, #000);
            border: 2px solid var(--primary-gold);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
        }
        .jackpot-title { font-size: 14px; color: var(--primary-gold); text-transform: uppercase; letter-spacing: 2px; }
        .jackpot-amount { font-size: 32px; font-weight: 800; color: #fff; margin: 10px 0; font-family: monospace; }
        .section-title { font-size: 18px; margin: 20px 0 15px; display: flex; align-items: center; gap: 8px; border-left: 4px solid var(--primary-gold); padding-left: 10px; }
        .game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .game-card { background: var(--card-bg); border-radius: 12px; overflow: hidden; display: block; box-shadow: 0 4px 6px rgba(0,0,0,0.3); }
        .game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
        .game-card .title { padding: 8px; font-size: 12px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-main); }
        .intro-card { background: var(--card-bg); border-radius: 12px; padding: 20px; margin: 25px 0; border: 1px solid #2a2e38; }
        .intro-card h1 { font-size: 20px; color: var(--primary-gold); margin-bottom: 12px; line-height: 1.3; }
        .intro-card p { font-size: 14px; color: var(--text-muted); text-align: justify; }
        .guidelines { display: grid; grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }
        .guide-item { background: #1e222b; padding: 15px; border-radius: 10px; display: flex; align-items: flex-start; gap: 12px; }
        .guide-item i { color: var(--primary-gold); font-size: 18px; margin-top: 3px; }
        .guide-item h3 { font-size: 15px; margin-bottom: 4px; }
        .guide-item p { font-size: 13px; color: var(--text-muted); }
        .winners-list { background: var(--card-bg); border-radius: 12px; padding: 15px; height: 300px; overflow-y: auto; margin: 20px 0; border: 1px solid #2a2e38; }
        .winner-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #2a2e38; font-size: 13px; }
        .winner-name { color: var(--primary-gold); }
        .winner-amount { color: #2ecc71; font-weight: bold; }
        .casino-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin: 25px 0; text-align: center; }
        .stat-item { background: #1e222b; padding: 15px 5px; border-radius: 8px; }
        .stat-val { display: block; font-size: 18px; font-weight: bold; color: var(--primary-gold); }
        .stat-lbl { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
        .comments-grid { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
        .comment-card { background: #1e222b; padding: 15px; border-radius: 12px; position: relative; }
        .comment-user { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
        .comment-user img { width: 35px; height: 35px; border-radius: 50%; background: #333; }
        .comment-user .info { font-size: 13px; }
        .stars { color: #f1c40f; font-size: 11px; }
        .comment-text { font-size: 13px; font-style: italic; color: var(--text-muted); }
        .faq-section { margin-top: 30px; }
        .faq-item { background: var(--card-bg); margin-bottom: 10px; border-radius: 8px; padding: 15px; }
        .faq-item h3 { font-size: 15px; color: var(--primary-gold); margin-bottom: 8px; }
        .faq-item p { font-size: 13px; color: var(--text-muted); }
        .navigator {
            position: fixed;
            bottom: 15px;
            left: 15px;
            right: 15px;
            background: rgba(22, 25, 32, 0.95);
            backdrop-filter: blur(10px);
            height: 60px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-radius: 30px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
            z-index: 1001;
        }
        .nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-muted); font-size: 11px; flex: 1; }
        .nav-item i { font-size: 18px; }
        .nav-item:nth-child(3) { background: var(--primary-gold); width: 50px; height: 50px; border-radius: 50%; color: #000; margin-top: -30px; border: 5px solid var(--bg-dark); flex: none; justify-content: center; }
        .nav-item:nth-child(3) i { font-size: 20px; }
        footer { background: #12151c; padding: 30px 15px 100px; text-align: center; border-top: 1px solid #2a2e38; }
        .footer-row { margin-bottom: 20px; display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; }
        .footer-row a { font-size: 13px; color: var(--text-muted); transition: color 0.3s; }
        .footer-row a:hover { color: var(--primary-gold); }
        .copyright { font-size: 12px; color: #555; }
        @media (min-width: 600px) {
            .game-grid { grid-template-columns: repeat(3, 1fr); }
            .guidelines { grid-template-columns: 1fr 1fr; }
            .comments-grid { grid-template-columns: 1fr 1fr; }
        }