@@ -216,7 +216,7 @@ export const AnalysisSection = ({ id }: AnalysisSectionProps) => {
216216 return (
217217 < section
218218 id = { id }
219- className = "relative flex w-full flex-col items-center justify-center overflow-hidden bg-background-1 py-6 md:py-8"
219+ className = "relative flex w-full flex-col items-center justify-center overflow-hidden bg-transparent py-6 md:py-8"
220220 ref = { ref }
221221 >
222222 < div className = "mx-auto flex w-full max-w-[95%] flex-col-reverse items-center px-2 md:max-w-[90%] md:flex-row md:gap-8 md:px-4 lg:gap-12" >
@@ -226,27 +226,27 @@ export const AnalysisSection = ({ id }: AnalysisSectionProps) => {
226226 animate = { inView ? { opacity : 1 , y : 0 } : { opacity : 0 , y : 20 } }
227227 transition = { { duration : 0.4 , ease : 'easeOut' } }
228228 >
229- < div className = "relative w-full overflow-hidden rounded-lg border border-background-3/20 bg-background-2 shadow-xl " >
229+ < div className = "relative w-full overflow-hidden rounded-lg border border-white/10 bg-gradient-to-br from-white/8 to-white/4 backdrop-blur-md " >
230230 < div className = "flex flex-col gap-3 p-3" >
231231 < div className = "flex flex-col gap-3 md:flex-row" >
232232 < div className = "flex flex-col md:w-1/2" >
233- < div className = "flex flex-col overflow-hidden rounded border border-white/10" >
234- < div className = "w-full rounded-t-sm bg-background-1/60 p-2 text-left text-sm font-medium text-primary/80" >
233+ < div className = "flex flex-col overflow-hidden rounded border border-white/10 bg-gradient-to-br from-white/8 to-white/4 backdrop-blur-md " >
234+ < div className = "w-full rounded-t-sm bg-white/5 p-2 text-left text-sm font-medium text-primary/80" >
235235 Spassky, Boris V.
236236 </ div >
237237 < div className = "relative aspect-square w-full" >
238238 < div className = "aspect-square h-full w-full" >
239239 < AnalysisChessboard forceKey = { renderKey } />
240240 </ div >
241241 </ div >
242- < div className = "rounded-b-sm bg-background-1/60 p-2 text-left text-sm font-medium text-primary/80" >
242+ < div className = "rounded-b-sm bg-white/5 p-2 text-left text-sm font-medium text-primary/80" >
243243 Petrosian, Tigran V
244244 </ div >
245245 </ div >
246246 </ div >
247247 < div className = "flex flex-col gap-3 md:w-1/2" >
248248 < motion . div
249- className = "min-h-0 flex-1 overflow-hidden rounded border border-white/10"
249+ className = "min-h-0 flex-1 overflow-hidden rounded border border-white/10 bg-gradient-to-br from-white/8 to-white/4 backdrop-blur-md "
250250 initial = { { opacity : 0 , y : 20 } }
251251 animate = {
252252 inView ? { opacity : 1 , y : 0 } : { opacity : 0 , y : 20 }
@@ -274,7 +274,7 @@ export const AnalysisSection = ({ id }: AnalysisSectionProps) => {
274274 />
275275 </ motion . div >
276276 < motion . div
277- className = "flex-shrink-0 overflow-hidden rounded border border-white/10"
277+ className = "flex-shrink-0 overflow-hidden rounded border border-white/10 bg-gradient-to-br from-white/8 to-white/4 backdrop-blur-md "
278278 initial = { { opacity : 0 , y : 20 } }
279279 animate = {
280280 inView ? { opacity : 1 , y : 0 } : { opacity : 0 , y : 20 }
@@ -294,7 +294,7 @@ export const AnalysisSection = ({ id }: AnalysisSectionProps) => {
294294 }
295295 transition = { { duration : 0.3 , delay : 0.6 } }
296296 >
297- < div className = "h-full w-full overflow-hidden rounded border border-white/10 bg-background-1/60 " >
297+ < div className = "h-full w-full overflow-hidden rounded border border-white/10 bg-gradient-to-br from-white/8 to-white/4 backdrop-blur-md " >
298298 < MovesByRating
299299 moves = { analysisMockData . movesByRating }
300300 colorSanMapping = { analysisMockData . colorSanMapping }
@@ -303,7 +303,7 @@ export const AnalysisSection = ({ id }: AnalysisSectionProps) => {
303303 </ div >
304304 </ motion . div >
305305 < motion . div
306- className = "h-64 overflow-hidden rounded border border-white/10 md:w-1/2"
306+ className = "h-64 overflow-hidden rounded border border-white/10 bg-gradient-to-br from-white/8 to-white/4 backdrop-blur-md md:w-1/2"
307307 initial = { { opacity : 0 , y : 20 } }
308308 animate = {
309309 inView ? { opacity : 1 , y : 0 } : { opacity : 0 , y : 20 }
0 commit comments