* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
}

header .logo h1 {
    font-size: 4rem;
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}

main {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
    animation: fadeInUp 1s ease-out;
}

.content h2 {
    font-size: 2.5rem;
    color: #1a7fa0;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2193b0 0%, #6dd5ed 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(33, 147, 176, 0.4);
    animation: pulse 2s infinite;
}

footer {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-top: 2rem;
    animation: fadeIn 1.5s ease-out;
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    header .logo h1 {
        font-size: 2.5rem;
    }

    .content h2 {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    main {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    header .logo h1 {
        font-size: 2rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .coming-soon-badge {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}
