* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Noto Sans', 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #fff8e6;
            color: #4a3c28;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #7d5a2b;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #ffcc00;
            font-size: 2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        .nav-links li {
            margin: 0 12px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-links a:hover {
            background-color: #9b6e36;
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 101;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #7d5a2b;
            text-align: center;
            margin-bottom: 30px;
            font-size: 2.8rem;
            border-bottom: 3px solid #ffcc00;
            padding-bottom: 15px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #7d5a2b;
            margin: 45px 0 25px;
            font-size: 2rem;
            border-left: 5px solid #ffcc00;
            padding-left: 15px;
            font-family: 'Georgia', serif;
        }
        h3 {
            color: #9b6e36;
            margin: 35px 0 18px;
            font-size: 1.5rem;
            font-family: 'Georgia', serif;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #7d5a2b;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 3px solid #ffcc00;
            position: relative;
        }
        .image-watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: bold;
            color: rgba(255,255,255,0.2);
            z-index: 10;
            pointer-events: none;
            rotate: -30deg;
        }
        .image-caption {
            font-size: 0.9rem;
            color: #666;
            margin-top: 12px;
            text-align: center;
            max-width: 80%;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-container {
            text-align: center;
            margin: 45px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 12px 15px;
            background-color: #ffcc00;
            color: #7d5a2b;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.15);
            font-size: 1.1rem;
        }
        .btn:hover {
            background-color: #e6b800;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background-color: #2e8b57;
            color: white;
        }
        .download-btn:hover {
            background-color: #236b43;
        }
        .login-btn {
            background-color: #1e90ff;
            color: white;
        }
        .login-btn:hover {
            background-color: #0c7cd5;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-left: 6px solid #ffcc00;
        }
        .stat-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        .stat-item:last-child {
            border-bottom: none;
        }
        .review {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 6px solid #ffcc00;
            transition: transform 0.3s ease;
        }
        .review:hover {
            transform: translateY(-5px);
        }
        .reviewer {
            font-weight: bold;
            color: #7d5a2b;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffcc00;
            margin-bottom: 12px;
            font-size: 1.2rem;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #f5e6b3;
            color: #7d5a2b;
            padding: 7px 15px;
            border-radius: 25px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e6d38f;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 25px 0;
        }
        .game-type {
            color: #7d5a2b;
            text-decoration: none;
            margin-right: 18px;
            font-weight: 500;
            font-size: 1.05rem;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #5d4520;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.3rem;
            font-family: 'Georgia', serif;
        }
        .recommendation {
            background-color: #f8f0d2;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border-left: 5px solid #ffcc00;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #555;
            margin-top: 25px;
            font-size: 0.95rem;
            color: #ccc;
        }
        .tips-box {
            background-color: rgba(255,204,0,0.1);
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            border-left: 4px solid #ffcc00;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: #7d5a2b;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stat-item {
                flex-direction: column;
                gap: 5px;
            }
            .image-caption {
                max-width: 100%;
            }
        }
