#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.logo {
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    border: 8px solid transparent;
    border-top: 8px solid #ff6b6b;
    border-bottom: 8px solid #ff6b6b;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    z-index: 1;
}

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