
/* Page 1 - Circle Animation Styles */
:root {
    --finances: #F7C204;
    --relationships: #E8214C;
    --career: #0862A1;
    --self: #04AC01;
}

.page:nth-child(1) {
    background: #000000;
    position: relative;
}

#animation-wrapper {
    font-size: .2vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    color: var(--relationships);
    z-index: 1;
}

#circle-wrap {
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100em;
    height: 100em;
    margin: -50em 0 0 -50em;
    will-change: transform, opacity;
}

#circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform-origin: 50% 50%;
    will-change: transform;
}

#circle:before,
#circle:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

#circle:before {
    z-index: 1;
    opacity: 1;
    box-shadow: inset 0px 0px 25em 0px currentColor, 0px 0px 10em 1px currentColor, 0px 0px 5em 1px currentColor;
}

#circle:after {
    z-index: 3;
    opacity: .75;
    box-shadow: inset 0 0 30em 0 currentColor;
    background-image: radial-gradient(circle at 50% 50%, currentColor 0%, transparent 100%);
}

.particle {
    opacity: .5;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    width: 5em;
    height: 5em;
    margin: -2.5em 0 0 -2.5em;
    border-radius: 5em;
    will-change: transform;
    mix-blend-mode: plus-lighter;
    background: currentColor;
    box-shadow: 0px 0px 15em 0px currentColor, 0px 0px 5em 0px currentColor;
}

.welcome-text {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 1.5rem;
    color: #ffffff;
    z-index: 10;
    padding: 0;
    margin: 0;
}

.bottom-left-content {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    text-align: left;
    z-index: 10;
}

.bottom-left-content h1 {
    font-size: 3rem;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bottom-left-content p {
    font-size: 1.5rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #ffffff;
    opacity: 0.7;
    z-index: 10;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: 100px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator span {
    display: block;
    margin: 10px 0;
    animation: scrollUp 3s linear infinite;
}

.scroll-indicator span:nth-child(2) {
    animation-delay: 1s;
}

.scroll-indicator span:nth-child(3) {
    animation-delay: 2s;
}

@keyframes scrollUp {
    0% {
        transform: translateY(100px) scale(1);
        opacity: 0;
        filter: blur(0px);
    }
    20% {
        opacity: 1;
        transform: translateY(80px) scale(1);
        filter: blur(0px);
    }
    70% {
        opacity: 1;
        transform: translateY(-60px) scale(1);
        filter: blur(0px);
    }
    85% {
        opacity: 0.8;
        transform: translateY(-80px) scale(1.1);
        filter: blur(1px);
    }
    95% {
        opacity: 0.3;
        transform: translateY(-95px) scale(1.3);
        filter: blur(3px);
    }
    100% {
        transform: translateY(-100px) scale(1.5);
        opacity: 0;
        filter: blur(5px);
    }
}
