/* 
 * loading.css
 * Simplified Viking-themed loading animation with just the spinning circle
 */

/* Loading screen container */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000; /* Above everything */
    transition: opacity 1s ease-out;
}

/* Rune circle container - keeping the name for consistency */
.rune-circle {
    position: relative;
    width: 120px;
    height: 120px;
}

/* Rotating outer circle with runes - the only element we're keeping */
.rune-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top: 5px solid #ff8800;
    border-right: 5px solid rgba(255, 136, 0, 0.3);
    border-bottom: 5px solid rgba(255, 136, 0, 0.1);
    border-left: 5px solid rgba(255, 136, 0, 0.5);
    animation: spin 2s linear infinite;
    box-shadow: 
        0 0 15px rgba(255, 136, 0, 0.5),
        0 0 30px rgba(255, 136, 0, 0.3),
        inset 0 0 15px rgba(255, 136, 0, 0.3);
}

/* Animations */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hidden state for when loading is complete */
.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}