/* Archivo: styles.css */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff9a9e, #fad0c4, #fbc2eb);
    background-size: 400% 400%;
    animation: gradientBG 6s infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.coming-soon {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin: 0 auto;
    animation: popUp 1.2s ease;
}

@keyframes popUp {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

h1 {
    font-size: 2.5rem;
    color: #ff4e50;
    text-shadow: 2px 2px #ffc371;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 5px solid transparent;
    border-top: 5px solid #ff4e50;
    border-bottom: 5px solid #ffc371;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
