/* Container */
.amorpdf-download-wrapper {
    max-width: 600px; margin: 40px auto; text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif; color: #1e293b;
}

/* Success State */
.success-circle {
    width: 80px; height: 80px; background: #10b981; border-radius: 50%;
    margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
}
.success-circle i { font-size: 40px; color: white; width: 40px; height: 40px; }

h1 { font-size: 2rem; font-weight: 800; margin-bottom: 10px; }
.subtext { color: #64748b; margin-bottom: 30px; }

/* Buttons & Card */
.action-card {
    background: #fff; padding: 30px; border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); border: 1px solid #e2e8f0;
}
.btn-group-row { display: flex; gap: 12px; justify-content: center; }

.btn-download-large {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
    background: #EC271E; color: white; padding: 14px 20px; border-radius: 10px;
    font-weight: 700; text-decoration: none; transition: 0.2s; font-size: 16px;
}
.btn-download-large:hover { background: #dc2626; transform: translateY(-2px); color: white; }

.btn-icon {
    width: 54px; height: 54px; border-radius: 10px; border: 1px solid #e2e8f0;
    background: #f8fafc; color: #475569; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.btn-icon i { font-size: 20px; }
.btn-icon:hover { background: #e2e8f0; color: #1e293b; }
.btn-icon.delete:hover { background: #fee2e2; border-color: #fecaca; color: #ef4444; }

.back-link { display: inline-block; margin-top: 30px; color: #64748b; font-weight: 500; }

/* Modal */
.amor-modal {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    z-index: 99999; display: flex; align-items: center; justify-content: center;
}
.amor-modal.hidden { display: none !important; }

.amor-modal-content {
    background: white; padding: 40px; border-radius: 24px; width: 90%; max-width: 420px;
    text-align: center; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}
.amor-modal-header h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 25px; }

.amor-timer-big {
    display: flex; justify-content: center; gap: 8px; margin-bottom: 25px;
}
.time-unit { display: flex; flex-direction: column; align-items: center; min-width: 50px; }
.time-unit span { font-size: 2.2rem; font-weight: 800; line-height: 1; color: #EC271E; }
.time-unit label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #94a3b8; margin-top: 5px; }
.time-sep { font-size: 2.2rem; font-weight: 800; color: #cbd5e1; margin-top: -5px; }

.amor-modal-note { font-size: 0.9rem; color: #64748b; margin-bottom: 30px; line-height: 1.5; }

.btn-delete-action {
    background: #EC271E; color: white; border: none; padding: 14px; width: 100%;
    border-radius: 12px; font-weight: 700; cursor: pointer; margin-bottom: 10px;
}
.btn-delete-action:hover { background: #dc2626; }
.btn-cancel { background: transparent; border: none; color: #64748b; cursor: pointer; font-weight: 600; padding: 10px; }

/* Deleted State */
.deleted-state { padding: 60px 20px; background: #fff; border-radius: 20px; border: 1px solid #e2e8f0; }
.deleted-icon-wrapper { 
    width: 80px; height: 80px; background: #f1f5f9; border-radius: 50%; margin: 0 auto; 
    display: flex; align-items: center; justify-content: center; 
}
.btn-home {
    display: inline-flex; align-items: center; gap: 8px; background: #0f172a; color: white;
    padding: 12px 24px; border-radius: 10px; text-decoration: none; font-weight: 600; margin-top: 25px;
}
.btn-home:hover { background: #334155; color: white; }