/* Base theme styling for RedWhisper. */

body {
  margin: 0;
  background: #05060a;
  color: #f5f5f5;
  font-family: system-ui, sans-serif;
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.rw-header {
  padding: 2rem 0;
  background: radial-gradient(1200px 500px at 50% 0%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  position: relative;
  --rw-header-glow-x: 50%;
  --rw-header-glow-y: 0%;
  --rw-scroll-progress: 0;
  transition: padding 220ms ease, background 220ms ease;
}

.rw-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 220px at var(--rw-header-glow-x) var(--rw-header-glow-y), rgba(255, 90, 90, 0.22), rgba(5, 6, 10, 0));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
}

.rw-header__progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 90, 90, 0.9), rgba(214, 178, 90, 0.85));
  transform-origin: left;
  transform: scaleX(var(--rw-scroll-progress, 0));
  opacity: 0.85;
  z-index: 2;
  pointer-events: none;
}

.rw-header--scrolled {
  padding: 1.35rem 0;
  background: rgba(5, 6, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.rw-header--scrolled::before,
.rw-header:hover::before {
  opacity: 1;
}

.rw-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.rw-branding {
  flex: 0 0 auto;
}

.rw-branding__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.custom-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  border-radius: 16px;
}

.rw-branding__text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.rw-nav {
  flex: 1 1 auto;
}

.rw-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.rw-nav__menu a {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}

.rw-nav__menu a:hover,
.rw-nav__menu .current-menu-item > a {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.35em;
}

/* Locale selector: only show in utilities on desktop.
   The nav version is reserved for the mobile drawer. */
.rw-nav__locale {
  display: none;
}

.rw-utils {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.rw-utils__locale {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0.9;
}

.rw-utils__icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  position: relative;
}

.rw-cartCount {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(214, 178, 90, 0.85);
  color: rgba(10, 12, 18, 0.95);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.rw-cartCount[hidden] {
  display: none;
}

.rw-utils__icon:hover {
  background: rgba(255, 255, 255, 0.1);
}

.rw-utils__icon:focus-visible {
  outline: 2px solid rgba(214, 178, 90, 0.6);
  outline-offset: 3px;
}

.rw-header__search {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 2rem 1.5rem;
  background: rgba(4, 6, 10, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 60;
}

.rw-header__searchCard {
  width: min(720px, 100%);
  max-width: 100%;
  box-sizing: border-box;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: 24px;
  background: rgba(10, 12, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 35px 120px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
  max-height: calc(100vh - 4rem);
  overflow: auto;
  transform: translateY(12px);
  opacity: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.rw-header--search-open .rw-header__search {
  opacity: 1;
  pointer-events: auto;
}

.rw-header--search-open .rw-header__searchCard {
  opacity: 1;
  transform: translateY(0);
}

.rw-header__searchClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  cursor: pointer;
}

.rw-header__searchEyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.rw-header__searchTitle {
  margin: 0 0 1.2rem;
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  font-weight: 900;
}

.rw-header__searchForm {
  display: grid;
  gap: 0.65rem;
}

.rw-header__searchLabel {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.rw-header__searchField {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rw-header__searchInput {
  flex: 1 1 220px;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1rem;
  padding: 0.4rem 0.25rem;
}

.rw-header__searchInput:focus {
  outline: none;
}

.rw-header__searchSubmit {
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 90, 90, 0.7);
  background: linear-gradient(135deg, rgba(255, 90, 90, 0.9), rgba(214, 178, 90, 0.9));
  color: #05060a;
  font-weight: 800;
  cursor: pointer;
}

.rw-header__searchHints {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.rw-header__searchHint {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

body.rw-search-open {
  overflow: hidden;
}

.rw-header__burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  padding: 8px;
}

.rw-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #f5f5f5;
  border-radius: 999px;
}

.rw-mobileLocale {
  display: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.rw-main {
  min-height: calc(100vh - 160px);
}

.rw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 60, 60, 0.65);
  color: rgba(255, 90, 90, 0.95);
  background: rgba(0, 0, 0, 0.25);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.rw-button:hover {
  border-color: rgba(255, 60, 60, 0.9);
  color: rgba(255, 120, 120, 1);
}

.rw-button--primary {
  background: linear-gradient(135deg, rgba(255, 60, 60, 0.9), rgba(255, 120, 90, 0.95));
  color: #05060a;
  border-color: rgba(255, 60, 60, 0.95);
  box-shadow: 0 10px 30px rgba(255, 60, 60, 0.2);
}

.rw-button--primary:hover {
  border-color: rgba(255, 120, 90, 1);
  box-shadow: 0 14px 38px rgba(255, 120, 90, 0.25);
  color: #05060a;
}

.rw-button--small {
  padding: 0.65rem 0.95rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.rw-button--ghost {
  border: 2px solid rgba(255, 60, 60, 0.7);
  color: #f5f5f5;
  background: transparent;
  padding: 0.95rem 1.75rem;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}

.rw-button--ghost:hover {
  border-color: rgba(255, 60, 60, 0.95);
  box-shadow: 0 12px 24px rgba(255, 60, 60, 0.18);
  transform: translateY(-1px);
}

.rw-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
  color: #f5f5f5;
}

.rw-hero__title {
  margin: 0;
  font-size: clamp(1.25rem, 2vw + 1rem, 2.25rem);
  font-weight: 800;
  color: inherit;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.rw-hero__social {
  margin-top: 2.75rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.rw-social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #05060a;
}

.rw-social:hover {
  background: rgba(255, 255, 255, 1);
}

.rw-social--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #f5f5f5;
}

.rw-social--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.rw-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.rw-entry {
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rw-entry__title {
  margin: 0 0 0.5rem;
}

.rw-entry__title a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.rw-empty {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  opacity: 0.8;
}

.rw-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 3rem 0 4rem;
  background: #05060a;
}

.rw-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.rw-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  font-weight: 700;
  opacity: 0.88;
}

.rw-footer__menu a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.rw-footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rw-footer__meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(245, 245, 245, 0.8);
}

.rw-footer__locale {
  display: grid;
  gap: 0.45rem;
  max-width: 260px;
  width: 100%;
}

.rw-footer__label {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.rw-footer select {
  width: 100%;
  max-width: 260px;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f5f5;
}

.rw-footer select:focus {
  border-color: rgba(255, 60, 60, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 60, 60, 0.12);
  outline: 0;
}

.rw-footer__copy {
  font-weight: 600;
}

.rw-topBanner {
  margin: 0;
  padding: 0;
  background: #05060a;
}

.rw-topBanner__image {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 520px;
  animation: rw-bannerDrift 18s ease-in-out infinite alternate;
}

.rw-animate {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 600ms ease, transform 700ms ease;
  will-change: opacity, transform;
}

.rw-animate--in {
  opacity: 1;
  transform: none;
}

[data-rw-animate="zoom-slow"] {
  transform: scale(0.98);
}

[data-rw-animate="zoom-slow"].rw-animate--in {
  transform: scale(1.02);
}

/* Heftige animation presets (opt-in via data-rw-animate). */
[data-rw-animate="blur-up"] {
  transform: translateY(34px) scale(0.965);
  filter: blur(14px);
  transition: opacity 650ms ease, transform 900ms cubic-bezier(0.2, 0.9, 0.2, 1), filter 900ms cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: opacity, transform, filter;
}

[data-rw-animate="blur-up"].rw-animate--in {
  transform: none;
  filter: blur(0);
}

[data-rw-animate="tilt-pop"] {
  transform: translateY(32px) scale(0.95) rotateX(10deg) rotateZ(-0.8deg);
  transform-origin: 50% 80%;
  filter: saturate(0.9) contrast(0.95);
  transition: opacity 650ms ease, transform 950ms cubic-bezier(0.16, 1, 0.3, 1), filter 950ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

[data-rw-animate="tilt-pop"].rw-animate--in {
  transform: none;
  filter: none;
}

[data-rw-animate="flip-in"] {
  transform: perspective(900px) rotateX(18deg) translateY(26px) scale(0.97);
  transform-origin: 50% 80%;
  transition: opacity 650ms ease, transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

[data-rw-animate="flip-in"].rw-animate--in {
  transform: none;
}

@keyframes rw-neonPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 60, 60, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 60, 60, 0.10), 0 0 22px rgba(255, 60, 60, 0.18);
  }
}

[data-rw-animate="neon"] {
  transform: translateY(22px) scale(0.98);
  transition: opacity 600ms ease, transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-rw-animate="neon"].rw-animate--in {
  transform: none;
  animation: rw-neonPulse 1800ms ease-in-out 1 both;
}

@keyframes rw-bannerDrift {
  0% {
    transform: scale(1) translateY(0);
  }
  100% {
    transform: scale(1.04) translateY(-8px);
  }
}

@media (max-width: 900px) {
  .rw-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #05060a;
  }

  .rw-header--scrolled {
    background: rgba(5, 6, 10, 0.95);
  }

  .rw-header__burger {
    display: inline-flex;
  }

  .rw-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 1rem;
    right: 1rem;
    padding: 1rem 1.25rem 1.15rem;
    border-radius: 14px;
    background: rgba(5, 6, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    max-height: calc(100vh - 120px);
    overflow: auto;
  }

  .rw-header--open .rw-nav {
    display: flex;
    flex-direction: column;
  }

  .rw-nav__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .rw-nav__menu a {
    font-size: 1rem;
    font-weight: 700;
    opacity: 1;
  }

  .rw-branding {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .rw-header__inner {
    justify-content: space-between;
    padding: 0 1.25rem;
  }

  .rw-utils {
    margin-left: auto;
  }

  .rw-utils__locale {
    display: none;
  }

  .rw-mobileLocale {
    display: none;
  }

  .rw-nav__locale {
    display: none;
    margin-top: auto;
    padding-top: 1rem;
    align-items: center;
    gap: 0.35rem;
    font-weight: 800;
    opacity: 0.9;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .rw-header--open .rw-nav__locale {
    display: inline-flex;
  }
}

@media (max-width: 860px) {
  .rw-footer__menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .rw-footer__meta {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .rw-topBanner__image {
    max-height: 360px;
  }
}

@media (max-width: 520px) {
  .rw-footer__inner {
    padding: 0 1.25rem;
  }
}

@media (max-width: 480px) {
  .rw-topBanner__image {
    max-height: 260px;
  }

  .rw-header__inner {
    gap: 1rem;
    padding: 0 1.25rem;
  }

  .rw-header,
  .rw-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .rw-social,
  .rw-social--ghost {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rw-animate,
  .rw-animate--in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  [data-rw-animate="blur-up"],
  [data-rw-animate="tilt-pop"],
  [data-rw-animate="flip-in"],
  [data-rw-animate="neon"] {
    filter: none !important;
    animation: none !important;
  }

  .rw-topBanner__image {
    animation: none !important;
    transform: none !important;
  }
}

.rw-agegate {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  background:
    radial-gradient(700px 420px at 20% 18%, rgba(204, 20, 32, 0.18), rgba(0, 0, 0, 0) 60%),
    radial-gradient(640px 420px at 80% 20%, rgba(214, 178, 90, 0.16), rgba(0, 0, 0, 0) 60%),
    rgba(4, 6, 10, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 0s linear 260ms;
}

.rw-agegate::before,
.rw-agegate::after {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(closest-side at 30% 35%, rgba(204, 20, 32, 0.25), rgba(0, 0, 0, 0) 65%),
    radial-gradient(closest-side at 70% 25%, rgba(214, 178, 90, 0.22), rgba(0, 0, 0, 0) 65%);
  filter: blur(40px);
  opacity: 0.6;
  animation: rw-agegate-orbit 12s ease-in-out infinite;
  pointer-events: none;
}

.rw-agegate::after {
  animation-delay: -6s;
  opacity: 0.4;
}

.rw-agegate.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 320ms ease;
}

.rw-agegate.is-active .rw-agegate__dialog {
  animation: rw-agegate-rise 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.rw-agegate.is-active .rw-agegate__btn {
  animation: rw-agegate-pop 520ms ease-out both;
}

.rw-agegate.is-active .rw-agegate__btn:nth-child(2) {
  animation-delay: 120ms;
}

.rw-agegate__dialog {
  position: relative;
  width: min(540px, 100%);
  border-radius: 20px;
  padding: clamp(1.85rem, 4vw, 2.75rem);
  background:
    linear-gradient(135deg, rgba(204, 20, 32, 0.12), rgba(0, 0, 0, 0) 60%),
    rgba(12, 14, 20, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.rw-agegate__dialog::before {
  content: "18+";
  position: absolute;
  top: -18px;
  right: -10px;
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.05);
  transform: rotate(-8deg);
  pointer-events: none;
}

.rw-agegate__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.5;
  color: #f5f5f5;
}

.rw-agegate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.rw-agegate__btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.8rem 1.7rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.rw-agegate__btn:focus-visible {
  outline: 2px solid rgba(245, 245, 245, 0.8);
  outline-offset: 3px;
}

.rw-agegate__btn--yes {
  background: linear-gradient(135deg, rgba(204, 20, 32, 0.98), rgba(120, 8, 14, 0.98));
  background-size: 160% 160%;
  color: #fff;
  box-shadow: 0 14px 32px rgba(204, 20, 32, 0.35);
  animation: rw-agegate-glow 3.8s ease-in-out infinite;
}

.rw-agegate__btn--yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(204, 20, 32, 0.5);
}

.rw-agegate__btn--no {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #f5f5f5;
}

.rw-agegate__btn--no:hover {
  background: rgba(255, 255, 255, 0.14);
}

html.rw-agegate-lock,
body.rw-agegate-lock {
  overflow: hidden;
  touch-action: none;
}

@keyframes rw-agegate-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rw-agegate-pop {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rw-agegate-orbit {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(2%, -3%, 0) scale(1.05);
  }
}

@keyframes rw-agegate-glow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rw-agegate,
  .rw-agegate::before,
  .rw-agegate::after,
  .rw-agegate__dialog,
  .rw-agegate__btn,
  .rw-agegate__btn--yes {
    animation: none !important;
    transition: none !important;
  }
}
