mountain_path = os.path.join(BASE_PATH, 'mountain.png') if os.path.exists(mountain_path): mountain_img = pygame.image.load(mountain_path).convert_alpha() else: print("Warning: mountain.png not found!") mountain_img = pygame.Surface((1, 1), pygame.SRCALPHA) # Invisible fallback