* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #f8f3e6;
            color: #3a2e18;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #8b4513;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .nav-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.4);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #fff8e7;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            background-color: #ffd700;
            color: #8b4513;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #8b4513;
            font-size: 2.5rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 15px 0;
            border-bottom: 4px solid #d2691e;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #8b4513;
            font-size: 2rem;
            margin: 40px 0 20px;
            padding: 10px 15px;
            background-color: #f5e8c8;
            border-left: 6px solid #d2691e;
            border-radius: 0 5px 5px 0;
        }
        h3 {
            color: #8b4513;
            font-size: 1.6rem;
            margin: 30px 0 15px;
            padding-left: 10px;
            border-left: 4px solid #cd853f;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.08rem;
            text-align: justify;
            padding: 0 5px;
        }
        .highlight {
            font-weight: bold;
            color: #8b4513;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 40px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 14px 28px;
            text-decoration: none;
            font-weight: bold;
            border-radius: 8px;
            transition: all 0.3s ease;
            text-align: center;
            flex: 1;
            min-width: 220px;
            font-size: 1.15rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #22c55e;
            color: white;
        }
        .login-btn {
            background-color: #3b82f6;
            color: white;
        }
        .btn:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.25);
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
            position: relative;
        }
        .game-image {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            border: 3px solid #d2691e;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: rgba(255,255,255,0.3);
            font-size: 5rem;
            font-weight: bold;
            z-index: 1;
            pointer-events: none;
            rotate: -30deg;
        }
        .image-caption {
            margin-top: 15px;
            font-style: italic;
            color: #5d4037;
            font-size: 1rem;
        }
        .stats-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 40px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 1px solid #e6d5b8;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid #e6d5b8;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            border: 1px solid #e6d5b8;
            transition: transform 0.3s ease;
        }
        .review-card:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        .reviewer:before {
            content: "👤";
            margin-right: 10px;
        }
        .rating {
            color: #f59e0b;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }
        .tips-container {
            background-color: #fff8e6;
            border-left: 5px solid #f59e0b;
            padding: 25px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-type {
            margin: 50px 0 30px;
            padding: 20px;
            background-color: #f5e8c8;
            border-radius: 8px;
        }
        .game-type h3 {
            margin-top: 0;
        }
        .game-type a {
            color: #1e40af;
            text-decoration: none;
            margin-right: 20px;
            transition: color 0.3s ease;
            font-size: 1.08rem;
            display: inline-block;
            margin-bottom: 10px;
        }
        .game-type a:hover {
            color: #8b4513;
            text-decoration: underline;
        }
        .tags {
            margin: 40px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .tag {
            background-color: #cd853f;
            color: white;
            padding: 8px 18px;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #8b4513;
            transform: scale(1.08);
        }
        footer {
            background-color: #3a2e18;
            color: #f5e8c8;
            padding: 50px 20px;
            margin-top: 80px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 40px;
        }
        .recommendation {
            font-size: 1.15rem;
            margin-bottom: 25px;
            line-height: 1.8;
        }
        .recommendation a {
            color: #ffd700;
            text-decoration: none;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #5d4037;
            font-size: 1rem;
        }
        .emoji-highlight {
            font-size: 1.3em;
            margin: 0 8px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #8b4513;
                padding: 25px;
                gap: 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.1rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .reviews-container {
                grid-template-columns: 1fr;
            }
            p {
                text-align: left;
                font-size: 1.05rem;
            }
            .btn {
                padding: 12px 20px;
                min-width: 180px;
            }
            .watermark {
                font-size: 3rem;
            }
        }
