/**
 * Global bubbly gradient + particles background (same as login page).
 * Applied project-wide via base/head.html.
 */
body {
    position: relative;
    min-height: 100vh;
}

/* Keep wrappers transparent so the gradient shows through everywhere */
.page-wrapper,
.page-container,
.main-content {
    background: transparent !important;
}

/* Bubbly gradient background - fixed behind all content */
.global-gradient-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, #0b2235 0%, #0f3145 38%, #1a3d52 62%, #157a52 82%, #1ca161 100%);
    animation: globalRotateSlow 26s infinite alternate ease-in-out;
    z-index: -2;
    pointer-events: none;
}

@keyframes globalRotateSlow {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.02); }
    100% { transform: rotate(-2deg) scale(1.04); }
}

/* Floating particles */
.global-particle-field {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.global-particle-field span {
    position: absolute;
    display: block;
    width: 7px;
    height: 7px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(28, 161, 97, 0.35);
    animation: globalFloatParticle 20s infinite linear;
}

@keyframes globalFloatParticle {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    20% { opacity: 0.6; }
    100% { transform: translateY(-20vh) scale(1.2); opacity: 0; }
}
