:root {
            --primary-bg: #121417;
            --card-bg: #1e222b;
            --accent-gold: #d4af37;
            --accent-gold-hover: #f1c40f;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
            --spacing: 15px;
            --radius: 12px;
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-main);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.5;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background-color: var(--card-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;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--accent-gold);
            letter-spacing: 0.5px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn-login {
            background: transparent;
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
        }
        .btn-register {
            background: var(--gradient-gold);
            color: #000;
        }
        .banner {
            width: 100%;
            display: block;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            aspect-ratio: 2/1;
            object-fit: cover;
            display: block;
        }
        .announcement {
            background: #2a2e38;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            overflow: hidden;
            white-space: nowrap;
            gap: 10px;
            font-size: 13px;
        }
        .announcement i {
            color: var(--accent-gold);
        }
        .scrolling-text {
            display: inline-block;
            animation: marquee 20s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .section-title {
            padding: 20px 15px 10px;
            font-size: 18px;
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0 15px 20px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            transition: transform 0.2s;
            border: 1px solid #2d323c;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 8px;
            text-align: center;
            font-size: 13px;
            background: #232731;
        }
        .intro-card {
            background: var(--card-bg);
            margin: 15px;
            padding: 20px;
            border-radius: var(--radius);
            border-left: 4px solid var(--accent-gold);
        }
        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--accent-gold);
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-dim);
            text-align: justify;
        }
        .winning-list {
            margin: 0 15px 20px;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 10px;
            height: 200px;
            overflow-y: auto;
        }
        .win-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 5px;
            border-bottom: 1px solid #2a2e38;
            font-size: 12px;
        }
        .win-user { color: var(--text-dim); }
        .win-amount { color: #2ecc71; font-weight: bold; }
        .win-game { color: var(--accent-gold); }
        .trust-badges {
            display: flex;
            justify-content: space-around;
            padding: 20px 15px;
            background: #1a1d24;
            margin-bottom: 20px;
        }
        .trust-item {
            text-align: center;
            font-size: 11px;
            color: var(--text-dim);
        }
        .trust-item i {
            font-size: 24px;
            color: var(--accent-gold);
            margin-bottom: 5px;
            display: block;
        }
        .reviews {
            padding: 0 15px 20px;
        }
        .review-card {
            background: #232731;
            padding: 15px;
            border-radius: var(--radius);
            margin-bottom: 10px;
        }
        .review-user {
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 5px;
            display: flex;
            justify-content: space-between;
        }
        .stars { color: #f1c40f; }
        .review-text { font-size: 13px; color: var(--text-dim); }
        .faq-section {
            padding: 0 15px 30px;
        }
        .faq-item {
            margin-bottom: 15px;
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            color: var(--accent-gold);
            margin-bottom: 8px;
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-dim);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1e222b;
            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 {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-dim);
        }
        .nav-item i {
            font-size: 18px;
            margin-bottom: 3px;
        }
        .nav-item:active {
            color: var(--accent-gold);
        }
        footer {
            background: #0d0f12;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-row {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-link {
            font-size: 13px;
            color: var(--text-dim);
        }
        .copyright {
            font-size: 12px;
            color: #555;
            margin-top: 20px;
        }