/* ═══════════════════════════════════════════════════════════
   VISTROE PROMO SLIDER — Premium Hero Slider v2
   Slider Revolution-level quality
   ═══════════════════════════════════════════════════════════ */

/* ── Section ─────────────────────────────────────────────── */
.vps {
  position: relative;
  width: 100%;
  margin: 0;
  max-height: none;
  overflow: visible;
  background: #0f172a;
  border-radius: 4px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .16);
}

/* ── Boost Button (compact pill — top right) ─────────────── */
.vps-boost-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 32px;
  padding: 8px 14px;
  border-radius: 2px;
  background: rgba(15, 23, 42, .58);
  border: 1px solid rgba(255,255,255,.24);
  color: #fff !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none !important;
  box-shadow: 0 10px 24px rgba(2,6,23,.28), inset 0 1px 0 rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.vps-boost-btn i { font-size: 10px; }
.vps-boost-btn:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(15, 23, 42, .78);
  border-color: rgba(255,255,255,.4);
  box-shadow: 0 12px 28px rgba(2,6,23,.36), inset 0 1px 0 rgba(255,255,255,.18);
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Sound toggle ────────────────────────────────────────── */
.vps-sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 50px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15,23,42,.28), inset 0 1px 0 rgba(255,255,255,.16);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(16px) saturate(150%);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.vps-sound-toggle:hover {
  transform: translateY(-1px) scale(1.05);
  background: linear-gradient(180deg, rgba(255,255,255,.26), rgba(255,255,255,.1));
}
.vps-sound-toggle.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(235,239,244,.86));
  color: #0f172a;
  border-color: rgba(255,255,255,.48);
}
.vps-sound-toggle i { pointer-events: none; }
.vps-sound-toggle span { display: none; }

/* ── Viewport & Track ────────────────────────────────────── */
.vps-viewport {
  position: relative;
  width: 100%;
  height: 400px; /* JS overrides this per image */
  min-height: 180px;
  overflow: hidden;
  transition: height 0.45s cubic-bezier(.4,0,.2,1);
}

/* Initial fallback height on mobile before JS fires */
@media (max-width: 767px) {
  .vps-viewport { height: 280px; }
}
.vps-track {
  position: absolute;
  inset: 0;
  display: flex;
  transition: transform .65s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ── Slide ────────────────────────────────────────────────── */
.vps-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}

/* ── Blurred backdrop (fills letterbox space) ───────────── */
.vps-backdrop {
  position: absolute;
  inset: -8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.1);
  filter: blur(22px) brightness(0.38) saturate(1.3);
  z-index: 0;
  transition: transform 8s ease-out;
}
.vps-slide.is-active .vps-backdrop { transform: scale(1.02); }

/* ── Media ───────────────────────────────────────────────── */
.vps-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
}
.vps-video {
  background: #000;
  object-fit: contain;
}
.vps-slide .vps-media {
  transform: scale(1);
  transition: none;
}
.vps-slide.is-active .vps-media { transform: scale(1); }

/* ── Overlay ─────────────────────────────────────────────── */
.vps-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 55%, rgba(2,6,23,0) 0%, rgba(2,6,23,.05) 30%, rgba(2,6,23,.45) 85%, rgba(2,6,23,.7) 100%),
    linear-gradient(0deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.28) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ── Full-link ────────────────────────────────────────── */
.vps-full-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* ── Content Layer ────────────────────────────────────────── */
.vps-content-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 34px;
}

/* ══════════════════════════════════════════════════════════
   SLIDER REVOLUTION-STYLE STAGGERED ANIMATIONS
   Each element enters independently, instant reset on exit
   ══════════════════════════════════════════════════════════ */
.vps-caption {
  width: min(780px, 100%);
  padding: 0 40px;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* Default OFF state — no transition = instant reset on exit */
.vps-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateX(-36px);
  transition: none;
}
.vps-title {
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  margin: 16px 0 10px;
  line-height: 1.05;
  text-shadow: 0 4px 34px rgba(0,0,0,.7), 0 2px 14px rgba(0,0,0,.4);
  letter-spacing: -.02em;
  max-width: 800px;
  opacity: 0;
  transform: translateY(48px);
  transition: none;
}
.vps-desc {
  font-size: 18px;
  font-weight: 400;
  color: #f1f5f9;
  margin: 0 0 22px;
  line-height: 1.6;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
  opacity: 0;
  transform: translateY(30px);
  transition: none;
}
.vps-caption-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(22px);
  transition: none;
}

/* Active slide — each element animates IN with staggered delay */
.vps-slide.is-active .vps-kicker {
  opacity: 1;
  transform: translateX(0);
  transition: transform .7s cubic-bezier(.16,1,.3,1) .08s, opacity .55s ease .08s;
}
.vps-slide.is-active .vps-title {
  opacity: 1;
  transform: translateY(0);
  transition: transform .8s cubic-bezier(.16,1,.3,1) .24s, opacity .65s ease .24s;
}
.vps-slide.is-active .vps-desc {
  opacity: 1;
  transform: translateY(0);
  transition: transform .75s cubic-bezier(.16,1,.3,1) .44s, opacity .6s ease .44s;
}
.vps-slide.is-active .vps-caption-row {
  opacity: 1;
  transform: translateY(0);
  transition: transform .7s cubic-bezier(.16,1,.3,1) .6s, opacity .55s ease .6s;
}

/* ── Chip ─────────────────────────────────────────────────── */
.vps-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.14);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

/* ── CTA button ───────────────────────────────────────────── */
.vps-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #0f172a !important;
  padding: 13px 30px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease, background .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.vps-cta:hover {
  background: #f0fdf4;
  color: #0f172a !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  text-decoration: none !important;
}
.vps-cta i { font-size: 11px; transition: transform .2s; }
.vps-cta:hover i { transform: translateX(3px); }

/* ── Sidecard ─────────────────────────────────────────────── */
.vps-sidecard {
  width: 300px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(15,23,42,.86);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 20px 40px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateX(36px);
  transition: none;
}
.vps-slide.is-active .vps-sidecard {
  opacity: 1;
  transform: translateX(0);
  transition: transform .8s cubic-bezier(.16,1,.3,1) .36s, opacity .65s ease .36s;
}
.vps-sidecard-tag {
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(90deg, #10b981, #059669);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 0 4px 12px rgba(16,185,129,.3);
}
.vps-sidecard strong {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.vps-sidecard span:nth-of-type(2) {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.55;
}
.vps-sidecard-price {
  font-size: 26px;
  font-weight: 900;
  color: #fbbf24;
  margin-top: 6px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
  letter-spacing: -.02em;
}

/* ══════════════════════════════════════════════════════════
   PRICE BADGE STICKER — Etiquette pro overlay
   ══════════════════════════════════════════════════════════ */
.vps-price-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 10px 16px 14px;
  border-radius: 14px;
  background: linear-gradient(150deg, #fde68a 0%, #fbbf24 40%, #f59e0b 70%, #d97706 100%);
  border: 2px solid rgba(255,255,255,.38);
  box-shadow:
    0 10px 28px rgba(245,158,11,.5),
    0 4px 10px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.45);
  opacity: 0;
  transform: scale(.65) rotate(-8deg);
  transition: none;
}
.vps-slide.is-active .vps-price-badge {
  opacity: 1;
  transform: scale(1) rotate(-4deg);
  transition: transform .65s cubic-bezier(.34,1.56,.64,1) .68s, opacity .4s ease .68s;
}
.vps-price-badge-label {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(120,53,15,.8);
  line-height: 1;
  margin-bottom: 4px;
}
.vps-price-badge-amount {
  font-size: 20px;
  font-weight: 900;
  color: #1c1000;
  letter-spacing: -.03em;
  line-height: 1;
  white-space: nowrap;
}
/* Small notch/pin at bottom */
.vps-price-badge::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f59e0b;
  border: 2px solid rgba(255,255,255,.45);
  box-shadow: 0 3px 8px rgba(245,158,11,.5);
}

/* ── Navigation Arrows ───────────────────────────────────── */
.vps-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(.92);
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, opacity .25s, transform .25s, box-shadow .25s, border-color .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
}
/* Show arrows only when hovering the slider */
.vps:hover .vps-arrow {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}
.vps-arrow:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
}
.vps-prev { left: 18px; }
.vps-next { right: 18px; }

/* ── Bottom bar (counter + dots) ─────────────────────────── */
.vps-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 18px;
  background: linear-gradient(0deg, rgba(0,0,0,.5) 0%, transparent 100%);
}

/* ── Counter ─────────────────────────────────────────────── */
.vps-counter {
  display: flex;
  align-items: center;
  gap: 3px;
  color: rgba(255,255,255,.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.vps-counter-sep {
  color: rgba(255,255,255,.4);
  margin: 0 2px;
}

/* ── Dots / Progress Bars ────────────────────────────────── */
.vps-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.vps-dot {
  width: 36px;
  height: 3px;
  border: none;
  border-radius: 2px;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
  transition: width .25s ease, background .2s;
}
.vps-dot.is-active { width: 54px; }
.vps-dot:hover { background: rgba(255,255,255,.5); }
.vps-dot-bar {
  position: absolute;
  inset: 0;
  background: #fff;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: none;
}
.vps-dot.is-active .vps-dot-bar {
  animation: vps-progress 5s linear forwards;
}
@keyframes vps-progress {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
  /* height driven by JS */
  .vps-title { font-size: 32px; }
  .vps-content-layer { padding: 24px; }
  .vps-sidecard { width: 230px; }
}
@media (max-width: 991px) {
  /* height driven by JS */
  .vps-title { font-size: 26px; }
  .vps-desc { font-size: 14px; }
  .vps-arrow { width: 38px; height: 38px; }
  .vps-prev { left: 10px; }
  .vps-next { right: 10px; }
  .vps-content-layer { align-items: flex-end; padding-bottom: 52px; }
  .vps-sidecard { display: none !important; }
  .vps-caption { padding: 0 16px; }
}

/* ── Mobile: show only the essentials ───────────────────── */
@media (max-width: 767px) {
  /* height driven by JS */
  .vps { border-radius: 0; }

  /* Stronger gradient so text stays legible on any image */
  .vps-overlay {
    background:
      linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.18) 50%, rgba(0,0,0,.08) 100%);
  }

  /* Content sits at the very bottom, compact */
  .vps-content-layer {
    align-items: flex-end;
    padding: 0 14px 48px;
    gap: 0;
  }
  .vps-caption { padding: 0; width: 100%; }

  /* ── HIDE: non-essential elements ── */
  .vps-kicker       { display: none !important; }   /* "Featured Promotion" badge */
  .vps-desc         { display: none !important; }   /* bullet description */
  .vps-chip         { display: none !important; }   /* "Image Creative" chip */
  .vps-price-badge  { display: none !important; }   /* floating price sticker */
  .vps-sound-toggle { display: inline-flex !important; }   /* sound toggle (video) */

  /* ── KEEP: title + CTA only ── */
  .vps-title {
    font-size: 17px;
    font-weight: 800;
    max-width: 100%;
    margin: 0 0 8px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,.8);
  }
  .vps-caption-row {
    margin-top: 0 !important;
    gap: 8px;
  }
  .vps-cta {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 9px;
    box-shadow: 0 4px 14px rgba(0,0,0,.35);
  }

  /* Arrows: reduced size */
  .vps-arrow { width: 34px; height: 34px; }
  .vps-prev { left: 8px; }
  .vps-next { right: 8px; }

  /* Boost button: slightly smaller on tablet */
  .vps-boost-btn { top: 10px; right: 10px; min-height: 30px; padding: 7px 12px; font-size: 10px; }

  /* Dots: tighter */
  .vps-dot { width: 22px; }
  .vps-dot.is-active { width: 34px; }
  .vps-bottom-bar { padding: 8px 14px; gap: 10px; }
}

/* ── Small mobile: even more stripped ───────────────────── */
@media (max-width: 480px) {
  /* height driven by JS */

  .vps-content-layer { padding: 0 12px 44px; }

  /* Title slightly smaller */
  .vps-title { font-size: 16px; margin-bottom: 8px; }

  /* CTA smaller */
  .vps-cta { padding: 8px 14px; font-size: 12px; }

  /* Hide arrows — swipe only */
  .vps-arrow { display: none; }

  /* Counter: hide, keep only dots */
  .vps-counter { display: none; }
  .vps-dot { width: 18px; }
  .vps-dot.is-active { width: 28px; }
}

/* ═══════════════════════════════════════════════════════════
   PROMOTE WIDGET — Compact CTA
   ═══════════════════════════════════════════════════════════ */
.home-vpromo-zone { padding: 1px 0 8px !important; }
.home-vpromo-zone > .container {
  width: 100%; max-width: 1150px; padding: 0 4px; box-sizing: border-box;
}
.home-vpromo-zone .vps,
.home-vpromo-zone .vps-promote-wrap,
.home-vpromo-zone .vps-promote-shell {
  width: 100%; max-width: 100%; box-sizing: border-box;
}
.vps-promote-wrap { padding: 14px 0 12px; }
.vps-promote-mobile { display: none; }
.vps-promote-shell {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0f172a 0%, #13231a 100%);
  border: 1px solid rgba(148,163,184,.14);
  box-shadow: 0 12px 34px rgba(15,23,42,.10);
}
.vps-promote-copy { min-width: 0; }
.vps-promote-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  color: #86efac !important;
  border: 1px solid rgba(34,197,94,.18);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.vps-promote-title {
  margin-top: 10px;
  color: #f8fafc !important;
  font-size: 26px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.03em;
}
.vps-promote-text {
  margin-top: 8px;
  max-width: 680px;
  color: rgba(226,232,240,.72) !important;
  font-size: 13px;
  line-height: 1.6;
}
.vps-promote-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}
.vps-promote-mini-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.vps-promote-mini-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(226,232,240,.75) !important;
  font-size: 12px;
  font-weight: 600;
}
.vps-promote-mini-meta i { color: #4ade80 !important; }
.vps-promote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 210px;
  min-height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff !important;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(16,185,129,.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.vps-promote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,185,129,.42);
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Dual placement: desktop vs mobile ───────────────────── */
.vps-place--mobile { display: none; }
@media (max-width: 767px) {
  .vps-place--desktop { display: none; }
  .vps-place--mobile  { display: block; }
}

/* Force visual order in flex column container */
body#home > .content > section#home-search-box { order: 0 !important; }
body#home > .content > .vps-place--desktop      { order: 1 !important; }
/* ═══════════════════════════════════════════════════════════
   POPUP MODAL (Submit Promotion)
   ═══════════════════════════════════════════════════════════ */
.vps-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vps-popup-overlay.is-open {
  display: flex;
}
.vps-popup {
  position: relative;
  width: 100%;
  max-width: 600px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
  padding: 40px;
  max-height: 90vh;
  overflow-y: auto;
  animation: vpsPopupFade 0.3s ease-out forwards;
}
@keyframes vpsPopupFade {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.vps-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
}
.vps-popup-close:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.vps-popup-header {
  text-align: center;
  margin-bottom: 30px;
}
.vps-popup-icon {
  width: 64px;
  height: 64px;
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
}
.vps-popup-header h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 800;
  color: #0f172a;
}
.vps-popup-header p {
  margin: 0;
  color: #64748b;
  font-size: 15px;
}
.vps-popup-login {
  text-align: center;
  padding: 20px 0;
}
.vps-popup-login p {
  color: #475569;
  margin-bottom: 20px;
  font-size: 16px;
}
.vps-popup-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #16a34a;
  color: white !important;
  text-decoration: none !important;
  border-radius: 12px;
  font-weight: 700;
  transition: background 0.2s;
}
.vps-popup-login-btn:hover {
  background: #15803d;
}
.vps-popup-upload {
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  cursor: pointer;
  background: #f8fafc;
  transition: all 0.2s ease;
  margin-bottom: 24px;
  position: relative;
}
.vps-popup-upload:hover, .vps-popup-upload.is-dragover {
  border-color: #16a34a;
  background: rgba(22, 163, 74, 0.03);
}
.vps-popup-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}
.vps-popup-upload-content svg {
  color: #94a3b8;
  margin-bottom: 12px;
}
.vps-popup-upload-content p {
  margin: 0 0 4px;
  font-weight: 600;
  color: #334155;
  font-size: 16px;
}
.vps-popup-upload-content small {
  color: #94a3b8;
  font-size: 13px;
}
.vps-popup-preview {
  position: absolute;
  inset: 0;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vps-popup-preview img, .vps-popup-preview video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.vps-popup-prev-remove {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.vps-popup-prev-remove:hover {
  background: rgba(220,38,38,0.9);
}
.vps-popup-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vps-popup-fields input[type="text"],
.vps-popup-fields input[type="url"],
.vps-popup-fields textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  color: #334155;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.vps-popup-fields input[type="text"]:focus,
.vps-popup-fields input[type="url"]:focus,
.vps-popup-fields textarea:focus {
  border-color: #16a34a;
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}
.vps-popup-fields textarea {
  resize: vertical;
  min-height: 80px;
}
.vps-popup-submit {
  margin-top: 24px;
  width: 100%;
  padding: 16px;
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}
.vps-popup-submit:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}
@media (max-width: 640px) {
  .vps-popup {
    padding: 24px 20px;
    border-radius: 20px 20px 0 0;
    position: absolute;
    bottom: 0;
    max-width: 100%;
    animation: vpsPopupSlideUp 0.3s ease-out forwards;
  }
  .vps-popup-overlay {
    align-items: flex-end;
    padding: 0;
  }
  @keyframes vpsPopupSlideUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
  }
}
