/* ============================
LIQUID GLASS – START
============================ */
/* 1. Wrapper */
.liquid-glass {
position: relative;
overflow: hidden;
/*border-radius: 16px;*/
}
/* 2. Glass layer (blur + refraction) */
.liquid-glass::before {
content: "";
position: absolute;
inset: 0;
backdrop-filter: blur(2px);
-webkit-backdrop-filter: blur(10px);
filter: url(#liquid-glass-filter);
z-index: 0;
}
/* 3. Frosted white tint */
.liquid-glass::after {
content: "";
position: absolute;
inset: 0;
background: rgba(255, 255, 255, 0.15);
z-index: 1;
}
/* 4. Content always on top */
.liquid-glass > * {
position: relative;
z-index: 2;
}
/* ============================
LIQUID GLASS - SLUT
============================ */