:root {
            --primary-bg: #11141b;
            --card-bg: #1e222b;
            --accent-gold: #f39c12;
            --accent-blue: #3498db;
            --text-light: #ffffff;
            --text-dim: #a0a0a0;
            --header-bg: #1a1d24;
            --nav-bg: #1a1d24;
            --success: #2ecc71;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }
        body {
            background-color: var(--primary-bg);
            color: var(--text-light);
            line-height: 1.6;
            padding-bottom: 70px;
        }
        header {
            background-color: var(--header-bg);
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 15px;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo-area img {
            width: 25px;
            height: 25px;
            border-radius: 4px;
        }
        .logo-area strong {
            font-size: 16px;
            font-weight: normal;
        }
        .auth-buttons {
            display: flex;
            gap: 10px;
        }
        .btn {
            padding: 6px 15px;
            border-radius: 20px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .btn-login {
            background-color: transparent;
            color: var(--text-light);
            border: 1px solid var(--accent-blue);
        }
        .btn-register {
            background: linear-gradient(135deg, var(--accent-blue), #2980b9);
            color: white;
        }
        .btn-download {
            background: linear-gradient(135deg, var(--accent-gold), #e67e22);
            color: white;
            width: 100%;
            padding: 12px;
            margin-top: 15px;
            font-size: 16px;
        }
        .banner {
            width: 100%;
            aspect-ratio: 2/1;
            cursor: pointer;
            display: block;
        }
        .banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .announcement {
            background-color: rgba(0,0,0,0.3);
            padding: 8px 15px;
            display: flex;
            align-items: center;
            overflow: hidden;
            border-bottom: 1px solid #2a2e38;
        }
        .announcement i {
            color: var(--accent-gold);
            margin-right: 10px;
        }
        .marquee {
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .container {
            padding: 15px;
        }
        .section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 15px;
            font-size: 18px;
            color: var(--accent-gold);
        }
        .game-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 25px;
        }
        .game-card {
            background-color: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.2);
            transition: transform 0.2s;
        }
        .game-card:active {
            transform: scale(0.95);
        }
        .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;
        }
        .intro-card {
            background: linear-gradient(145deg, #1e222b, #15181f);
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 25px;
            border-left: 4px solid var(--accent-blue);
        }
        .intro-card h1 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--accent-gold);
            line-height: 1.3;
        }
        .intro-card p {
            font-size: 14px;
            color: var(--text-dim);
        }
        .trust-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-bottom: 25px;
            text-align: center;
        }
        .badge-item {
            background: var(--card-bg);
            padding: 15px 5px;
            border-radius: 10px;
        }
        .badge-item i {
            font-size: 24px;
            color: var(--accent-blue);
            margin-bottom: 8px;
        }
        .badge-item span {
            font-size: 11px;
            display: block;
            color: var(--text-dim);
        }
        .winners-list {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 25px;
            max-height: 300px;
            overflow-y: auto;
        }
        .winner-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid #2a2e38;
            font-size: 13px;
        }
        .winner-name {
            color: var(--text-light);
        }
        .winner-amount {
            color: var(--success);
            font-weight: bold;
        }
        .reviews {
            margin-bottom: 25px;
        }
        .review-card {
            background: var(--card-bg);
            padding: 15px;
            border-radius: 12px;
            margin-bottom: 12px;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }
        .reviewer-name {
            font-weight: 600;
            font-size: 14px;
        }
        .stars {
            color: var(--accent-gold);
            font-size: 12px;
        }
        .review-text {
            font-size: 13px;
            color: var(--text-dim);
            font-style: italic;
        }
        .faq-section {
            margin-bottom: 25px;
        }
        .faq-item {
            background: var(--card-bg);
            border-radius: 10px;
            margin-bottom: 10px;
            padding: 15px;
        }
        .faq-item h2 {
            font-size: 15px;
            margin-bottom: 8px;
            color: var(--accent-blue);
        }
        .faq-item p {
            font-size: 13px;
            color: var(--text-dim);
        }
        .navigator {
            position: fixed;
            bottom: 0;
            width: 100%;
            height: 65px;
            background-color: var(--nav-bg);
            display: flex;
            justify-content: space-around;
            align-items: center;
            border-top: 1px solid #2a2e38;
            z-index: 1000;
        }
        .nav-item {
            text-decoration: none;
            color: var(--text-dim);
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 11px;
        }
        .nav-item i {
            font-size: 20px;
            margin-bottom: 4px;
        }
        footer {
            background-color: #0d1015;
            padding: 30px 15px 100px;
            text-align: center;
        }
        .footer-row {
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer-link {
            color: var(--text-dim);
            text-decoration: none;
            font-size: 13px;
        }
        .copyright {
            font-size: 12px;
            color: #555;
            margin-top: 10px;
        }