/* NeueWelle Agentur — neuewelleagentur.uk */

:root {
  --color-bg: #0d0b26;
  --color-bg-section: #100c33;
  --color-bg-footer: #0a0820;
  --color-card: #1b1547;
  --color-text: #f5f3ff;
  --color-text-muted: #a9a3d1;
  --color-text-soft: #c9c4ea;
  --color-text-dim: #8b84b8;
  --color-text-footer: #a9a3d1;
  --color-cyan: #17e6ff;
  --color-pink: #ff2ea6;
  --color-yellow: #ffe14d;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-input: rgba(255, 255, 255, 0.12);
  --font-family: 'Inter', system-ui, sans-serif;
  --container-max: 480px;
  --container-wide: 1200px;
  --header-height: 47px;
  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-pill: 20px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

body {
  margin: 0;
  background: var(--color-bg);
  font-family: var(--font-family);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--color-cyan);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-pink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

/* Layout */

.page {
  background-color: var(--color-bg);
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}

.page--legal {
  background-color: var(--color-bg);
}

.page__content {
  position: relative;
  z-index: 1;
}

.page__inner,
.header,
.footer {
  width: 100%;
  margin-inline: auto;
}

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

@media (prefers-reduced-motion: reduce) {
  #particles-js {
    display: none;
  }
}

/* Utilities */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

button.header__nav-link,
button.mobile-menu__link,
.footer__nav button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: inherit;
}

button.header__nav-link {
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

button.header__nav-link:hover {
  color: var(--color-cyan);
}

button.mobile-menu__link {
  color: var(--color-text);
  font-weight: 700;
  font-size: 20px;
  width: 100%;
  padding: 14px 4px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

button.mobile-menu__link:last-child {
  border-bottom: none;
}

button.mobile-menu__link:hover {
  color: var(--color-cyan);
}

.footer__nav button {
  color: var(--color-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__nav button:hover {
  color: var(--color-pink);
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #0d0b26;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  min-height: var(--header-height);
}

.header__logo img {
  height: 26px;
  width: auto;
}

.header__menu-btn {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.header__nav {
  display: none;
}

.header__nav-link {
  color: var(--color-text);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.header__nav-link:hover {
  color: var(--color-cyan);
}

/* Mobile menu overlay */

.mobile-menu {
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: rgba(9, 7, 26, 0.98);
  z-index: 49;
  display: none;
  flex-direction: column;
  padding: 20px;
  gap: 2px;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__link {
  color: var(--color-text);
  font-weight: 700;
  font-size: 20px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none;
}

.mobile-menu__link:last-child {
  border-bottom: none;
}

.mobile-menu__link:hover {
  color: var(--color-cyan);
}

/* Hero */

.hero {
  padding: 16px 18px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero__image {
  width: 96px;
  flex-shrink: 0;
}

.hero__title {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.15;
  margin: 4px 0 8px;
  color: var(--color-text);
}

.hero__text {
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-text-soft);
  margin: 0 0 8px;
}

.hero__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tag {
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 3px 8px;
}

.tag--cyan {
  color: var(--color-cyan);
  background: rgba(23, 230, 255, 0.1);
  border: 1px solid rgba(23, 230, 255, 0.35);
}

.tag--pink {
  color: var(--color-pink);
  background: rgba(255, 46, 166, 0.1);
  border: 1px solid rgba(255, 46, 166, 0.35);
}

.tag--yellow {
  color: var(--color-yellow);
  background: rgba(255, 225, 77, 0.1);
  border: 1px solid rgba(255, 225, 77, 0.35);
}

/* Games */

.games {
  padding: 4px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 10px 12px 25px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}

.game-card--yellow {
  border-top: 3px solid var(--color-yellow);
}

.game-card--cyan {
  border-top: 3px solid var(--color-cyan);
}

.game-card--pink {
  border-top: 3px solid var(--color-pink);
}

.game-card__header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.game-card__thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.game-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--color-text);
}

.game-card__rating {
  font-size: 12px;
  color: var(--color-yellow);
  font-weight: 700;
  margin-top: 2px;
}

.game-card__rating span {
  color: var(--color-text-dim);
  font-weight: 600;
}

.game-card__desc {
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-text-muted);
  margin: 0;
}

.game-card__btn {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 0;
  border-radius: var(--radius-sm);
  color: var(--color-bg);
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  position: absolute;
  bottom: -10px;
  width: calc(100% - 24px);
}

.game-card__btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  color: var(--color-bg);
}

.game-card__btn--pink-cyan,
.game-card__btn--cyan-pink,
.game-card__btn--pink-cyan-alt {
  background: var(--color-cyan);
  box-shadow: none;
}

/* Why section */

.why {
  padding: 24px 18px;
  background: var(--color-bg-section);
}

.why__image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.section-title {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 16px;
  color: var(--color-text);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-card__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-card__title {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.feature-card__text {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

/* FAQ */

.faq {
  padding: 24px 18px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item__trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-family);
}

.faq-item__chevron {
  flex-shrink: 0;
  color: var(--color-cyan);
  font-size: 16px;
  transition: transform var(--transition);
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
  display: none;
}

.faq-item.is-open .faq-item__answer {
  display: block;
}

/* Contact */

.contact {
  padding: 24px 18px;
  background: var(--color-bg-section);
}

.contact__image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
}

.contact__intro {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0 0 16px;
}

.contact__info {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.contact__info-title {
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.contact__map {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  filter: invert(0.92) hue-rotate(180deg);
}

.contact__success {
  background: rgba(23, 230, 255, 0.1);
  border: 1px solid rgba(23, 230, 255, 0.35);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: var(--color-cyan);
  font-weight: 600;
  display: none;
}

.contact__success.is-visible {
  display: block;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form.is-hidden {
  display: none;
}

.contact-form__input,
.contact-form__textarea {
  background: var(--color-card);
  border: 1px solid var(--color-border-input);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--color-text);
  font-size: 13px;
  font-family: var(--font-family);
  width: 100%;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--color-text-dim);
}

.contact-form__checkbox-label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--color-text-muted);
  cursor: pointer;
}

.contact-form__checkbox-label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__checkbox-label a:hover {
  color: var(--color-pink);
}

.contact__info a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form__checkbox {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--color-cyan);
}

.contact-form__submit {
  background: var(--color-cyan);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 14px;
  padding: 13px 0;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: none;
  cursor: pointer;
  margin-top: 4px;
  font-family: var(--font-family);
  transition: opacity var(--transition);
}

.contact-form__submit:hover {
  opacity: 0.9;
}

/* Footer */

.footer {
  background: var(--color-bg-footer);
  border-top: 1px solid var(--color-border);
  padding: 32px 18px 22px;
  color: var(--color-text-muted);
}

.footer__logo {
  height: 28px;
  width: auto;
  margin-bottom: 24px;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  margin-bottom: 24px;
  font-size: 13px;
}

.footer__nav a {
  color: var(--color-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__company a,
.footer__legal a {
  color: var(--color-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__company a:hover,
.footer__legal a:hover,
.footer__nav a:hover {
  color: var(--color-pink);
}

.footer__company {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer__company-name {
  font-weight: 700;
  color: var(--color-text);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11.5px;
  margin-bottom: 20px;
}

.footer__responsible {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
  margin-bottom: 18px;
}

.footer__responsible-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text);
  margin-bottom: 6px;
}

.footer__responsible-text {
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0 0 12px;
}

.footer__badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer__badge-link {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer__badge-link:hover {
  opacity: 0.8;
}

.footer__badge {
  height: 22px;
  width: auto;
}

.footer__badge--gamstop {
  height: 20px;
}

.footer__badge--begambleaware {
  height: 16px;
}

.footer__disclaimer {
  font-size: 10.5px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 14px;
}

.footer__copyright {
  font-size: 10.5px;
  color: var(--color-text-footer);
}

/* Legal pages */

.legal {
  padding: 24px 18px 8px;
}

.legal__title {
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 4px;
  color: #ffffff;
}

.legal__date {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 18px;
}

.legal__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: #ffffff;
}

.legal__content p {
  margin: 0;
}

.legal__content p + p {
  margin-top: 10px;
}

.legal__heading {
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin: 0 0 6px;
}

.legal__content a {
  color: #ffffff;
  text-decoration: underline;
}

.legal__content a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.legal__content strong {
  color: var(--color-text);
}

/* Desktop */

@media (min-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .page {
    max-width: 100%;
  }

  .page__inner,
  .header,
  .footer {
    max-width: var(--container-wide);
  }

  .header {
    padding: 12px clamp(24px, 4vw, 48px);
  }

  .header__menu-btn {
    display: none;
  }

  .header__nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 3vw, 36px);
  }

  .header__nav-link {
    font-size: 15px;
  }

  .hero {
    padding: clamp(32px, 5vw, 64px) clamp(24px, 4vw, 48px) clamp(24px, 3vw, 40px);
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
  }

  .hero__image {
    width: clamp(140px, 18vw, 220px);
  }

  .hero__title {
    font-size: clamp(22px, 3vw, 36px);
    margin-bottom: 12px;
  }

  .hero__text {
    font-size: clamp(14px, 1.2vw, 16px);
    margin-bottom: 16px;
  }

  .tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  .games {
    padding: 0 clamp(24px, 4vw, 48px) clamp(32px, 4vw, 56px);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .game-card {
    max-height: none;
    padding: 16px;
    padding-bottom: 39px;
    gap: 8px;
  }

  .game-card__thumb {
    width: 52px;
    height: 52px;
  }

  .game-card__name {
    font-size: 17px;
  }

  .game-card__desc {
    font-size: 13px;
  }

  .game-card__btn {
    font-size: 14px;
    padding: 10px 0;
  }

  .why {
    padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 48px);
  }

  .why__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
  }

  .why__image {
    height: 100%;
    min-height: 280px;
    margin-bottom: 0;
  }

  .section-title {
    font-size: clamp(26px, 3vw, 34px);
  }

  .feature-card__title {
    font-size: 16px;
  }

  .feature-card__text {
    font-size: 14px;
  }

  .faq {
    padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 48px);
    max-width: 800px;
    margin: 0 auto;
  }

  .faq-item__trigger {
    font-size: 15px;
    padding: 18px;
  }

  .faq-item__answer {
    font-size: 14px;
    padding: 0 18px 18px;
  }

  .contact {
    padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 48px);
  }

  .contact__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: start;
  }

  .contact__image {
    height: 200px;
  }

  .contact__details {
    display: contents;
  }

  .contact__info {
    grid-column: 1;
  }

  .contact__map {
    grid-column: 2;
    grid-row: 1 / span 3;
    height: 100%;
    min-height: 280px;
    margin-bottom: 0;
  }

  .contact__success,
  .contact-form {
    grid-column: 1;
  }

  .contact__intro {
    font-size: 14px;
  }

  .footer {
    padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px) 32px;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: clamp(24px, 4vw, 48px);
    margin-bottom: 32px;
    align-items: start;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .footer__company {
    margin-bottom: 0;
  }

  .footer__legal {
    margin-bottom: 0;
  }

  .legal {
    padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 48px) 8px;
    max-width: 800px;
    margin: 0 auto;
  }

  .legal__title {
    font-size: clamp(28px, 3vw, 36px);
  }
}

@media (min-width: 1024px) {
  .games {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero__body {
    max-width: 640px;
  }
}

/* Subpage hero */

.subpage-hero {
  padding: 20px 18px 16px;
  background: var(--color-bg-section);
  border-bottom: 1px solid var(--color-border);
}

.subpage-hero__title {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--color-text);
}

.subpage-hero__text {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-text-muted);
  margin: 0;
}

.subpage-extra {
  padding: 24px 18px;
  border-top: 1px solid var(--color-border);
}

.subpage-extra--alt {
  background: var(--color-bg-section);
}

.subpage-extra__title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 10px;
  color: var(--color-text);
}

.subpage-extra__text {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

.subpage-extra__list {
  margin: 10px 0 0;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.header__nav-link.is-active {
  color: var(--color-cyan);
}

/* Game play page */

.game-page-hero {
  padding: 20px 18px 12px;
  display: flex;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
}

.game-page-hero__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.game-page-hero__title {
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 4px;
  color: var(--color-text);
}

.game-page-hero__back {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-dim);
  text-decoration: none;
}

.game-page-hero__back:hover {
  color: var(--color-cyan);
}

.game-play {
  padding: 16px 18px 28px;
}

.game-play__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.game-play__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.game-play__about {
  margin-top: 14px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px;
}

.game-play__about-title {
  font-weight: 700;
  font-size: 14px;
  margin: 0 0 8px;
  color: var(--color-text);
}

.game-play__about-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .subpage-hero {
    padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 48px);
  }

  .subpage-hero__title {
    font-size: clamp(26px, 3vw, 34px);
  }

  .subpage-hero__text {
    font-size: 14px;
    max-width: 640px;
  }

  .subpage-extra {
    padding: clamp(32px, 4vw, 48px) clamp(24px, 4vw, 48px);
  }

  .subpage-extra__title {
    font-size: 20px;
  }

  .subpage-extra__text,
  .subpage-extra__list {
    font-size: 14px;
  }

  .game-page-hero {
    padding: clamp(28px, 4vw, 40px) clamp(24px, 4vw, 48px);
    gap: 20px;
  }

  .game-page-hero__thumb {
    width: 88px;
    height: 88px;
  }

  .game-page-hero__title {
    font-size: clamp(24px, 3vw, 32px);
  }

  .game-play {
    padding: clamp(20px, 3vw, 32px) clamp(24px, 4vw, 48px) clamp(40px, 5vw, 56px);
  }

  .game-play__frame-wrap {
    aspect-ratio: 16 / 9;
    max-height: min(72vh, 640px);
    margin-inline: auto;
  }

  .game-play__about {
    margin-top: 16px;
    max-width: var(--container-wide);
    margin-inline: auto;
    padding: 18px;
  }

  .game-play__about-title {
    font-size: 16px;
  }

  .game-play__about-text {
    font-size: 14px;
  }
}
