.ark-pam-hidden { display:none; }
.ark-pam { position: fixed; z-index: 999999; max-width: 360px; min-width: 280px; color: #111; background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.18); border: 1px solid rgba(0,0,0,.08); overflow: hidden; transition: transform .2s ease, opacity .2s ease; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

/* link wrapper so the whole card is clickable */
.ark-pam a.ark-pam-link { display:block; color: inherit; text-decoration: none; }

/* header + controls */
.ark-pam .ark-pam-head { display:flex; align-items:center; justify-content:space-between; padding:10px 12px; border-bottom: 1px solid rgba(0,0,0,.06); background: #f9fafb; }
.ark-pam .ark-pam-title { font-weight: 700; }
.ark-pam .ark-pam-controls { display:flex; gap:6px; }
.ark-pam .ark-pam-btn { border:0; background:#fff; width:28px; height:28px; border-radius:6px; cursor:pointer; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.ark-pam .ark-pam-btn:hover { background:#f2f4f7; }

/* body */
.ark-pam .ark-pam-body { display:flex; gap:12px; padding:12px; align-items:center; }
.ark-pam .ark-pam-img { width:72px; height:72px; background-size:cover; background-position:center; border-radius: 12px; flex-shrink: 0; }
.ark-pam .ark-pam-msg { font-size: 14px; line-height: 1.35; }

/* Flashing text animation (stronger & forced) */
.ark-pam .ark-pam-msg.ark-pam-flash { 
  animation: arkPamFlash 1s linear infinite alternate !important;
  will-change: opacity;
}
@keyframes arkPamFlash { from{ opacity: .55; } to { opacity: 1; } }

/* Shapes applied to CARD and IMAGE */
.ark-pam-shape-rectangle { border-radius: 0; }
.ark-pam-shape-rounded { border-radius: 16px; }
.ark-pam-shape-circle { border-radius: 999px; }

/* Ensure the preview image follows the selected shape too */
.ark-pam-shape-rectangle .ark-pam-img { border-radius: 0; }
.ark-pam-shape-rounded .ark-pam-img { border-radius: 16px; }
.ark-pam-shape-circle .ark-pam-img { border-radius: 999px; clip-path: circle(50% at 50% 50%); }

/* Minimized */
.ark-pam.ark-pam-minimized .ark-pam-body { display:none; }
.ark-pam.ark-pam-minimized .ark-pam-title { font-weight: 600; }
.ark-pam.ark-pam-minimized { min-width: 180px; }

/* Positions */
.ark-pam-pos-top_left { top: 16px; left: 16px; }
.ark-pam-pos-top_center { top: 16px; left: 50%; transform: translateX(-50%); }
.ark-pam-pos-top_right { top: 16px; right: 16px; }
.ark-pam-pos-middle_left { top: 50%; left: 16px; transform: translateY(-50%); }
.ark-pam-pos-middle_center { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ark-pam-pos-middle_right { top: 50%; right: 16px; transform: translateY(-50%); }
.ark-pam-pos-bottom_left { bottom: 16px; left: 16px; }
.ark-pam-pos-bottom_center { bottom: 16px; left: 50%; transform: translateX(-50%); }
.ark-pam-pos-bottom_right { bottom: 16px; right: 16px; }

/* Responsive */
@media (max-width: 480px){
  .ark-pam { max-width: 92vw; min-width: 92vw; left: 4vw !important; right: auto !important; transform: none !important; }
  .ark-pam .ark-pam-img { width:56px; height:56px; }
}
