/* WebGL Gradient Canvas */
#gradient-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    --gradient-color-1: #b79afa; /* Purple */
    --gradient-color-2: #36a4f8; /* Blue */
    --gradient-color-3: #63e5f6; /* Light blue */
    --gradient-color-4: #7258e7; /* Dark purple */
}

/* Card wrapper for subtle bleed */
.card-wrapper {
    position: relative;
}

/* Frosted glass card */
.card {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.40); /* Subtle transparency */
    backdrop-filter: blur(10px); /* Strong frosted effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
}

@keyframes auroraFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}