/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(160deg, #0a0a0a, #1a1a1a);
    color: #00bfff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Contenedor principal */
.container {
    text-align: center;
    padding: 2rem;
    border: 2px solid #00bfff;
    border-radius: 10px;
    background-color: rgba(20, 20, 20, 0.85);
    box-shadow: 0 0 20px #00bfff;
    animation: fadeInContainer 2s ease-out;
}

/* Título animado */
.title-animated {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    animation: pulse 2s infinite;
}

/* Subtítulo */
.subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInText 2s ease-in forwards;
    animation-delay: 1s;
}

/* Imagen de nave */
.ship {
    margin: 0 auto;
    width: 120px;
    height: 120px;
    background: url('img/logo.png') no-repeat center;
    background-size: contain;
    opacity: 0.7;
}

/* Animación flotante */
.float {
    animation: floatShip 4s ease-in-out infinite;
}

/* Fuente sci-fi */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

/* Animaciones */
@keyframes pulse {
    0% { text-shadow: 0 0 10px #00bfff; }
    50% { text-shadow: 0 0 20px #00ffff, 0 0 30px #00bfff; }
    100% { text-shadow: 0 0 10px #00bfff; }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInContainer {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatShip {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
