:root {
  --bg: #030103;
  --text: #fff;
  --muted: #c9c4c5;
  --pink: #ff174f;
  --gold: #ffd34d;
  --gold-line: rgba(225, 176, 123, 0.72);
  --line: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; margin: 0; }
body {
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 23, 79, 0.18), transparent 19rem),
    radial-gradient(circle at 50% 100%, rgba(225, 176, 123, 0.08), transparent 18rem),
    #030103;
  font-family: Arial, Helvetica, sans-serif;
}
a, button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

.app-shell {
  position: relative;
  width: min(100%, 430px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 18px 14px 14px;
  overflow: hidden;
}
.app-shell::before {
  content: "";
  position: fixed;
  inset: 8px calc((100vw - min(100vw, 430px)) / 2 + 8px);
  border: 1px solid var(--gold-line);
  border-radius: 26px;
  pointer-events: none;
}
.brand { display: grid; justify-items: center; margin: 8px 0 12px; }
.brand-word {
  color: var(--pink);
  font-size: clamp(2.4rem, 12vw, 3.25rem);
  font-style: italic;
  font-weight: 1000;
  letter-spacing: -0.04em;
  line-height: 0.86;
  text-shadow: 0 10px 24px rgba(255, 23, 79, 0.26);
}
.tagline {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.catalog-head { margin: 8px 0 14px; }
.catalog-head h1 { margin: 0; font-size: clamp(1.7rem, 8vw, 2.2rem); text-transform: uppercase; }
.catalog-head p { margin: 6px 0 0; color: var(--muted); font-weight: 700; }
.catalog-grid { display: grid; gap: 12px; padding-bottom: 16px; }
.series-card {
  display: grid;
  grid-template-columns: 116px 1fr;
  min-height: 118px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
}
.series-card img { width: 116px; height: 100%; object-fit: cover; }
.series-card div { display: grid; align-content: center; gap: 6px; padding: 12px; }
.series-card h2 { margin: 0; font-size: 1.3rem; letter-spacing: .03em; }
.series-card p { margin: 0; color: var(--muted); font-size: .82rem; font-weight: 800; }
.price-pill { color: var(--gold); font-weight: 1000; }

.hero { display: flex; min-height: calc(100svh - 42px); flex-direction: column; align-items: center; text-align: center; }
.hero h1 {
  margin: 2px 0 0;
  font-size: clamp(3.7rem, 18vw, 5rem);
  line-height: .82;
  text-transform: uppercase;
  color: rgba(255,255,255,.96);
  text-shadow: 0 12px 30px rgba(0,0,0,.65);
}
.episode {
  margin: 10px 0 12px;
  color: rgba(255,255,255,.94);
  font-size: clamp(.92rem, 4vw, 1.05rem);
  font-weight: 1000;
  text-transform: uppercase;
}
.episode strong { color: var(--pink); }

.preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.46);
  border-radius: 13px;
  background: #050505;
  box-shadow: 0 0 22px rgba(255,23,79,.3), inset 0 -42px 80px rgba(0,0,0,.72);
}
.preview-frame > img, .preview-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.preview-video { z-index: 3; display: none; background: #000; }
.locked-bg {
  z-index: 4; display: none; filter: blur(.6px) brightness(.86) saturate(1.16) contrast(1.05); transform: scale(1.01);
}
.media-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.03), rgba(0,0,0,.72)),
    radial-gradient(circle at 50% 52%, transparent 0 18%, rgba(0,0,0,.38) 66%);
}
.play-button {
  position: absolute; z-index: 2; top: 50%; left: 50%; display: grid; width: 76px; aspect-ratio: 1;
  place-items: center; border: 2px solid rgba(255,255,255,.92); border-radius: 999px;
  background: rgba(0,0,0,.62); box-shadow: 0 0 28px rgba(255,23,79,.95); transform: translate(-50%, -50%);
}
.play-button span { width: 0; height: 0; margin-left: 6px; border-top: 17px solid transparent; border-bottom: 17px solid transparent; border-left: 26px solid #fff; }
.close-video {
  position: absolute; top: 10px; right: 10px; z-index: 6; display: none; width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.42); border-radius: 999px; color: #fff; background: rgba(0,0,0,.68);
  font-size: 1.5rem; line-height: 1;
}
.locked-overlay {
  position: absolute; inset: 0; z-index: 5; display: none; place-items: center; align-content: center; gap: 10px;
  padding: 24px 18px; background: radial-gradient(circle at 50% 34%, rgba(255,23,79,.2), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.56)); backdrop-filter: blur(.4px);
}
.lock-badge {
  display: grid; width: 58px; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; background: rgba(0,0,0,.68); box-shadow: 0 0 18px rgba(255,23,79,1), 0 0 42px rgba(255,23,79,.65);
}
.lock-badge svg { width: 31px; height: 31px; fill: #f1f1f1; }
.locked-overlay h2 { max-width: 13rem; margin: 0; font-size: clamp(2.05rem, 10vw, 3.05rem); line-height: .92; text-transform: uppercase; }
.locked-overlay p { max-width: 15rem; margin: 0; color: rgba(255,255,255,.9); font-size: clamp(.88rem, 3.8vw, 1.04rem); font-weight: 700; }
.watch-text { margin: 9px 0 0; font-size: clamp(.98rem, 4.2vw, 1.18rem); font-weight: 900; }
.watch-text strong { color: var(--pink); }

.unlock-cta, .pay-now, .google-btn, .app-cta, .admin-btn {
  display: none; align-items: center; justify-content: center; width: 100%; min-height: 62px; margin-top: 10px;
  border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #fff;
  background: linear-gradient(135deg, #ff2b61 0%, #ff0048 45%, #b80034 100%);
  box-shadow: 0 16px 44px rgba(255,23,79,.48), inset 0 0 22px rgba(255,255,255,.12);
  font-size: clamp(1.18rem, 5.7vw, 1.55rem); font-weight: 1000; text-transform: uppercase;
}
.google-btn { background: rgba(255,255,255,.96); color: #141414; box-shadow: 0 12px 32px rgba(255,255,255,.12); font-size: 1rem; }
.pay-now { display: flex; }
.login-panel { display: none; width: 100%; }
.login-panel.is-visible { display: block; }
.login-panel.is-visible .google-btn { display: flex; }
.login-note { margin: 8px 0 0; color: rgba(255,255,255,.74); font-size: .74rem; font-weight: 800; }
.cta-trust-line { display: none; align-items: center; justify-content: center; gap: 5px; width: 100%; margin: 7px 0 0; color: rgba(255,255,255,.74); font-size: clamp(.62rem, 2.8vw, .76rem); font-weight: 800; white-space: nowrap; }

.is-playing .preview-video, .is-playing .close-video { display: block; }
.is-playing > img:not(.locked-bg), .is-playing .media-shade, .is-playing .play-button, .is-playing + .watch-text { display: none; }
.is-complete .locked-overlay { display: grid; }
.is-complete .locked-bg { display: block; }
.is-complete > img:not(.locked-bg), .is-complete .preview-video, .is-complete .media-shade, .is-complete .play-button, .is-complete + .watch-text { display: none; }
.hero:has(.is-complete) h1, .hero:has(.is-complete) .episode { display: none; }
.hero:has(.is-complete) .preview-frame { aspect-ratio: .76 / 1; cursor: pointer; }
.hero:has(.is-complete) .unlock-cta, .hero:has(.is-complete) .cta-trust-line { display: flex; }

.watch-page {
  overflow: visible;
  padding-bottom: 24px;
}
.unlocked-player {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 15px;
  background: #030303;
  box-shadow: 0 16px 38px rgba(0,0,0,.56), 0 0 24px rgba(255,23,79,.16);
}
.watch-page .full-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
}
.unlocked-badge {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255,23,79,.82);
  border-radius: 11px;
  background: rgba(30,0,10,.74);
  box-shadow: 0 0 18px rgba(255,23,79,.28);
  font-size: .76rem;
  font-weight: 1000;
  text-transform: uppercase;
}
.unlocked-badge svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}
.premium-mark {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  background: rgba(0,0,0,.5);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0,0,0,.72);
}
.bonus-card, .locked-message, .admin-card {
  margin-top: 14px; padding: 16px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.bonus-card {
  position: relative;
  overflow: hidden;
  padding: 19px 15px 16px;
  border-color: rgba(255,23,79,.55);
  border-radius: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 2%, rgba(255,23,79,.30), transparent 7rem),
    radial-gradient(circle at 50% 36%, rgba(255,211,77,.06), transparent 9rem),
    linear-gradient(180deg, rgba(18,4,10,.96), rgba(5,3,6,.99));
  box-shadow: 0 20px 48px rgba(0,0,0,.48), 0 0 26px rgba(255,23,79,.13), inset 0 1px 0 rgba(255,255,255,.07);
}
.gift-box {
  position: relative;
  width: 82px;
  height: 72px;
  margin: -2px auto 7px;
  filter: drop-shadow(0 0 18px rgba(255,23,79,.42));
  opacity: .96;
}
.gift-box::before {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 0;
  height: 49px;
  border-radius: 8px 8px 10px 10px;
  background:
    linear-gradient(90deg, transparent 39%, #e9144e 39% 61%, transparent 61%),
    linear-gradient(135deg, #09090d, #1c1b23);
  border: 1px solid rgba(255,255,255,.14);
}
.gift-box::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 18px;
  height: 17px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 38%, #ff3e70 38% 62%, transparent 62%),
    linear-gradient(135deg, #ff3a70, #9e002f);
}
.gift-box span::before,
.gift-box span::after {
  content: "";
  position: absolute;
  top: 0;
  width: 28px;
  height: 23px;
  border: 7px solid #ff2d65;
  border-radius: 50% 50% 10% 50%;
}
.gift-box span::before {
  left: 17px;
  transform: rotate(28deg);
}
.gift-box span::after {
  right: 17px;
  transform: scaleX(-1) rotate(28deg);
}
.bonus-kicker {
  display: inline-flex;
  margin: 0 0 6px !important;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.82) !important;
  background: rgba(255,255,255,.055);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bonus-card h2,
.locked-message h1 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(1.38rem, 6.4vw, 1.92rem);
  line-height: 1.02;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0,0,0,.65), 0 0 22px rgba(255,23,79,.16);
}
.locked-message h1 { font-size: 1.22rem; }
.bonus-card p, .locked-message p {
  margin: 7px 0;
  color: rgba(255,255,255,.9);
  font-weight: 800;
  line-height: 1.28;
}
.bonus-main {
  max-width: 22rem;
  margin-inline: auto !important;
  color: rgba(255,255,255,.82) !important;
  font-size: clamp(.92rem, 4.1vw, 1.12rem);
}
.bonus-main strong {
  display: block;
  margin: 5px 0 3px;
  color: var(--pink);
  font-size: clamp(1.32rem, 7vw, 1.9rem);
  line-height: 1;
  text-transform: uppercase;
}
.bonus-main b {
  color: #fff;
  text-transform: uppercase;
}
.bonus-time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: min(100%, 270px);
  margin: 10px auto 8px !important;
  padding: 8px 11px;
  border: 1px solid rgba(255,211,77,.8);
  border-radius: 8px;
  color: var(--gold) !important;
  background: rgba(255,211,77,.035);
  font-size: .86rem;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(255,211,77,.08);
}
.bonus-time::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 999px;
  box-shadow: inset 5px -5px 0 -4px currentColor;
}
.bonus-time strong {
  font-size: 1.25em;
}
.bonus-sub {
  max-width: 20rem;
  margin-inline: auto !important;
  color: rgba(255,255,255,.84) !important;
  font-size: .9rem;
}
.app-cta {
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  margin: 16px 2px 12px;
  padding: 0 17px;
  font-size: clamp(1.02rem, 4.7vw, 1.36rem);
  letter-spacing: 0;
  white-space: nowrap;
}
.app-cta img {
  width: 31px;
  height: 31px;
  object-fit: contain;
  flex: 0 0 auto;
}
.bonus-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.bonus-trust span {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 0 6px;
  border-left: 1px solid rgba(255,255,255,.12);
}
.bonus-trust span:first-child { border-left: 0; }
.bonus-trust svg {
  width: 20px;
  height: 20px;
  fill: var(--pink);
  filter: drop-shadow(0 0 8px rgba(255,23,79,.36));
}
.bonus-trust strong {
  color: #fff;
  font-size: clamp(.56rem, 2.55vw, .7rem);
  text-transform: uppercase;
}
.bonus-trust small {
  color: rgba(255,255,255,.78);
  font-size: clamp(.54rem, 2.35vw, .66rem);
  line-height: 1.2;
}

.reward-screen {
  display: grid;
  grid-template-rows: 42% 43% 15%;
  height: 100svh;
  min-height: 100svh;
  padding: 10px 12px 0;
  overflow: hidden;
}
.reward-screen::before {
  border-color: rgba(255,23,79,.55);
  box-shadow: inset 0 0 28px rgba(255,23,79,.08);
}
.episode-player-section {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 0;
  padding: 0 0 8px;
}
.reward-screen .brand {
  margin: 4px 0 8px;
}
.reward-screen .brand-word {
  font-size: clamp(2.35rem, 11.5vw, 3.15rem);
}
.reward-screen .tagline {
  margin-top: 3px;
  font-size: .66rem;
}
.reward-screen .unlocked-player {
  min-height: 0;
  border-radius: 13px;
}
.reward-screen .full-video {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}
.bonus-reward {
  position: relative;
  display: grid;
  grid-template-rows: 40% 60%;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,23,79,.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 185, 43, .24), transparent 36%),
    radial-gradient(circle at 50% 12%, rgba(255, 23, 79, .3), transparent 48%),
    linear-gradient(180deg, #140109 0%, #050104 52%, #090104 100%);
  box-shadow: 0 0 30px rgba(255,23,79,.22), inset 0 0 24px rgba(255,23,79,.08);
}
.confetti {
  position: absolute;
  z-index: 1;
  width: 105%;
  height: 55%;
  object-fit: cover;
  opacity: .2;
  mix-blend-mode: screen;
  pointer-events: none;
}
.confetti-left {
  top: -8%;
  left: -45%;
}
.confetti-right {
  top: -8%;
  right: -45%;
  transform: scaleX(-1);
}
.reward-art {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}
.reward-art::before {
  content: "";
  position: absolute;
  left: 7%;
  bottom: -16%;
  width: 86%;
  height: 78%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 78%, rgba(255,228,95,.96), rgba(255,145,0,.48) 24%, rgba(255,23,79,.25) 48%, transparent 73%),
    conic-gradient(from 220deg at 50% 74%, transparent 0deg, rgba(255,211,77,.42) 18deg, transparent 36deg, transparent 58deg, rgba(255,23,79,.3) 76deg, transparent 96deg, transparent 130deg, rgba(255,211,77,.3) 150deg, transparent 175deg);
  filter: blur(15px);
}
.reward-art::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 16%;
  right: 16%;
  bottom: 1%;
  height: 22%;
  border-radius: 999px;
  background:
    linear-gradient(84deg, transparent 0 12%, rgba(255,211,77,.34) 12% 14%, transparent 14% 28%, rgba(255,211,77,.28) 28% 30%, transparent 30% 45%, rgba(255,255,255,.32) 45% 47%, transparent 47% 62%, rgba(255,211,77,.25) 62% 64%, transparent 64% 100%),
    radial-gradient(ellipse, rgba(255,229,111,.76), rgba(255,23,79,.28) 48%, transparent 75%);
  filter: blur(8px);
}
.poster-fan {
  position: absolute;
  z-index: 5;
  left: 17%;
  right: 17%;
  top: 12%;
  height: 62%;
}
.poster-card {
  position: absolute;
  bottom: 0;
  width: 25%;
  height: auto;
  object-fit: initial;
  background: transparent;
  border: 1px solid rgba(255, 214, 91, .8);
  border-radius: 6px;
  box-shadow: 0 0 14px rgba(255, 185, 43, .48), 0 8px 18px rgba(0,0,0,.58);
  transform-origin: 50% 100%;
}
.poster-one {
  left: -5%;
  bottom: -2%;
  transform: rotate(-20deg);
}
.poster-two {
  left: 16%;
  z-index: 5;
  width: 29%;
  transform: rotate(-7deg);
}
.poster-three {
  left: 40%;
  z-index: 4;
  width: 29%;
  transform: rotate(7deg);
}
.poster-four {
  left: 66%;
  bottom: -2%;
  z-index: 2;
  transform: rotate(20deg);
}
.reward-copy {
  position: relative;
  z-index: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 0;
  padding: 8px 16px 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,0));
}
.reward-copy p,
.reward-copy h2 {
  margin: 0;
  text-transform: uppercase;
}
.reward-kicker {
  color: var(--pink);
  font-size: clamp(.78rem, 3.45vw, .96rem);
  font-weight: 1000;
  line-height: 1.15;
  letter-spacing: .03em;
  text-shadow: 0 0 14px rgba(255,23,79,.55);
}
.reward-access {
  margin-top: 11px !important;
  color: var(--gold);
  font-size: clamp(1rem, 4.7vw, 1.34rem);
  font-weight: 1000;
  line-height: 1;
  text-shadow: 0 0 13px rgba(255,211,77,.36);
}
.reward-copy h2 {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(3.05rem, 17vw, 4.55rem);
  font-weight: 1000;
  line-height: .78;
  letter-spacing: 0;
  text-shadow: 0 0 18px rgba(255,23,79,.34), 0 5px 20px rgba(0,0,0,.84);
}
.reward-main {
  margin-top: 13px !important;
  color: #fff;
  font-size: clamp(1.18rem, 5.4vw, 1.48rem);
  font-weight: 1000;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255,23,79,.42);
}
.reward-app {
  margin-top: 12px !important;
  color: #fff;
  font-size: clamp(.82rem, 3.65vw, 1rem);
  font-weight: 900;
  line-height: 1;
}
.reward-time {
  margin-top: 12px !important;
  color: var(--gold);
  font-size: clamp(.86rem, 3.9vw, 1.08rem);
  font-weight: 1000;
  line-height: 1;
}
.reward-cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 7px 6px 12px;
}
.reward-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 100%;
  min-height: 60px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ff2b61 0%, #ff004f 48%, #b60036 100%);
  box-shadow: 0 0 22px rgba(255,23,79,.62), 0 10px 34px rgba(255,23,79,.34), inset 0 0 18px rgba(255,255,255,.16);
  font-size: clamp(1.02rem, 4.9vw, 1.42rem);
  font-weight: 1000;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  animation: ctaPulse 1.8s ease-in-out infinite;
}
.support-line {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(.66rem, 2.9vw, .76rem);
  font-weight: 800;
}
.support-line a {
  color: var(--gold);
  text-decoration: none;
}
.cta-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  flex: 0 0 auto;
}
.cta-icon img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255,255,255,.34));
}
@keyframes ctaPulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 20px rgba(255,23,79,.54), 0 10px 34px rgba(255,23,79,.3), inset 0 0 18px rgba(255,255,255,.14); }
  50% { transform: translateY(-1px); box-shadow: 0 0 34px rgba(255,23,79,.8), 0 12px 42px rgba(255,23,79,.48), inset 0 0 22px rgba(255,255,255,.18); }
}

.admin-shell { padding-bottom: 20px; }
.admin-card { display: grid; gap: 10px; text-align: left; }
.admin-card h1 { margin: 0; }
.admin-card input, .admin-card textarea, .admin-card select {
  width: 100%; min-height: 42px; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; color: #fff;
  background: rgba(255,255,255,.08); padding: 9px 10px;
}
.admin-card select {
  color: #fff;
  background-color: rgba(255,255,255,.1);
}
.admin-card select option {
  color: #111;
  background: #fff;
}
.admin-card textarea { min-height: 74px; resize: vertical; }
.admin-row { display: grid; gap: 8px; }
.admin-btn { display: flex; min-height: 44px; margin-top: 0; font-size: .92rem; }
.danger { background: linear-gradient(135deg, #7d1028, #d51a46); }

@media (max-height: 740px) {
  .app-shell { padding-top: 12px; padding-bottom: 10px; }
  .brand { margin-top: 5px; margin-bottom: 5px; }
  .brand-word { font-size: clamp(2rem, 10vw, 2.65rem); }
  .hero h1 { font-size: clamp(3.65rem, 17vw, 4.7rem); }
  .preview-frame { aspect-ratio: 1.45 / 1; }
  .hero:has(.is-complete) .preview-frame { aspect-ratio: .84 / 1; }
  .unlock-cta { min-height: 54px; }
}
