:root {
  --bg-1: #fff6fb;
  --bg-2: #ffe4f2;
  --bg-3: #f8d6eb;
  --card: rgba(255, 255, 255, 0.68);
  --card-border: rgba(255, 255, 255, 0.82);
  --text: #63294f;
  --muted: #8d5a78;
  --accent-1: #ff4aac;
  --accent-2: #ff79c5;
  --accent-3: #ffb1df;
  --shadow: 0 24px 60px rgba(185, 87, 146, 0.18);
  --shadow-strong: 0 16px 34px rgba(214, 73, 149, 0.28);
  --max-width: 1040px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.82), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(255,196,226,.55), transparent 22%),
    radial-gradient(circle at 12% 86%, rgba(255,183,226,.42), transparent 28%),
    linear-gradient(180deg, var(--bg-1), var(--bg-2) 44%, var(--bg-3));
  overflow-x: hidden;
}
body::before, body::after {
  content: ""; position: fixed; z-index: -1; border-radius: 999px; filter: blur(26px); opacity: .42; pointer-events: none;
}
body::before { width: 220px; height: 220px; right: -42px; top: 110px; background: rgba(255, 154, 209, .65); }
body::after { width: 180px; height: 180px; left: -26px; bottom: 100px; background: rgba(255, 220, 239, .85); }
.page { width: min(100%, calc(var(--max-width) + 32px)); margin: 0 auto; padding: 16px; }
.shell {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.60), rgba(255,255,255,.44));
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 32px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
}
.lang-toggle {
  position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 4px; padding: 4px;
  border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.82); box-shadow: 0 8px 20px rgba(165, 75, 130, .12); z-index: 5;
}
.lang-toggle a {
  text-decoration: none; font-size: 12px; font-weight: 800; letter-spacing: .08em; color: var(--muted);
  padding: 8px 10px; border-radius: 999px; min-width: 44px; text-align: center;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.lang-toggle a:hover { transform: translateY(-1px); }
.lang-toggle a.active { background: linear-gradient(135deg, rgba(255,93,183,.18), rgba(255,184,225,.34)); color: var(--text); }
.hero-media { padding: 18px 18px 6px; max-width: 520px; margin: 0 auto; }
.hero-frame {
  position: relative; border-radius: 28px; overflow: hidden; background: rgba(255,255,255,.58);
  box-shadow: 0 18px 45px rgba(196, 88, 148, 0.16); border: 1px solid rgba(255,255,255,.84);
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.10));
}
.hero-frame img { display: block; width: 100%; height: auto; }
.content { padding: 8px 20px 20px; }
.content-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border-radius: 999px; background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.78); color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px;
}
.eyebrow::before { content: "✦"; color: #ff72c1; font-size: 11px; }
h1 {
  font-family: Georgia, "Times New Roman", serif; font-weight: 700; font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.08; margin: 0 0 10px; color: #6b234e;
}
.lead { margin: 0 auto 10px; font-size: clamp(0.98rem, 2.1vw, 1.12rem); line-height: 1.68; color: var(--muted); max-width: 680px; }
.tease { margin: 0 auto 12px; color: #834966; font-size: .96rem; line-height: 1.6; max-width: 620px; }
.badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 0 14px; }
.badge {
  padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid rgba(255,255,255,.8);
  color: #7c4764; font-size: .89rem; font-weight: 600;
}
.cta-wrap { display: flex; justify-content: center; margin: 10px 0 0; }
.cta-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: min(100%, 420px); min-height: 58px; padding: 15px 24px;
  border-radius: 999px; text-decoration: none; font-size: 1rem; font-weight: 800; letter-spacing: .01em; color: #fff;
  background: linear-gradient(135deg, #ff49ab, #ff76c4 46%, #ff9fd8 100%); border: 1px solid rgba(255,255,255,.45);
  box-shadow: var(--shadow-strong), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.cta-button .icon { width: 20px; height: 20px; display: inline-grid; place-items: center; font-size: 18px; }
.cta-button:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 24px 46px rgba(214, 73, 149, .34), inset 0 1px 0 rgba(255,255,255,.35); filter: saturate(1.04); }
.cta-button:active { transform: translateY(0) scale(.985); box-shadow: 0 14px 24px rgba(214, 73, 149, .24), inset 0 2px 6px rgba(131, 17, 78, .18); }
.cta-note { margin: 10px 0 0; color: #9d6682; font-size: .84rem; }
.disclaimer { margin: 12px auto 0; color: #8a5571; font-size: .90rem; line-height: 1.62; max-width: 640px; }
.details {
  display: grid; gap: 10px; margin: 16px auto 4px; max-width: 760px;
}
.detail-card {
  border-radius: 18px; background: rgba(255,255,255,.64); border: 1px solid rgba(255,255,255,.76); padding: 12px 14px;
  box-shadow: 0 12px 24px rgba(205, 126, 170, .07); font-size: .95rem; line-height: 1.56; text-align: left;
}
.detail-card strong { color: var(--text); }
.footer { padding: 6px 10px 12px; text-align: center; }
.footer small { font-size: 10px; color: rgba(116, 56, 89, .48); letter-spacing: .08em; }
@media (min-width: 768px) {
  .page { padding: 22px 18px 18px; }
  .shell { border-radius: 34px; }
  .lang-toggle { top: 18px; right: 18px; }
  .hero-media { max-width: 860px; padding: 20px 20px 6px; }
  .content { padding: 10px 26px 22px; }
  .details { grid-template-columns: repeat(3, 1fr); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lang-toggle a, .cta-button { transition: none; }
  .hero-media, .content, .footer {
    opacity: 1;
    animation: none;
    transform: none;
    filter: none;
  }
}


@keyframes heroReveal {
  from { opacity: 0; transform: translateY(16px) scale(.985); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes contentReveal {
  from { opacity: 0; transform: translateY(12px); filter: blur(7px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-media {
  opacity: 0;
  animation: heroReveal .9s cubic-bezier(.2,.78,.2,1) .08s forwards;
}
.content {
  opacity: 0;
  animation: contentReveal .75s cubic-bezier(.2,.78,.2,1) .62s forwards;
}
.footer {
  opacity: 0;
  animation: contentReveal .7s cubic-bezier(.2,.78,.2,1) .78s forwards;
}
