@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Fraunces:opsz,wght@9..144,600;9..144,700;9..144,800&display=swap');

:root {
  --c2ef9e-bg: #111921;
  --c2ef9e-panel: #1c2833;
  --c2ef9e-panel-soft: #253441;
  --c2ef9e-text: #f7f3f5;
  --c2ef9e-muted: #dcdcdc;
  --c2ef9e-pink: #ff69b4;
  --c2ef9e-hot: #ff1493;
  --c2ef9e-graphite: #4a4a4a;
  --c2ef9e-line: rgba(255, 105, 180, 0.25);
  --c2ef9e-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  --c2ef9e-header-height: 108px;
  --c2ef9e-canvas: 430px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #0b1117;
  color-scheme: dark;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--c2ef9e-text);
  background:
    radial-gradient(circle at 16% 3%, rgba(255, 20, 147, 0.16), transparent 21rem),
    linear-gradient(145deg, #0e161e 0%, #1c2833 48%, #111921 100%);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

body.c2ef9e-lock-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.c2ef9e-shell {
  position: relative;
  width: 100%;
  max-width: var(--c2ef9e-canvas);
  min-height: 100vh;
  margin: 0 auto;
  overflow: clip;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--c2ef9e-bg);
  box-shadow: 0 0 55px rgba(0, 0, 0, 0.65);
}

.c2ef9e-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 50%;
  width: min(100%, var(--c2ef9e-canvas));
  min-height: var(--c2ef9e-header-height);
  padding: 8px 12px 9px;
  transform: translateX(-50%);
  border-bottom: 1px solid var(--c2ef9e-line);
  background: rgba(17, 25, 33, 0.96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.c2ef9e-brand-row,
.c2ef9e-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.c2ef9e-brand-row {
  min-height: 43px;
}

.c2ef9e-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--c2ef9e-text);
  text-decoration: none;
}

.c2ef9e-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 2px solid var(--c2ef9e-pink);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 16px rgba(255, 105, 180, 0.22);
}

.c2ef9e-brand span {
  overflow: hidden;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.c2ef9e-menu-trigger,
.c2ef9e-menu-close {
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--c2ef9e-line);
  border-radius: 6px;
  color: var(--c2ef9e-text);
  background: var(--c2ef9e-panel-soft);
  cursor: pointer;
}

.c2ef9e-menu-trigger span,
.c2ef9e-menu-trigger::before,
.c2ef9e-menu-trigger::after {
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--c2ef9e-pink);
  content: '';
}

.c2ef9e-menu-trigger {
  gap: 4px;
}

.c2ef9e-action-row {
  margin-top: 4px;
}

.c2ef9e-auth {
  min-height: 42px;
  flex: 1;
  border: 1px solid var(--c2ef9e-pink);
  border-radius: 5px;
  color: var(--c2ef9e-text);
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.c2ef9e-auth-login {
  background: transparent;
}

.c2ef9e-auth-register {
  border-color: var(--c2ef9e-hot);
  background: linear-gradient(135deg, var(--c2ef9e-hot), #c70b72);
}

.c2ef9e-menu-layer {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  visibility: hidden;
  align-items: stretch;
  opacity: 0;
  background: rgba(5, 9, 13, 0.84);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.c2ef9e-menu-layer.c2ef9e-menu-open {
  visibility: visible;
  opacity: 1;
}

.c2ef9e-menu-panel {
  width: min(100%, 430px);
  min-height: 100%;
  margin-left: auto;
  padding: max(18px, env(safe-area-inset-top)) 18px 24px;
  transform: translateX(28px);
  background:
    linear-gradient(160deg, rgba(255, 20, 147, 0.12), transparent 35%),
    #18232d;
  transition: transform 220ms ease;
}

.c2ef9e-menu-open .c2ef9e-menu-panel {
  transform: translateX(0);
}

.c2ef9e-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.c2ef9e-menu-title {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.c2ef9e-menu-close {
  color: var(--c2ef9e-pink);
  font-size: 1.55rem;
}

.c2ef9e-menu-links {
  display: grid;
  gap: 7px;
}

.c2ef9e-menu-links a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid rgba(220, 220, 220, 0.1);
  border-radius: 5px;
  color: var(--c2ef9e-muted);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 700;
  text-decoration: none;
}

.c2ef9e-menu-links a::after {
  color: var(--c2ef9e-hot);
  content: '\2192';
}

.c2ef9e-menu-links a:hover,
.c2ef9e-menu-links a:focus-visible {
  border-color: var(--c2ef9e-pink);
  color: #17212a;
  background: var(--c2ef9e-pink);
}

.c2ef9e-main {
  padding: calc(var(--c2ef9e-header-height) + 14px) 12px 136px;
}

.c2ef9e-eyebrow {
  margin: 0 0 7px;
  color: var(--c2ef9e-pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.c2ef9e-intro {
  padding: 21px 2px 16px;
}

.c2ef9e-intro h1 {
  max-width: 370px;
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 10vw, 3rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.c2ef9e-intro h1 span {
  color: var(--c2ef9e-pink);
}

.c2ef9e-intro p:not(.c2ef9e-eyebrow) {
  max-width: 390px;
  margin: 13px 0 0;
  color: var(--c2ef9e-muted);
  font-size: 0.94rem;
}

.c2ef9e-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 15px;
}

.c2ef9e-proof-strip div {
  min-width: 0;
  padding: 9px 5px;
  border-top: 2px solid var(--c2ef9e-hot);
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.c2ef9e-proof-strip strong,
.c2ef9e-proof-strip span {
  display: block;
}

.c2ef9e-proof-strip strong {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
}

.c2ef9e-proof-strip span {
  color: #bfc5ca;
  font-size: 0.65rem;
  line-height: 1.25;
}

.c2ef9e-slider {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  border: 1px solid var(--c2ef9e-line);
  border-radius: 7px;
  background: var(--c2ef9e-panel);
  box-shadow: var(--c2ef9e-shadow);
}

.c2ef9e-slide {
  position: absolute;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.c2ef9e-slide-active {
  visibility: visible;
  opacity: 1;
}

.c2ef9e-slide button {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.c2ef9e-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c2ef9e-slide-shade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 54px 20px 17px;
  background: linear-gradient(180deg, transparent 16%, rgba(10, 16, 22, 0.15) 38%, rgba(10, 16, 22, 0.94) 100%);
  text-align: left;
}

.c2ef9e-slide-shade strong {
  font-family: 'Fraunces', serif;
  font-size: 1.42rem;
  line-height: 1.12;
}

.c2ef9e-slide-shade span {
  margin-top: 4px;
  color: var(--c2ef9e-muted);
  font-size: 0.78rem;
}

.c2ef9e-slide-control {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  width: 38px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  color: white;
  background: rgba(17, 25, 33, 0.74);
  font-size: 1.3rem;
  transform: translateY(-50%);
  cursor: pointer;
}

.c2ef9e-slide-previous {
  left: 7px;
}

.c2ef9e-slide-next {
  right: 7px;
}

.c2ef9e-slider-dots {
  position: absolute;
  z-index: 5;
  right: 14px;
  bottom: 17px;
  display: flex;
  gap: 5px;
}

.c2ef9e-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid white;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.c2ef9e-slider-dots .c2ef9e-dot-active {
  width: 21px;
  border-radius: 8px;
  border-color: var(--c2ef9e-hot);
  background: var(--c2ef9e-hot);
}

.c2ef9e-quick-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 13px 0 25px;
}

.c2ef9e-quick-paths a,
.c2ef9e-quick-paths button {
  min-height: 54px;
  padding: 8px 6px;
  border: 1px solid rgba(220, 220, 220, 0.12);
  border-radius: 5px;
  color: var(--c2ef9e-muted);
  background: var(--c2ef9e-panel);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.c2ef9e-quick-paths a::before,
.c2ef9e-quick-paths button::before {
  display: block;
  margin-bottom: 3px;
  color: var(--c2ef9e-pink);
  font-size: 1.05rem;
  content: attr(data-icon);
}

.c2ef9e-section {
  margin-top: 28px;
}

.c2ef9e-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--c2ef9e-line);
}

.c2ef9e-section-head h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  line-height: 1.14;
}

.c2ef9e-section-head span {
  flex: 0 0 auto;
  color: var(--c2ef9e-pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.c2ef9e-question-lead {
  margin: -2px 0 13px;
  color: #c4c9ce;
  font-size: 0.85rem;
}

.c2ef9e-game-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.c2ef9e-game {
  display: block;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 220, 220, 0.11);
  border-radius: 5px;
  color: var(--c2ef9e-text);
  background: var(--c2ef9e-panel);
  text-align: left;
  cursor: pointer;
}

.c2ef9e-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--c2ef9e-graphite);
}

.c2ef9e-game span {
  display: -webkit-box;
  min-height: 36px;
  padding: 5px 4px 4px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #f1edf0;
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.16;
  text-align: center;
}

.c2ef9e-game:hover,
.c2ef9e-game:focus-visible {
  border-color: var(--c2ef9e-pink);
  outline: 2px solid rgba(255, 105, 180, 0.32);
  outline-offset: 1px;
}

.c2ef9e-answer-grid {
  display: grid;
  gap: 7px;
}

.c2ef9e-answer {
  position: relative;
  padding: 13px 13px 13px 42px;
  border-left: 3px solid var(--c2ef9e-hot);
  background: linear-gradient(90deg, rgba(255, 20, 147, 0.09), rgba(255, 255, 255, 0.025));
}

.c2ef9e-answer::before {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #19232d;
  background: var(--c2ef9e-pink);
  font-size: 0.69rem;
  font-weight: 900;
  content: '?';
}

.c2ef9e-answer h3,
.c2ef9e-review h3,
.c2ef9e-use-case h3 {
  margin: 0 0 4px;
  font-size: 0.92rem;
  line-height: 1.24;
}

.c2ef9e-answer p,
.c2ef9e-review p,
.c2ef9e-use-case p,
.c2ef9e-longcopy p {
  margin: 0;
  color: #cdd1d5;
  font-size: 0.81rem;
}

.c2ef9e-feature-table {
  overflow: hidden;
  border: 1px solid rgba(220, 220, 220, 0.12);
  border-radius: 6px;
}

.c2ef9e-feature-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  border-bottom: 1px solid rgba(220, 220, 220, 0.09);
}

.c2ef9e-feature-row:last-child {
  border-bottom: 0;
}

.c2ef9e-feature-row strong,
.c2ef9e-feature-row span {
  padding: 10px;
  font-size: 0.77rem;
}

.c2ef9e-feature-row strong {
  display: flex;
  align-items: center;
  color: #17212a;
  background: var(--c2ef9e-pink);
}

.c2ef9e-feature-row span {
  color: var(--c2ef9e-muted);
  background: var(--c2ef9e-panel);
}

.c2ef9e-review-rail {
  display: grid;
  grid-auto-columns: minmax(245px, 78%);
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  padding: 1px 1px 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--c2ef9e-hot) transparent;
}

.c2ef9e-review {
  min-height: 160px;
  padding: 15px;
  border: 1px solid var(--c2ef9e-line);
  border-radius: 5px;
  background: var(--c2ef9e-panel);
  scroll-snap-align: start;
}

.c2ef9e-review-mark {
  color: var(--c2ef9e-pink);
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  line-height: 0.8;
}

.c2ef9e-review footer {
  margin-top: 10px;
  color: #f4b1d2;
  font-size: 0.7rem;
  font-weight: 800;
}

.c2ef9e-use-cases {
  display: grid;
  gap: 8px;
}

.c2ef9e-use-case {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 13px;
  background: rgba(255, 255, 255, 0.035);
}

.c2ef9e-use-case-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--c2ef9e-pink);
  border-radius: 5px;
  color: var(--c2ef9e-pink);
  font-weight: 900;
}

.c2ef9e-longcopy {
  display: grid;
  gap: 11px;
}

.c2ef9e-longcopy article {
  padding: 14px;
  border-top: 2px solid var(--c2ef9e-graphite);
  background: rgba(255, 255, 255, 0.028);
}

.c2ef9e-longcopy h3 {
  margin: 0 0 7px;
  color: var(--c2ef9e-pink);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
}

.c2ef9e-longcopy a,
.c2ef9e-copy-link {
  color: #ff9ccc;
  font-weight: 700;
  text-underline-offset: 3px;
}

.c2ef9e-cta-band {
  margin-top: 28px;
  padding: 18px 15px;
  border: 1px solid var(--c2ef9e-hot);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 20, 147, 0.23), transparent 58%),
    var(--c2ef9e-panel);
  box-shadow: var(--c2ef9e-shadow);
}

.c2ef9e-cta-band h2 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-size: 1.45rem;
  line-height: 1.16;
}

.c2ef9e-cta-band p {
  margin: 7px 0 13px;
  color: var(--c2ef9e-muted);
  font-size: 0.82rem;
}

.c2ef9e-primary-cta {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 5px;
  color: white;
  background: linear-gradient(135deg, var(--c2ef9e-hot), #b50968);
  box-shadow: 0 8px 20px rgba(255, 20, 147, 0.22);
  font-weight: 900;
  cursor: pointer;
}

.c2ef9e-primary-cta:hover,
.c2ef9e-primary-cta:focus-visible {
  outline: 3px solid rgba(255, 105, 180, 0.42);
  outline-offset: 2px;
  filter: brightness(1.08);
}

.c2ef9e-directory {
  margin: 32px -12px 0;
  padding: 22px 12px;
  border-top: 1px solid var(--c2ef9e-line);
  background: #17212a;
}

.c2ef9e-directory h2,
.c2ef9e-brand-notes h2,
.c2ef9e-promo-shortcuts h2 {
  margin: 0 0 11px;
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
}

.c2ef9e-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.c2ef9e-directory-grid a {
  min-height: 44px;
  padding: 9px;
  border-bottom: 1px solid rgba(255, 105, 180, 0.28);
  color: var(--c2ef9e-muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.73rem;
  font-weight: 700;
  text-decoration: none;
}

.c2ef9e-directory-grid a:hover,
.c2ef9e-directory-grid a:focus-visible {
  color: var(--c2ef9e-pink);
}

.c2ef9e-brand-notes {
  margin: 0 -12px;
  padding: 22px 12px;
  background: #1c2833;
}

.c2ef9e-brand-notes p {
  margin: 0;
  color: var(--c2ef9e-muted);
  font-size: 0.81rem;
}

.c2ef9e-promo-shortcuts {
  margin: 0 -12px;
  padding: 20px 12px 22px;
  background: #202e3a;
}

.c2ef9e-promo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
}

.c2ef9e-promo-row button {
  min-height: 48px;
  padding: 5px 2px;
  border: 1px solid var(--c2ef9e-line);
  border-radius: 4px;
  color: var(--c2ef9e-text);
  background: #293946;
  font-size: 0.61rem;
  font-weight: 800;
  cursor: pointer;
}

.c2ef9e-disclaimer {
  margin: 0 -12px;
  padding: 14px 12px 20px;
  color: #b8bec3;
  background: #111921;
  font-size: 0.7rem;
}

.c2ef9e-copyright {
  margin: 0 -12px;
  padding: 16px 12px 4px;
  color: #afb5ba;
  background: #111921;
  font-size: 0.7rem;
  text-align: center;
}

.c2ef9e-bottom-nav {
  position: fixed;
  z-index: 70;
  right: 50%;
  bottom: max(8px, env(safe-area-inset-bottom));
  display: grid;
  width: min(calc(100% - 18px), 412px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 3px;
  padding: 5px;
  transform: translateX(50%);
  border: 1px solid rgba(255, 105, 180, 0.42);
  border-radius: 10px;
  background: rgba(24, 35, 45, 0.97);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(16px);
}

.c2ef9e-bottom-nav a,
.c2ef9e-bottom-nav button {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 55px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  color: #c9ced2;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.c2ef9e-bottom-nav .c2ef9e-nav-active {
  color: #18232d;
  background: var(--c2ef9e-pink);
}

.c2ef9e-nav-icon {
  position: relative;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
}

.c2ef9e-nav-icon::after {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 7px;
  height: 7px;
  border: 1px solid #18232d;
  border-radius: 50%;
  background: var(--c2ef9e-hot);
  content: '';
}

.c2ef9e-nav-label {
  max-width: 100%;
  overflow: hidden;
  font-size: 0.56rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

[data-playf9e35-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-playf9e35-reveal].c2ef9e-revealed {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--c2ef9e-pink);
  outline-offset: 2px;
}

@media (min-width: 375px) {
  .c2ef9e-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .c2ef9e-game span {
    min-height: 39px;
    font-size: 0.61rem;
  }
}

@media (max-width: 350px) {
  :root {
    --c2ef9e-header-height: 108px;
  }

  .c2ef9e-main {
    padding-right: 9px;
    padding-left: 9px;
  }

  .c2ef9e-intro h1 {
    font-size: 1.9rem;
  }

  .c2ef9e-proof-strip span {
    font-size: 0.58rem;
  }

  .c2ef9e-slider {
    min-height: 230px;
  }

  .c2ef9e-game-grid {
    gap: 4px;
  }

  .c2ef9e-game span {
    padding-inline: 2px;
    font-size: 0.57rem;
  }

  .c2ef9e-bottom-nav {
    width: calc(100% - 10px);
  }

  .c2ef9e-nav-label {
    font-size: 0.52rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-playf9e35-reveal] {
    opacity: 1;
    transform: none;
  }
}
