/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--Surface-Gradient, linear-gradient(135deg, #010810 0%, #021720 70%, #021720 100%));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out;
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 80px;
    height: 80px;
    animation: breathing 2s ease-in-out infinite;
    box-shadow: 0 0 240px 0 rgba(255, 255, 255, 0.06);
}

@keyframes breathing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .loading-logo {
        width: 60px;
        height: 60px;
    }
}