/* =========================================
   ESTILO PROFESIONAL "CLEAN CLOUD"
   ========================================= */

/* Fuentes y Reset */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; /* La fuente que usan las Apps modernas */
}

body {
    background-color: #f3f4f6; /* Gris muy suave, no blanco puro */
    color: #1f2937;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Barra Superior */
.navbar {
    background: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: #2563eb; font-size: 1.4rem; }
.logo span { color: #2563eb; }

.user-info {
    font-size: 0.85rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px; height: 8px;
    background-color: #10b981; /* Verde online */
    border-radius: 50%;
    display: inline-block;
}

/* Contenedor Central */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

/* Tarjeta de Descarga */
.download-card {
    background: white;
    width: 100%;
    max-width: 480px;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s;
}

.download-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Icono del Archivo */
.file-icon {
    font-size: 4rem;
    color: #6b7280;
    margin-bottom: 20px;
    background: #f3f4f6;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.file-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #111827;
    word-break: break-all;
}

/* Detalles del archivo */
.file-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #4b5563;
}

.detail-item i { margin-right: 5px; color: #9ca3af; }

/* Badge de Seguridad */
.security-badge {
    background-color: #ecfdf5;
    color: #059669;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid #d1fae5;
}

.security-badge i { margin-right: 5px; }

/* Botón de Acción (EL QUE DA DINERO) */
.download-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background-color: #2563eb; /* Azul confiable (tipo Facebook/Windows) */
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    transition: background-color 0.2s;
}

.download-btn:hover {
    background-color: #1d4ed8;
}

.download-btn:active {
    transform: scale(0.98);
}

.wait-text {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #9ca3af;
}

/* Footer */
.fake-footer {
    margin-top: 40px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
}

.links {
    margin: 10px 0;
}
.links span { cursor: pointer; }
.links span:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 500px) {
    .download-card { padding: 30px 20px; }
    .file-name { font-size: 1.1rem; }
    .navbar { padding: 15px 20px; }
}