diff --git a/apps/native/src/app/title/[id].tsx b/apps/native/src/app/title/[id].tsx
index 26e6922..0fd13ef 100644
--- a/apps/native/src/app/title/[id].tsx
+++ b/apps/native/src/app/title/[id].tsx
@@ -263,34 +263,23 @@ export default function TitleDetailScreen() {
contentFit="cover"
/>
)}
- {/* Backdrop overlay: glass effect on supported devices, colored Views elsewhere */}
- {isLiquidGlassAvailable() && palette?.vibrant ? (
-
+ {/* Colored tint from palette */}
+ {palette?.darkMuted && (
+
+ )}
+ {palette?.vibrant && (
+
- ) : (
- <>
- {/* Base darkening overlay */}
-
- {/* Colored tint from palette */}
- {palette?.darkMuted && (
-
- )}
- {palette?.vibrant && (
-
- )}
- >
)}
{/* Bottom fade to background */}
-
-
-
+ {isLiquidGlassAvailable() ? (
+
+
+
+ ) : (
+
+
+
+ )}
)}