body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FFD700; color: #333; padding: 15px 0; text-align: center; position: relative; }
        header h1 { margin: 0; font-size: 2.5em; }
        .logo-text { font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { background-color: #FFA500; padding: 10px; display: flex; justify-content: center; flex-wrap: wrap; }
        nav a { color: white; text-decoration: none; margin: 0 15px; font-weight: bold; }
        .mobile-nav-toggle { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; font-size: 1.5em; color: white; cursor: pointer; }
        h1, h2, h3 { color: #FF4500; }
        h1 { font-size: 2em; margin-bottom: 20px; }
        h2 { font-size: 1.7em; margin: 30px 0 15px; }
        h3 { font-size: 1.4em; margin: 25px 0 10px; }
        p { margin-bottom: 15px; }
        .btn { display: inline-block; background-color: #4CAF50; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .btn:hover { background-color: #45a049; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        .game-stats { background-color: white; padding: 20px; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); }
        .player-reviews { margin-top: 30px; }
        .review { background-color: white; padding: 15px; margin-bottom: 15px; border-radius: 5px; }
        .localization-diff { margin-top: 30px; }
        .strategy-guide, .community-discussions { margin-top: 30px; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        footer a { color: #FFD700; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            h1 { font-size: 1.8em; }
            h2 { font-size: 1.5em; }
            h3 { font-size: 1.3em; }
        }
