/* ===============================
   WPTackle Standby Overlay PRO
================================ */

html.wptackle-locked,
body.wptackle-locked {
  overflow: hidden;
  height: 100%;
}

/* Overlay */
.wptackle-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* Background */
.wptackle-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wptackle-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: wptackle-zoom 18s ease-in-out infinite alternate;
}

@keyframes wptackle-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.wptackle-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.65)
  );
  backdrop-filter: blur(6px);
}

/* UI */
.wptackle-ui {
  position: relative;
  z-index: 2;
  max-width: 640px;
  width: 100%;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  color: #fff;
}

/* Text */
.wptackle-text {
  max-width: 520px;
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  line-height: 1.6;
  text-shadow: 0 6px 18px rgba(0,0,0,.45);
}

.wptackle-text--fade_up {
  animation: fadeUp .9s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Button */
.wptackle-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 38px;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  background: var(--wptackle-btn-bg);
  color: var(--wptackle-btn-fg);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  transition: all .35s ease;
}

.wptackle-btn:hover {
  background: var(--wptackle-btn-hover);
  transform: translateY(-2px);
}

/* Audio hidden */
.wptackle-audio-wrap {
  display: none;
}

/* Exit */
.wptackle-exit {
  animation: exitFade .4s ease forwards;
}

@keyframes exitFade {
  to { opacity: 0; }
}

/* Mobile */
@media (max-width: 480px) {
  .wptackle-ui {
    padding: 22px 18px;
    gap: 18px;
  }

  .wptackle-btn {
    width: 100%;
    max-width: 260px;
  }
}
