/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.wolf-emblem {
    width: 120px;
    height: 120px;
    animation: breathe 2s ease-in-out infinite;
    border-radius: 50%;
    overflow: visible;
    padding: 10px;
}

.wolf-emblem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.loading-text {
    margin-top: 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Opening Panels Animation */
.opening-panels {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: none;
}

.panel {
    position: absolute;
    width: 100%;
    height: 50%;
    background: var(--black);
    transition: transform 1.5s cubic-bezier(0.8, 0, 0.2, 1);
}

.panel-top {
    top: 0;
}

.panel-bottom {
    bottom: 0;
}

.panels-open .panel-top {
    transform: translateY(-100%);
}

.panels-open .panel-bottom {
    transform: translateY(100%);
}