/* ... (previous content) ... */

/* Loader Wrapper Base Styles (merged from inline) */
/* Loader Wrapper Base Styles (merged from inline) */
.loader-wrapper {
    background-color: #000;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 200000;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Transition settings: Shrink first (1.5s), then Fade (0.5s) */
    transition: clip-path 1.5s ease-in-out, opacity 0.5s ease 1.5s, visibility 0s 2s;

    /* Initial State: Fully visible, covering screen */
    clip-path: circle(150% at center);
    opacity: 1;
    visibility: visible;
}

/* Hide State: Shrinks to center (edges fade first) */
body.loaded .loader-wrapper {
    clip-path: circle(0% at center);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.loader-container {
    width: 100%;
    max-width: 300px;
    padding: 20px;
}

#loader-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

/* Base styles for paths */
.cls-3 {
    opacity: 1;
}

/* Specific styles for the "You" text drawing animation */
.letter-path {
    fill: transparent;

}

/* Ball (Circle) Initial State */
.circle-group {
    transform-origin: 46.93px 29.02px;
    /* Center of the circle from SVG data */
    /* Transitions handled in JS */
}

/* Glow Animation for the Blue Ball */
@keyframes pulseGlow {
    0% {
        filter: drop-shadow(0 0 0 rgba(0, 127, 249, 0));
    }

    50% {
        filter: drop-shadow(0 0 15px rgba(55, 144, 227, 0.9));
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(0, 127, 249, 0));
    }
}

.glowing {
    animation: pulseGlow 2s ease-in-out 1;
}

/* Letter Initial Styling for Immunology */
.immunology-letter {
    fill: #fff;
    /* Already filled, we just fade/move them */
    stroke: none;
}