body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #fff9e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6b35; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; margin-top: 15px; }
        nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; position: absolute; top: 20px; right: 20px; font-size: 24px; cursor: pointer; }
        h1 { color: #ff6b35; font-size: 32px; margin-top: 40px; }
        h2 { color: #4a90e2; font-size: 26px; margin-top: 30px; border-bottom: 2px solid #ff6b35; padding-bottom: 5px; }
        h3 { color: #2e8b57; font-size: 22px; margin-top: 25px; }
        .download-btn { display: inline-block; background-color: #4CAF50; color: white; padding: 12px 24px; margin: 20px 0; text-align: center; border-radius: 5px; font-weight: bold; text-decoration: none; }
        .login-btn { display: inline-block; background-color: #2196F3; color: white; padding: 12px 24px; margin: 20px 10px; text-align: center; border-radius: 5px; font-weight: bold; text-decoration: none; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .image-container { text-align: center; margin: 30px 0; }
        footer { background-color: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #666; color: white; padding: 5px 10px; margin: 5px; border-radius: 3px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            .container { padding: 10px; }
            h1 { font-size: 28px; }
            h2 { font-size: 24px; }
        }
