/* ===== CONTENEDOR ===== */
.dev-container {
    min-height: calc(100vh - 120px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

/* ===== TARJETA ===== */
.dev-card {
    background: #08084f;
    border-radius: 14px;
    padding: 40px 30px;
    text-align: center;
    max-width: 420px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* ===== LOADER ===== */
.loader {
    width: 55px;
    height: 55px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto 25px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== TEXTO ===== */
.dev-card h1 {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.dev-card p {
    font-size: 14px;
    color: #dce3ff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.dev-note {
    font-size: 12px;
    color: #b8c6ff;
    letter-spacing: 1px;
}
