:root {
            --primary-gold: #d4af37;
            --dark-bg: #1a1d24;
            --card-bg: #252932;
            --text-white: #ffffff;
            --text-gray: #a0a0a0;
            --accent-red: #ff4d4d;
            --luxury-gradient: linear-gradient(135deg, #d4af37 0%, #f9e29c 50%, #b38728 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-white);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 15px;
            background: #111419;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #333;
        }
        .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;
            color: var(--primary-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .header-right {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.2s;
        }
        .btn:active {
            transform: scale(0.95);
        }
        .btn-login {
            background: transparent;
            color: var(--primary-gold);
            border: 1px solid var(--primary-gold);
        }
        .btn-register {
            background: var(--luxury-gradient);
            color: #000;
        }
        .banner {
            width: 100%;
            cursor: pointer;
            display: block;
        }
        .banner img {
            width: 100%;
            aspect-ratio: 2 / 1;
            display: block;
            object-fit: cover;
        }
        .announcement {
            background: #252932;
            padding: 8px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            overflow: hidden;
            font-size: 13px;
            color: var(--primary-gold);
        }
        .announcement i {
            color: var(--primary-gold);
        }
        .scrolling-text {
            white-space: nowrap;
            animation: scroll-left 20s linear infinite;
        }
        @keyframes scroll-left {
            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(--primary-gold);
        }
        .section-title::before {
            content: "";
            width: 4px;
            height: 18px;
            background: var(--primary-gold);
            display: inline-block;
            border-radius: 2px;
        }
        .game-grid {
            display: flex;
            flex-wrap: wrap;
            padding: 5px;
        }
        .game-card {
            width: 50%;
            padding: 8px;
        }
        .game-card-inner {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .game-card img {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: cover;
            display: block;
        }
        .game-info {
            padding: 10px;
            text-align: center;
        }
        .game-info h3 {
            font-size: 13px;
            font-weight: 500;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            color: var(--text-white);
        }
        .intro-card {
            margin: 20px 15px;
            padding: 20px;
            background: var(--card-bg);
            border-radius: 15px;
            border-left: 5px solid var(--primary-gold);
        }
        .intro-card h1 {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--primary-gold);
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-gray);
        }
        .trust-section {
            padding: 20px 15px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            background: #111419;
            margin: 20px 0;
            text-align: center;
        }
        .trust-item {
            font-size: 12px;
            color: var(--text-gray);
        }
        .trust-item i {
            font-size: 24px;
            color: var(--primary-gold);
            margin-bottom: 8px;
            display: block;
        }
        .winning-records {
            margin: 20px 15px;
            background: var(--card-bg);
            border-radius: 15px;
            padding: 15px;
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        .winning-list {
            animation: scroll-up 30s linear infinite;
        }
        .winning-item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid #333;
            font-size: 13px;
        }
        .winner-name { color: var(--text-white); }
        .winner-amount { color: var(--primary-gold); font-weight: bold; }
        @keyframes scroll-up {
            0% { transform: translateY(0); }
            100% { transform: translateY(-50%); }
        }
        .providers {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            padding: 20px 15px;
            opacity: 0.6;
        }
        .providers i { font-size: 30px; }
        .reviews {
            padding: 15px;
        }
        .review-card {
            background: #2a2e38;
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 10px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .review-user { font-weight: bold; font-size: 14px; color: var(--primary-gold); }
        .stars { color: #f1c40f; font-size: 12px; }
        .review-content { font-size: 13px; color: var(--text-gray); }
        .faq-section {
            padding: 15px;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: 10px;
            margin-bottom: 10px;
            padding: 15px;
        }
        .faq-item h3 {
            font-size: 15px;
            margin-bottom: 8px;
            color: var(--primary-gold);
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-gray);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #111419;
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
            border-top: 1px solid #333;
            z-index: 1000;
        }
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
            color: var(--text-gray);
        }
        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }
        .nav-item.active {
            color: var(--primary-gold);
        }
        footer {
            padding: 30px 15px 100px;
            background: #0f1115;
            text-align: center;
        }
        .footer-row {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-link {
            color: var(--text-gray);
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: #555;
            margin-top: 10px;
        }