:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --footer: rgba(255, 255, 255, 0.45);
  --cta-locked: #2a2a2a;
  --cta-from: #ff2d8a;
  --cta-to: #ff7a45;
  --frame: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

[hidden] {
  display: none !important;
}

.page {
  width: min(560px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  text-align: center;
}

.headline {
  margin: 0;
  font-size: clamp(1.35rem, 5.4vw, 1.85rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hl {
  color: #000;
  background: #fff;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.05em 0.22em;
  border-radius: 3px;
  font-weight: 800;
}

.subheadline {
  margin: 1.15rem auto 1.5rem;
  max-width: 28rem;
  color: var(--muted);
  font-size: clamp(0.88rem, 3.4vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
}

.video-shell {
  width: min(100%, 320px);
  margin: 0 auto;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 14px;
  background: var(--frame);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.55rem;
  padding: 2.5rem 1.25rem 1.25rem;
  text-align: center;
  color: var(--muted);
  background: #0a0a0a;
}

.video-placeholder::before {
  content: "▶ Embed Panda Video aqui";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: #000;
  letter-spacing: 0.01em;
  background: #fff;
}

.video-placeholder .play-mark {
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0.4rem auto 0;
}

.video-placeholder .play-mark::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.9);
}

.video-placeholder strong {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
}

.video-placeholder .file-name {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  word-break: break-word;
}

.cta-wrap {
  margin-top: 1.5rem;
  text-align: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: min(100%, 320px);
  min-height: 3.25rem;
  padding: 0.95rem 1.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cta-from), var(--cta-to));
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 28px rgba(255, 45, 138, 0.35);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.cta .icon-unlock {
  display: none;
}

.cta[data-locked="true"],
.cta[aria-disabled="true"] {
  background: var(--cta-locked);
  color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
  pointer-events: none;
  cursor: not-allowed;
  filter: none;
}

body[data-cta-unlocked="true"] .cta:not([aria-disabled="true"]) {
  pointer-events: auto;
  cursor: pointer;
}

body[data-cta-unlocked="true"] .cta:not([aria-disabled="true"]) .icon-lock {
  display: none;
}

body[data-cta-unlocked="true"] .cta:not([aria-disabled="true"]) .icon-unlock {
  display: block;
}

.cta:not([aria-disabled="true"]):hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 34px rgba(255, 45, 138, 0.45);
}

.cta-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.cta-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  width: min(560px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 0 2.4rem;
  text-align: center;
  color: var(--footer);
  font-size: 0.72rem;
  line-height: 1.5;
}

@media (min-width: 720px) {
  .page {
    padding-top: 2.75rem;
  }

  .headline {
    font-size: 1.95rem;
  }

  .video-shell {
    width: 340px;
  }
}
