* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Kanit", sans-serif;
}

body {
    background: linear-gradient(135deg, #03120E, #26413C);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #F5F3F5;
}

.splash-screen {
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.contenido-bienvenida h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #F5F3F5;
}

.contenido-bienvenida p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #26413C;
    border-top: 4px solid #F5F3F5;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
