/* Loading Screen — Allohaus branded, Accurate-style dots */
.loading-screen {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #281508;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loading-logo {
    width: 120px;
    height: auto;
    margin-bottom: 40px;
    opacity: 0.9;
    border-radius: 12px;
}
.loading-dots {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}
.loading-dots span {
    width: 12px;
    height: 12px;
    background: #b2c7e4;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}
.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
    0%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-18px); }
}
.loading-text {
    color: #fff9e9;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
}
