* { box-sizing: border-box; }
html { color-scheme: light; }
body {
  margin: 0;
  background: #fff;
  color: #202020;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible { outline: 3px solid #215eae; outline-offset: 5px; }
.intro {
  width: min(1120px, 100%);
  margin: auto;
  padding: 28px 24px 42px;
  text-align: center;
}
.sponsored {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 20px;
  color: #666;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
}
.sponsored::before, .sponsored::after {
  content: "";
  width: 28px;
  height: 1px;
  background: #ded6d6;
}
h1 {
  max-width: 1100px;
  margin: 0 auto 26px;
  color: #e92429;
  font-size: clamp(30px, 3.35vw, 46px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.08;
  text-wrap: balance;
}
.preview { max-width: 1024px; margin: 0 auto 22px; }
.preview-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f3ede5;
  box-shadow: 0 8px 24px #28180a15;
}
.preview-panels {
  display: block;
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.5;
  min-height: 300px;
}
.preview-panels > div { min-width: 0; overflow: hidden; }
.preview-panels img { display: block; width: 100%; height: 100%; object-fit: cover; }
.drink-panel { position: absolute; inset: 0 auto 0 0; width: 56%; height: 100%; }
.drink-panel img { object-position: 100% center; }
.woman-panel {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  clip-path: polygon(56% 0, 100% 0, 100% 100%, 44% 100%);
}
.woman-panel img { width: 62%; margin-left: auto; object-position: 50% 0%; }
.paper-tear {
  position: absolute;
  z-index: 2;
  left: 42%;
  top: -1px;
  width: 16%;
  height: calc(100% + 2px);
  pointer-events: none;
}
.play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #df2028e8;
  box-shadow: 0 4px 22px #0003;
  transition: background .2s;
}
.play::before {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid #fff9;
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}
.play svg { width: 34px; height: 38px; fill: #fff; margin-left: 6px; }
.preview-link:hover .play { background: #c61921; }
.preview figcaption { margin-top: 10px; color: #686868; font-size: 12px; line-height: 1.5; }
.copy { max-width: 810px; margin: 0 auto 22px; font-size: 18px; line-height: 1.6; }
.copy p { margin: 0 0 12px; }
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(540px, 100%);
  min-height: 64px;
  padding: 17px 28px;
  border-radius: 6px;
  background: #e92429;
  color: #fff;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: .045em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 7px 16px #bd1b1b20;
  transition: background .2s, transform .2s;
}
.cta:hover { background: #cc1b21; transform: translateY(-1px); }
.affiliate-note { max-width: 620px; margin: 13px auto 23px; color: #6b6b6b; font-size: 12px; line-height: 1.5; }
.back-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 23px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
  background: #fff;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 3px 9px #00000006;
}
.back-home:hover { border-color: #aaa; background: #fafafa; }
.disclosures { border-top: 1px solid #eddedd; background: #faf8f7; }
.disclosure-inner { max-width: 1120px; margin: auto; padding: 35px 24px 30px; }
.disclosures h2 { margin: 0 0 27px; font-size: 23px; line-height: 1.3; letter-spacing: -.015em; }
.disclosure { width: 100%; margin: 0 0 23px; }
.disclosure h3 { margin: 0 0 7px; color: #292929; font-size: 16px; line-height: 1.4; font-weight: 750; }
.disclosure p { margin: 0; color: #555; font-size: 14px; line-height: 1.7; }
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  border-top: 1px solid #e6dedd;
  padding-top: 20px;
  color: #555;
  font-size: 13px;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .85; }
  85%, 100% { transform: scale(1.45); opacity: 0; }
}
@media (min-width: 1500px) {
  .intro { width: min(1240px, 100%); }
  .preview { max-width: 1100px; }
}
@media (max-width: 650px) {
  .intro { padding: 20px 14px 30px; }
  .sponsored { margin-bottom: 15px; font-size: 11px; }
  h1 { font-size: clamp(27px, 6.7vw, 40px); line-height: 1.13; margin-bottom: 20px; }
  .desktop-break { display: none; }
  .preview { margin: 0 -6px 20px; }
  .preview-panels { aspect-ratio: 1.12; min-height: 0; }
  .preview-link { border-radius: 6px; }
  .drink-panel { width: 49%; }
  .woman-panel { clip-path: polygon(49% 0, 100% 0, 100% 100%, 37% 100%); }
  .woman-panel img { width: 69%; object-position: 50% 50%; }
  .paper-tear { left: 35%; }
  .play { width: 78px; height: 78px; left: 43%; border-width: 2px; }
  .play svg { width: 25px; height: 30px; margin-left: 5px; }
  .preview figcaption { padding: 0 8px; font-size: 11px; }
  .copy { font-size: 16px; line-height: 1.55; }
  .cta { min-height: 58px; font-size: 20px; }
  .affiliate-note { font-size: 11px; }
  .disclosure-inner { padding: 28px 20px; }
  .disclosures h2 { font-size: 22px; }
  .disclosure p { line-height: 1.65; }
  .legal-links { gap: 14px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
