/* --- SYSTEM ANIMATIONS --- */
@keyframes systemBreathing {
    0% {
        --system-pulse: 1;
        opacity: 1;
    }

    50% {
        --system-pulse: 0.7;
        opacity: 0.8;
    }

    100% {
        --system-pulse: 1;
        opacity: 1;
    }
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dropDownPrint {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes centerDropDown {
    0% {
        opacity: 0;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- LOADING SYSTEM --- */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 10100;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    pointer-events: auto;
}

#loading-screen img {
    width: 150px;
    animation: spin 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    transform-origin: center center;
    display: block;
}

#content-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.content-spinner {
    width: 100px;
    animation: spin 3s linear infinite;
}

/* --- GLOBAL UTILITIES --- */
.security-protocol-banner {
    background: #000000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10001;
    border-bottom: 2px solid #000;
    line-height: 1.4;
}

.care-template {
    padding: 30px 30px 100px 30px;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Arial Black', sans-serif !important;
}

/* Hide scrollbar utility */
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* --- GLOBAL RESETS --- */
body {
    background-color: transparent;
}

*::-webkit-scrollbar {
    display: none;
}

* {
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-sizing: border-box;
}

/* --- DOT INDICATORS (Mission Record) --- */
.dot {
    width: 12px;
    height: 12px;
    border: 3px solid #000;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.dot.active {
    background: #000;
    transform: scale(1.3);
}