* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff8f0;
            color: #3a2e21;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #9e2a2b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        nav ul li a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        h1 {
            color: #9e2a2b;
            font-size: 2.5rem;
            margin-bottom: 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            padding-bottom: 15px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #601700;
            font-size: 1.8rem;
            margin: 50px 0 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ffd700;
            position: relative;
        }
        h2:before {
            content: '🛍️';
            margin-right: 10px;
        }
        h3 {
            color: #b94e19;
            font-size: 1.4rem;
            margin: 35px 0 18px;
            padding-left: 10px;
            border-left: 3px solid #ffd700;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #9e2a2b;
            text-decoration: underline;
            text-decoration-color: #ffd700;
            text-decoration-thickness: 2px;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 50px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 35px;
            margin: 0 12px;
            background-color: #28a745;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 1.1rem;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #dc3545;
        }
        .btn-login {
            background-color: #9e2a2b;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 5px solid #ffd700;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.05);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #9e2a2b;
            margin-bottom: 10px;
        }
        .stat-label {
            color: #6c757d;
            font-weight: 500;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.07);
            border-left: 4px solid #ffd700;
        }
        .reviewer {
            font-weight: bold;
            color: #9e2a2b;
            font-size: 1.1rem;
        }
        .review-location {
            color: #6c757d;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        .stars {
            color: #ffd700;
            margin: 8px 0 15px;
            letter-spacing: 2px;
        }
        .tag-container {
            margin: 40px 0;
        }
        .tag {
            display: inline-block;
            padding: 10px 20px;
            background-color: #fff0e6;
            color: #9e2a2b;
            border-radius: 30px;
            margin: 0 10px 12px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #9e2a2b;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 40px 0 25px;
        }
        .game-type {
            display: inline-block;
            margin-right: 20px;
            margin-bottom: 10px;
            color: #9e2a2b;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
            padding-left: 20px;
        }
        .game-type:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #ffd700;
            font-size: 1.5rem;
            top: -5px;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #601700;
        }
        footer {
            background-color: #9e2a2b;
            color: white;
            padding: 50px 0 25px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #ffd700;
            border-left-color: #ffd700;
            margin-bottom: 20px;
        }
        .recommendation {
            font-style: italic;
            margin: 30px 0;
            color: #f8f9fa;
            font-size: 1.1rem;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            font-size: 0.95rem;
            color: #e9ecef;
        }
        .tips-box {
            background-color: #fff3cd;
            border-left: 5px solid #ffd700;
            padding: 20px;
            margin: 30px 0;
            border-radius: 5px;
        }
        .tips-box h4 {
            color: #856404;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }
        .feature-list {
            margin: 25px 0;
            padding-left: 20px;
        }
        .feature-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 30px;
        }
        .feature-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #28a745;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #9e2a2b;
                padding: 25px;
                box-shadow: 0 8px 15px rgba(0,0,0,0.15);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 15px 0;
                padding: 5px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            p {
                text-align: left;
            }
        }
