/* -------------------------------------------------------------------
   FLOATING BACKGROUND CARDS
------------------------------------------------------------------- */
.floating-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    /* Behind everything */
    pointer-events: none;
    /* Let clicks pass through */
    overflow: hidden;
    /* Extra subtle dark gradient on top just to be safe */
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 9, 7, 0.4) 100%);
}

.floating-card {
    position: absolute;
    width: clamp(150px, 15vw, 300px);
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-lg);
    opacity: 0.12;
    /* More visible now */
    filter: grayscale(100%) blur(1px);
    /* Less blur for clarity */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    /* Animation applied via JS inline style for randomness */
}