:root {
            --primary-bg: #0f1218;
            --secondary-bg: #1a1d24;
            --accent-gold: #d4af37;
            --accent-light-gold: #f3d07a;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --card-bg: #242832;
            --btn-gradient: linear-gradient(180deg, #f3d07a 0%, #d4af37 100%);
            --radius: 12px;
        }
        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-white);
            line-height: 1.6;
            -webkit-tap-highlight-color: transparent;
        }
        header {
            background-color: var(--secondary-bg);
            padding: 10px 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            object-fit: contain;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-login, .btn-register {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn-login {
            background-color: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
        }
        .btn-register {
            background: var(--btn-gradient);
            color: #000;
        }
        .btn-login:active, .btn-register:active {
            transform: scale(0.95);
        }
        main {
            padding-bottom: 80px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }
        .jackpot-section {
            background: radial-gradient(circle, #2a2e38 0%, #0f1218 100%);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }
        .jackpot-title {
            color: var(--accent-gold);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }
        .jackpot-amount {
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }
        .section-header {
            padding: 0 15px;
            margin: 20px 0 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .section-header h2 {
            font-size: 18px;
            margin: 0;
            color: var(--accent-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            padding: 0 15px;
        }
        .game-card {
            background-color: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            text-decoration: none;
            color: #fff;
            transition: transform 0.2s;
            position: relative;
        }
        .game-card:active {
            transform: scale(0.98);
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-card .title {
            padding: 8px;
            font-size: 13px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            background: rgba(0,0,0,0.5);
        }
        .intro-card {
            margin: 20px 15px;
            padding: 20px;
            background: var(--secondary-bg);
            border-radius: var(--radius);
            border-left: 4px solid var(--accent-gold);
        }
        .intro-card h1 {
            font-size: 20px;
            margin: 0 0 10px 0;
            color: var(--accent-gold);
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-gray);
            margin: 0;
        }
        .guidelines {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 0 15px;
            margin-top: 20px;
        }
        .guide-item {
            background: var(--card-bg);
            padding: 15px;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .guide-item i {
            font-size: 24px;
            color: var(--accent-gold);
            width: 30px;
            text-align: center;
        }
        .guide-text h3 {
            margin: 0;
            font-size: 15px;
        }
        .guide-text p {
            margin: 5px 0 0 0;
            font-size: 13px;
            color: var(--text-gray);
        }
        .winning-ticker {
            margin: 20px 15px;
            background: #000;
            border-radius: var(--radius);
            padding: 10px;
            height: 150px;
            overflow-y: auto;
            border: 1px solid #333;
        }
        .winning-item {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            padding: 5px 0;
            border-bottom: 1px solid #222;
        }
        .winning-item span:first-child { color: var(--text-gray); }
        .winning-item span:last-child { color: #4caf50; font-weight: bold; }

        .trust-elements {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            padding: 20px 15px;
            text-align: center;
        }
        .trust-item i {
            font-size: 30px;
            color: var(--accent-gold);
            margin-bottom: 5px;
        }
        .trust-item span {
            display: block;
            font-size: 11px;
            color: var(--text-gray);
        }

        .comments-section {
            padding: 0 15px;
            margin-top: 20px;
        }
        .comment-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 10px;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .user-name { font-weight: bold; font-size: 14px; }
        .stars { color: var(--accent-gold); font-size: 12px; }
        .comment-body { font-size: 13px; color: var(--text-gray); font-style: italic; }

        .faq-section {
            padding: 0 15px;
            margin-top: 20px;
        }
        .faq-item {
            background: var(--secondary-bg);
            margin-bottom: 10px;
            border-radius: 8px;
            overflow: hidden;
        }
        .faq-question {
            padding: 15px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            border-bottom: 1px solid #333;
            color: var(--accent-light-gold);
        }
        .faq-answer {
            padding: 15px;
            font-size: 13px;
            color: var(--text-gray);
            background: #1e222a;
        }

        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            background: var(--secondary-bg);
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-gray);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            gap: 4px;
        }
        .nav-item i { font-size: 18px; }
        .nav-item.active { color: var(--accent-gold); }

        footer {
            background: #0a0c10;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 20px;
        }
        .footer-row a {
            color: var(--text-gray);
            text-decoration: none;
            font-size: 13px;
        }
        .footer-row a:hover { color: var(--accent-gold); }
        .copyright {
            font-size: 12px;
            color: #555;
            border-top: 1px solid #222;
            padding-top: 20px;
        }