/* Полностью замените содержимое файла: public/splash.css */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    /* Жестко задаем наш цвет */
    background-color: #bfa75e;
}

body:has(#splash-screen:not(.hidden)) #root {
    display: none;
}

#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Жестко задаем наш цвет */
    background-color: #bfa75e;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

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

.splash-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 2.5s infinite ease-in-out;
}

.splash-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff; /* Оставляем белый, на золотом фоне будет хорошо смотреться */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 0 0 10px 0;
}

.splash-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}