/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #0f172a; /* Fondo oscuro sólido de base */
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    overflow: hidden; /* Importante para que no aparezcan barras de scroll */
    position: relative;
}

/* --- Elementos de fondo (Blobs) --- */
.blob {
    position: absolute;
    filter: blur(80px); /* El efecto difuminado */
    z-index: 0;
    opacity: 0.7;
    border-radius: 50%;
}

.blob-1 {
    top: 10%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: #4f46e5; /* Indigo */
    
    /* ANIMACIÓN AQUI: Nombre | Duración | Infinito | Alternar dirección */
    animation: move-1 20s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: #0ea5e9; /* Sky Blue */
    
    /* Animación diferente para que no se vean sincronizados */
    animation: move-2 25s infinite alternate-reverse ease-in-out;
}

/* --- Definición del movimiento (Keyframes) --- */

@keyframes move-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(300px, 100px) scale(1.1);
    }
    66% {
        transform: translate(100px, 400px) scale(0.9);
    }
    100% {
        transform: translate(0, 200px) scale(1);
    }
}

@keyframes move-2 {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-300px, -200px) rotate(180deg);
    }
    100% {
        transform: translate(-100px, -50px) rotate(360deg);
    }
}
/* ----------------------------------- */

/* Tarjeta principal (Glassmorphism) */
.card {
    background: rgba(255, 255, 255, 0.05); /* Transparencia */
    backdrop-filter: blur(20px); /* Efecto vidrio borroso */
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    z-index: 10; /* Encima de los blobs */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.icon-container {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.gear-icon {
    width: 80px;
    height: 80px;
    stroke: #38bdf8;
    animation: spin 8s linear infinite;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #38bdf8;
    color: #0f172a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(56, 189, 248, 0.4);
    background: #7dd3fc;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    h1 { font-size: 2rem; }
    .card { padding: 2rem 1.5rem; }
    /* Ajuste de tamaño de blobs en móvil */
    .blob-1 { width: 300px; height: 300px; }
    .blob-2 { width: 250px; height: 250px; }
}
/* ... resto de tu CSS arriba ... */

/* Estilos para el Copyright */
.footer-note {
    font-size: 0.85rem;          /* Letra pequeña */
    color: #94a3b8;              /* Color gris suave (Slate 400) */
    margin-top: 2.5rem;          /* Espacio arriba */
    padding-top: 1.5rem;         /* Espacio interno arriba */
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Línea divisoria muy sutil */
    letter-spacing: 0.5px;       /* Un poco de espacio entre letras */
}