:root {
            --primary-gold: #d4af37;
            --dark-bg: #1a1d24;
            --card-bg: #2a2e38;
            --text-main: #ffffff;
            --text-dim: #a0a0a0;
            --accent-gradient: linear-gradient(135deg, #d4af37 0%, #f9e29c 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: var(--dark-bg);
            color: var(--text-main);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            background-color: #0f1216;
            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 #333;
        }
        .header-left {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .header-left img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .header-left strong {
            font-size: 16px;
            font-weight: normal;
            color: var(--primary-gold);
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn-auth {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
        }
        .btn-login {
            background: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }
        .btn-register {
            background: var(--accent-gradient);
            color: #000;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2 / 1;
            overflow: hidden;
            cursor: pointer;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .announcement {
            background: #252830;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--primary-gold);
        }
        .announcement marquee {
            flex: 1;
            color: var(--text-dim);
        }
        .section-container {
            padding: 20px 15px;
        }
        .section-title {
            font-size: 18px;
            margin-bottom: 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: repeat(2, 1fr);
            gap: 12px;
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s;
            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-info {
            padding: 8px;
            text-align: center;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .intro-box {
            background: var(--card-bg);
            padding: 20px;
            border-radius: 15px;
            margin: 10px 0;
            border: 1px solid #3d424d;
        }
        .intro-box h1 {
            font-size: 20px;
            color: var(--primary-gold);
            margin-bottom: 10px;
        }
        .winning-records {
            background: #121418;
            border-radius: 12px;
            height: 200px;
            overflow: hidden;
            position: relative;
        }
        .record-list {
            animation: scroll-up 30s linear infinite;
            padding: 10px;
        }
        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .record-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            font-size: 12px;
            border-bottom: 1px solid #222;
        }
        .record-user { color: var(--text-dim); }
        .record-amount { color: #4caf50; font-weight: bold; }
        .trust-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            text-align: center;
            margin-top: 20px;
        }
        .badge-item {
            font-size: 11px;
            color: var(--text-dim);
        }
        .badge-item i {
            font-size: 24px;
            color: var(--primary-gold);
            display: block;
            margin-bottom: 5px;
        }
        .reviews {
            margin-top: 20px;
        }
        .review-card {
            background: #252830;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-size: 12px;
        }
        .stars { color: #ffc107; }
        .review-content { font-size: 13px; color: var(--text-dim); }
        .faq-section { margin-top: 20px; }
        .faq-item {
            background: #252830;
            margin-bottom: 8px;
            border-radius: 8px;
            padding: 12px;
        }
        .faq-question {
            font-weight: 600;
            font-size: 14px;
            color: var(--primary-gold);
            margin-bottom: 5px;
        }
        .faq-answer { font-size: 13px; color: var(--text-dim); }
        .navigater {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #0f1216;
            height: 60px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #333;
            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; }
        footer {
            background: #0a0c0f;
            padding: 30px 15px;
            text-align: center;
            border-top: 1px solid #333;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 13px;
        }
        .footer-links a { color: var(--text-dim); }
        .copyright {
            font-size: 11px;
            color: #555;
            margin-top: 15px;
        }