@font-face {
  font-family: "Nova Square";
  src: url("../fonts/NovaSquare-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #090909;
  --bg-soft: #111111;
  --panel: rgba(20, 20, 20, 0.94);
  --panel-strong: rgba(28, 28, 28, 0.98);
  --text: #f2eee8;
  --text-soft: #bfb7ad;
  --accent: #18b7d8;
  --accent-strong: #6ff3ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  position: relative;
  margin: 0;
  font-family: "Nova Square", "Inter", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(24, 183, 216, 0.12), transparent 35%), linear-gradient(180deg, #090909 0%, #0f0f0f 100%);
  line-height: 1.78;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 8, 10, 0.42) 0%, rgba(6, 8, 10, 0.26) 35%, rgba(6, 8, 10, 0.42) 100%),
    radial-gradient(circle at center, rgba(24, 183, 216, 0.12), transparent 45%),
    url("../img/backgrounds/site-background.png") center 58% / cover no-repeat;
  opacity: 0.42;
  filter: saturate(1) contrast(1.04) brightness(1.02);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.site-header .container {
  width: min(calc(100% - 0.35rem), var(--container));
}

h1, h2, h3, .brand {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  line-height: 0.95;
}
h1 { font-size: clamp(3.6rem, 10vw, 7.2rem); max-width: 10ch; }
.hero h1 {
  color: #ffffff;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.35);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 255, 255, 0.16),
    0 0 40px rgba(255, 255, 255, 0.1);
}
h2 { font-size: clamp(2.2rem, 5vw, 4rem); margin-bottom: 0.8rem; }
.legal-company {
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.1;
}
.trailer-title,
.about-title,
.features-title,
.masks-title,
.characters-title {
  color: #ffffff;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.35);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 255, 255, 0.16),
    0 0 40px rgba(255, 255, 255, 0.1);
}
.media-title {
  color: #ffffff;
  -webkit-text-stroke: 0.85px rgba(255, 255, 255, 0.4);
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.28),
    0 0 28px rgba(255, 255, 255, 0.2),
    0 0 46px rgba(255, 255, 255, 0.14);
}
.about-title,
.media-title,
.features-title {
  margin: 0 0 1.15rem;
}
h3 { font-size: 1.6rem; margin-bottom: 0.45rem; }
p { margin: 0 0 1rem; max-width: 68ch; }
.feature-card h3 {
  font-family: "Nova Square", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: #ff5fd2;
  -webkit-text-stroke: 0.7px #a0187f;
  text-shadow:
    0 0 10px rgba(255, 95, 210, 0.24),
    0 0 22px rgba(255, 95, 210, 0.16),
    0 0 34px rgba(255, 95, 210, 0.1);
}
.feature-card p,
.masks-intro {
  font-size: 1.3rem;
  color: #7ff7ff;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.feature-card,
.content-card,
.media-slider {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  overflow: hidden;
}
.feature-card::after,
.content-card::after,
.media-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle 520px at var(--glow-x) var(--glow-y), rgba(111,243,255,0.11), rgba(111,243,255,0.055) 26%, rgba(111,243,255,0.02) 50%, transparent 76%);
  transition: opacity 180ms ease;
}
.feature-card > *,
.content-card > *,
.media-slider > * {
  position: relative;
  z-index: 2;
}
.feature-card:hover::after,
.feature-card.is-pointer-active::after,
.content-card:hover::after,
.content-card.is-pointer-active::after,
.media-slider:hover::after,
.media-slider.is-pointer-active::after { opacity: 1; }
.trailer-copy,
.about-copy {
  font-size: 1.5rem;
  color: #7ff7ff;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.about-copy {
  font-size: 1.35rem;
  max-width: 60ch;
  color: #7ff7ff;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.about-copy + .about-copy {
  margin-top: 2rem;
}

.eyebrow,
.section-label {
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
}
.hero .eyebrow {
  font-size: 1.5rem;
  color: #7ff7ff;
  text-shadow:
    0 0 8px rgba(24, 183, 216, 0.18),
    0 0 18px rgba(24, 183, 216, 0.1);
}
.trailer-heading .section-label,
.about-label,
.media-label,
.features-label,
.masks-label,
.characters-label {
  font-size: 1.5rem;
  color: #7ff7ff;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 22px rgba(24, 183, 216, 0.18),
    0 0 36px rgba(24, 183, 216, 0.12);
}
.about-section > .about-label,
.media-section .media-label,
.features-section .features-label,
.masks-section .masks-label,
.characters-section .characters-label {
  margin: 0 0 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(9, 9, 9, 0.84);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-header {
  position: sticky;
  position: relative;
}
.site-header .language-switcher:not(.language-switcher-mobile) {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  pointer-events: auto;
}
.brand,
.header-brand-area,
.header-controls {
  position: relative;
  z-index: 1;
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 0;
}
.header-brand-area {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: auto;
  height: clamp(66px, 7.6vw, 108px);
  max-width: min(66vw, 520px);
  object-fit: contain;
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.header-company-logo {
  position: absolute;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-company-logo-image {
  display: block;
  width: auto;
  height: clamp(24px, 3vw, 38px);
  max-width: 140px;
  object-fit: contain;
}
.hero-company-logo {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 160ms ease, filter 160ms ease;
}
.hero-company-logo:hover,
.hero-company-logo:focus-visible {
  transform: translateY(-2px);
  filter: drop-shadow(0 0 18px rgba(111,243,255,0.12));
}
.hero-company-logo-image {
  display: block;
  width: auto;
  height: clamp(112px, 14.5vw, 208px);
  max-width: min(40vw, 360px);
  object-fit: contain;
}
.language-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.language-switcher-mobile {
  display: none;
}
.mobile-language-menu-wrap {
  display: none;
}
.lang-button {
  border: 0;
  min-height: 38px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: transparent;
  color: var(--text-soft);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.lang-button:hover,
.lang-button:focus-visible { color: #fff; transform: translateY(-1px); }
.lang-button.is-active { background: var(--accent); color: #fff; }

.nav-menu-wrap { position: relative; display: flex; align-items: center; }
.site-nav { display: flex; gap: 0.35rem; align-items: center; }
.site-nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.site-nav a {
  color: #7ff7ff;
  border: 1px solid transparent;
  white-space: nowrap;
  min-width: 108px;
  font-size: 1.22rem;
  font-weight: 700;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.site-nav a:last-child {
  min-width: 118px;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.button:hover,
.button:focus-visible { transform: translateY(-1px); }
.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ff5fd2;
  background: transparent;
  border-color: transparent;
  text-shadow:
    0 0 10px rgba(255, 95, 210, 0.28),
    0 0 24px rgba(255, 95, 210, 0.2),
    0 0 42px rgba(255, 95, 210, 0.12);
}
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 1.05rem;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: saturate(1.06) contrast(1.01) brightness(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.22), rgba(0,0,0,0.58)), linear-gradient(90deg, rgba(0,0,0,0.38) 0%, rgba(0,0,0,0.2) 55%, rgba(0,0,0,0.34) 100%), radial-gradient(circle at 70% 30%, rgba(24,183,216,0.07), transparent 24%);
}
.hero-inner { position: relative; z-index: 1; padding: 3.6rem 0 9.4rem; }
.lead {
  max-width: 60ch;
  font-size: 1.5rem;
  line-height: 1.85;
  color: #7ff7ff;
  text-shadow:
    0 0 8px rgba(24, 183, 216, 0.18),
    0 0 18px rgba(24, 183, 216, 0.1);
}
.hero-lead-brand {
  display: inline-block;
  font-size: 1.08em;
  color: #ff5fd2;
  -webkit-text-stroke: 0.7px #a0187f;
  text-shadow:
    0 0 10px rgba(255, 95, 210, 0.24),
    0 0 22px rgba(255, 95, 210, 0.16),
    0 0 34px rgba(255, 95, 210, 0.1);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }
.button-buy {
  margin-left: 2rem;
  background: rgba(111,243,255,0.12);
  color: #7ff7ff;
  border: 1px solid rgba(111,243,255,0.38);
  min-height: 56px;
  padding: 0.95rem 1.5rem;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
  box-shadow:
    0 0 0 1px rgba(111,243,255,0.1) inset,
    0 12px 30px rgba(24, 183, 216, 0.12);
}
.button-buy:hover,
.button-buy:focus-visible {
  background: rgba(111,243,255,0.18);
  border-color: rgba(111,243,255,0.55);
  color: #dffcff;
  box-shadow:
    0 0 0 1px rgba(111,243,255,0.18) inset,
    0 0 18px rgba(111,243,255,0.16),
    0 16px 38px rgba(24, 183, 216, 0.18);
}
.button-primary { background: var(--accent); color: #fff; }
.button-primary:hover,
.button-primary:focus-visible { background: var(--accent-strong); }
.button-secondary { background: rgba(255,255,255,0.04); color: #fff; border: 1px solid rgba(255,255,255,0.1); }
.hero-platforms {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
  margin-left: 0.8rem;
  flex-wrap: wrap;
}
.platform-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)), linear-gradient(180deg, rgba(24,183,216,0.12), rgba(24,183,216,0.03)), rgba(8,10,12,0.82);
  border: 1px solid rgba(111,243,255,0.2);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.platform-button:hover,
.platform-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(111,243,255,0.45);
  box-shadow: 0 0 18px rgba(111,243,255,0.12), 0 14px 34px rgba(0,0,0,0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)), linear-gradient(180deg, rgba(24,183,216,0.16), rgba(24,183,216,0.04)), rgba(8,10,12,0.88);
}
.platform-icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(111,243,255,0.14));
}

.section { padding: 4.5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-heading { margin-bottom: 1.6rem; }
.section-heading.narrow { max-width: 760px; }
.two-column,
.legal-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1.25rem; }

.content-card,
.feature-card,
.mask-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}
.content-card,
.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.07), rgba(24,183,216,0.018)), rgba(10, 10, 10, 0.97);
}
.feature-grid .feature-card:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.007)), linear-gradient(180deg, rgba(111,243,255,0.08), rgba(111,243,255,0.02)), rgba(11, 11, 11, 0.975);
}
.feature-grid .feature-card:nth-child(3n + 3) {
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.06), rgba(24,183,216,0.016)), rgba(8, 8, 8, 0.985);
}
.about-section .content-card:nth-child(1) {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.07), rgba(24,183,216,0.018)), rgba(10, 10, 10, 0.97);
}
.about-section .content-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.007)), linear-gradient(180deg, rgba(111,243,255,0.08), rgba(111,243,255,0.02)), rgba(11, 11, 11, 0.975);
}
.accent-card { background: linear-gradient(180deg, rgba(24,183,216,0.07), rgba(255,255,255,0.008)), rgba(9, 9, 9, 0.98); }
.stat-list { margin: 0; padding-left: 1.15rem; color: var(--text-soft); }
.stat-list li + li { margin-top: 0.55rem; }
.mood-panel {
  align-self: start;
}
.mood-label {
  font-size: 1.5rem;
  color: #ffffff;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.35);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 255, 255, 0.16),
    0 0 40px rgba(255, 255, 255, 0.1);
  margin: 0 0 1rem;
}
.mood-list {
  list-style: none;
  padding-left: 0;
  color: #7ff7ff;
}
.mood-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 1.2rem;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.mood-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff5fd2;
  -webkit-text-stroke: 0.6px #a0187f;
  text-shadow:
    0 0 8px rgba(255, 95, 210, 0.24),
    0 0 18px rgba(255, 95, 210, 0.16),
    0 0 28px rgba(255, 95, 210, 0.1);
}
.mood-list li + li { margin-top: 1rem; }
.feature-grid,
.mask-grid,
.character-grid { display: grid; gap: 1rem; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mask-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.character-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  grid-auto-flow: dense;
}
.feature-card p,
.mask-card p,
.content-card p { color: var(--text-soft); }
.about-section .content-card .about-copy {
  color: #7ff7ff !important;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12) !important;
}
.features-section .feature-card p {
  color: #7ff7ff !important;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12) !important;
}
.mask-card {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.45rem 1.25rem 1.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.07), rgba(24,183,216,0.018)), rgba(10, 10, 10, 0.97);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.mask-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(111,243,255,0.9), rgba(111,243,255,0.08));
  z-index: 1;
}
.mask-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle 520px at var(--glow-x) var(--glow-y), rgba(111,243,255,0.11), rgba(111,243,255,0.055) 26%, rgba(111,243,255,0.02) 50%, transparent 76%);
  transition: opacity 180ms ease;
}
.mask-card > * {
  position: relative;
  z-index: 2;
}
.mask-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
}
.mask-card:hover::after,
.mask-card.is-pointer-active::after { opacity: 1; }
.mask-image { width: min(100%, 220px); aspect-ratio: 1 / 1; object-fit: contain; margin: 0 auto 0.9rem; filter: drop-shadow(0 18px 28px rgba(0,0,0,0.28)); max-height: 210px; }
.mask-meta {
  margin: 1.35rem 0 0.35rem;
  color: #ff5fd2 !important;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  text-shadow:
    0 0 10px rgba(255, 95, 210, 0.28),
    0 0 20px rgba(255, 95, 210, 0.18),
    0 0 34px rgba(255, 95, 210, 0.1) !important;
}
.mask-card h3 {
  margin-bottom: 0.55rem;
  font-size: 2rem;
  color: #ffffff;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.35);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 255, 255, 0.16),
    0 0 40px rgba(255, 255, 255, 0.1);
}
.mask-card p:last-child {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  color: #7ff7ff;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.mask-grid .mask-card { height: 100%; }
.mask-grid .mask-card:nth-child(3n + 2) { background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.007)), linear-gradient(180deg, rgba(111,243,255,0.08), rgba(111,243,255,0.02)), rgba(11, 11, 11, 0.975); }
.mask-grid .mask-card:nth-child(3n + 3) { background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.06), rgba(24,183,216,0.016)), rgba(8, 8, 8, 0.985); }

.characters-intro {
  font-size: 1.3rem;
  color: #7ff7ff;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.character-card {
  --glow-x: 50%;
  --glow-y: 50%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.07), rgba(24,183,216,0.018)), rgba(10, 10, 10, 0.97);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.character-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(111,243,255,0.9), rgba(111,243,255,0.08));
  z-index: 1;
}
.character-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(circle 520px at var(--glow-x) var(--glow-y), rgba(111,243,255,0.11), rgba(111,243,255,0.055) 26%, rgba(111,243,255,0.02) 50%, transparent 76%);
  transition: opacity 180ms ease;
}
.character-card > * {
  position: relative;
  z-index: 2;
}
.character-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42);
}
.character-card:hover::after,
.character-card.is-pointer-active::after { opacity: 1; }
.character-grid .character-card:nth-child(3n + 2) {
  background: linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.007)), linear-gradient(180deg, rgba(111,243,255,0.08), rgba(111,243,255,0.02)), rgba(11, 11, 11, 0.975);
}
.character-grid .character-card:nth-child(3n + 3) {
  background: linear-gradient(180deg, rgba(255,255,255,0.018), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.06), rgba(24,183,216,0.016)), rgba(8, 8, 8, 0.985);
}
.character-card-main {
  grid-column: span 1;
  grid-row: span 1;
  padding: 1.05rem 1.05rem 1.2rem;
}
.character-image-wrap {
  width: 100%;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1rem;
}
.character-image-wrap-main {
  min-height: 320px;
  margin-bottom: 0.45rem;
}
.character-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.28));
}
.character-card-main .character-image {
  max-height: 430px;
}
.character-card h3 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #ffffff;
  -webkit-text-stroke: 0.8px rgba(255, 255, 255, 0.35);
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.22),
    0 0 24px rgba(255, 255, 255, 0.16),
    0 0 40px rgba(255, 255, 255, 0.1);
}
.character-card p {
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.16rem;
  color: #7ff7ff;
  text-shadow:
    0 0 10px rgba(24, 183, 216, 0.28),
    0 0 24px rgba(24, 183, 216, 0.2),
    0 0 42px rgba(24, 183, 216, 0.12);
}
.character-card-main p {
  max-width: 32ch;
  font-size: 1.16rem;
}

.trailer-stage {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: radial-gradient(circle at top, rgba(111,243,255,0.16), transparent 30%), #050505;
  padding: 0.9rem;
}
.trailer-stage::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.08)); }
.trailer-video { position: relative; z-index: 1; display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: calc(var(--radius) - 4px); background: #000; object-fit: cover; }
.trailer-link {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.trailer-link iframe { border: 0; }
.trailer-thumbnail { transition: transform 180ms ease, filter 180ms ease; }
.trailer-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.24));
  pointer-events: none;
}
.trailer-youtube-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(5, 12, 15, 0.82);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}
.trailer-youtube-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 18px;
  border-radius: 6px;
  background: #ff0033;
  color: #fff;
  font-size: 0.78rem;
  line-height: 1;
}
.trailer-youtube-text {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.trailer-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 12, 15, 0.78);
  border: 1px solid rgba(111,243,255,0.32);
  color: #dffcff;
  font-size: 2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: background 180ms ease, color 180ms ease;
}
.trailer-link:hover .trailer-thumbnail,
.trailer-link:focus-visible .trailer-thumbnail { transform: scale(1.015); filter: brightness(1.03); }
.trailer-link:hover .trailer-play-button,
.trailer-link:focus-visible .trailer-play-button { background: rgba(111,243,255,0.18); color: #fff; }
.trailer-link:hover .trailer-youtube-badge,
.trailer-link:focus-visible .trailer-youtube-badge {
  opacity: 1;
  transform: translateY(0);
  background: rgba(10, 18, 22, 0.9);
}
.trailer-link:focus-visible { outline: 2px solid rgba(111,243,255,0.6); outline-offset: 4px; }

.media-slider {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.006)), linear-gradient(180deg, rgba(24,183,216,0.07), rgba(24,183,216,0.018)), rgba(10, 10, 10, 0.97);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
  padding: 1rem;
}
.media-slider-stage {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  background: #060a0c;
  min-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.media-slider-stage img { -webkit-user-drag: none; }
.media-slider-image {
  display: block;
  width: 100%;
  height: min(70vh, 720px);
  object-fit: contain;
  object-position: center;
  background: #050505;
  border-radius: calc(var(--radius) - 8px);
}
.media-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(111,243,255,0.28);
  border-radius: 999px;
  background: rgba(5,12,15,0.82);
  color: #dffcff;
  font: inherit;
  font-size: 2.4rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,0,0,0.28);
  transition: background 140ms ease, transform 140ms ease;
  -webkit-tap-highlight-color: transparent;
}
.media-slider-prev { left: 1rem; }
.media-slider-next { right: 1rem; }
.media-slider-nav:hover,
.media-slider-nav:focus-visible { background: rgba(111,243,255,0.2); color: #fff; }
.media-slider-nav:focus-visible { outline: 2px solid rgba(111,243,255,0.65); outline-offset: 2px; }
.media-slider-footer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.45rem;
  width: 100%;
  flex-wrap: wrap;
}
.media-slider-counter {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(5,12,15,0.78);
  color: #dffcff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.media-slider-dots {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.1rem 0.1rem 0.9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
  border-radius: 16px;
  scrollbar-width: auto;
  scrollbar-color: rgba(111,243,255,0.4) rgba(255,255,255,0.12);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.media-slider-dots::-webkit-scrollbar { height: 22px; }
.media-slider-dots::-webkit-scrollbar-thumb {
  background: rgba(111,243,255,0.4);
  border-radius: 999px;
  border: 4px solid rgba(0,0,0,0);
  background-clip: padding-box;
}
.media-slider-dots::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
}
.media-dot {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0,0,0,0.14);
  transition: transform 140ms ease, border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.media-dot::-moz-focus-inner { border: 0; padding: 0; }
.media-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.04));
  border-radius: 13px;
  pointer-events: none;
}
.media-dot::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: transparent;
  border-radius: 0 0 14px 14px;
}
.media-dot:hover { transform: translateY(-1px); border-color: rgba(111,243,255,0.7); background: rgba(111,243,255,0.05); }
.media-dot:focus-visible { border-color: rgba(111,243,255,0.7); background: rgba(111,243,255,0.05); outline: 2px solid rgba(111,243,255,0.5); outline-offset: 2px; }
.media-dot.is-active {
  background: rgba(111,243,255,0.06);
  border-color: rgba(111,243,255,0.85);
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(111,243,255,0.16);
}
.media-dot.is-active::before { background: linear-gradient(180deg, rgba(111,243,255,0.08), rgba(0,0,0,0.04)); }
.media-dot.is-active::after { background: rgba(111,243,255,0.9); }
.media-dot-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #050505;
  border-radius: 13px;
  pointer-events: none;
  transition: opacity 140ms ease;
}
.media-dot:not(.is-active) .media-dot-thumb { opacity: 0.88; }
.media-dot.is-active .media-dot-thumb { opacity: 1; }

.inline-link { color: #fff; text-decoration: underline; text-underline-offset: 0.2em; }
.site-footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.4rem 0 2rem; background: rgba(0,0,0,0.28); }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-note, .site-footer p { color: var(--text-soft); }

@media (max-width: 1100px) {
  .mask-grid,
  .character-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .character-card-main {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 1100px) {
  .nav-menu-wrap {
    flex: 1 1 auto;
    min-width: 0;
  }
  .site-nav a,
  .site-nav a:last-child {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .two-column, .legal-grid, .feature-grid, .character-grid { grid-template-columns: 1fr; }
  .character-card-main {
    grid-column: span 1;
  }
  .character-image-wrap,
  .character-image-wrap-main {
    min-height: 320px;
  }
  .character-card-main .character-image {
    max-height: 400px;
  }
  .character-image {
    max-height: 400px;
  }
  .media-slider-stage { min-height: 420px; }
}

@media (max-width: 860px) {
  .header-inner { align-items: flex-start; padding: 0.7rem 0; }
  .header-controls { flex-direction: column; align-items: flex-end; }
}

@media (max-width: 760px) {
  html { font-size: 13px; }
  body::before {
    position: fixed;
    inset: 0;
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(6, 8, 10, 0.26) 0%, rgba(6, 8, 10, 0.12) 35%, rgba(6, 8, 10, 0.26) 100%),
      radial-gradient(circle at center, rgba(24, 183, 216, 0.06), transparent 45%),
      url("../img/backgrounds/mobile-background.png") center center / cover no-repeat;
    opacity: 0.5;
  }
  .header-inner {
    min-height: 58px;
    gap: 0.5rem;
    padding-right: 0;
    position: relative;
    justify-content: center;
  }
  .header-brand-area {
    gap: 0.45rem;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .brand-logo {
    height: clamp(76px, 16.5vw, 106px);
    max-width: min(76vw, 430px);
  }
  .site-header .language-switcher:not(.language-switcher-mobile) {
    display: none;
  }
  .mobile-language-menu-wrap {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: #fff;
    font: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-language-menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    right: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: 180px;
    max-width: min(220px, calc(100vw - 3rem));
    padding: 0.75rem;
    border-radius: 15px;
    background: rgba(14,14,14,0.98);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow);
  }
  .mobile-language-menu.is-open {
    display: flex;
  }
  .mobile-lang-option {
    width: 100%;
    justify-content: flex-start;
    min-height: 36px;
    padding: 0.55rem 0.72rem;
    font-size: 1.5rem;
    border-radius: 12px;
    color: #7ff7ff;
    letter-spacing: 0.02em;
  }
  .mobile-lang-option.is-active {
    background: rgba(111,243,255,0.14);
    color: #fff;
  }
  .language-switcher {
    display: inline-flex;
    flex: 0 0 auto;
    min-width: 0;
    width: fit-content;
    padding: 0.18rem;
  }
  .language-switcher .lang-button {
    min-height: 30px;
    padding: 0.38rem 0.42rem;
    font-size: 0.72rem;
  }
  .language-switcher-mobile {
    display: none;
  }
  .header-company-logo {
    display: none;
  }
  .header-controls {
    position: static;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
  }
  .nav-menu-wrap {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; font-size: 0.95rem; margin: 0; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    min-width: min(220px, calc(100vw - 1rem));
    padding: 0.75rem;
    border-radius: 15px;
    background: rgba(14,14,14,0.98);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a,
  .site-nav a:last-child {
    width: 100%;
    min-width: 0;
    min-height: 36px;
    padding: 0.55rem 0.72rem;
    font-size: 1.50rem;
  }
  .hero {
    min-height: 66svh;
    background: transparent;
  }
  .hero-bg-video {
    display: none;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.2)), linear-gradient(90deg, rgba(0,0,0,0.14) 0%, rgba(0,0,0,0.06) 55%, rgba(0,0,0,0.12) 100%), radial-gradient(circle at 70% 30%, rgba(24,183,216,0.04), transparent 24%);
  }
  .hero-company-logo {
    top: 1.8rem;
    right: 0.7rem;
  }
  .hero-company-logo-image {
    height: clamp(62px, 15vw, 90px);
    max-width: min(36vw, 150px);
  }
  .hero-inner {
    padding: 1rem 0 3rem;
  }
  .eyebrow,
  .hero .eyebrow,
  .trailer-heading .section-label,
  .about-label,
  .media-label,
  .features-label,
  .masks-label,
  .characters-label,
  .mood-label {
    font-size: 1.42rem;
  }
  h1 {
    font-size: clamp(2.5rem, 8.5vw, 3.9rem);
    max-width: 11ch;
  }
  .lead,
  .trailer-copy {
    font-size: 1.48rem;
    line-height: 1.45;
    max-width: 32ch;
  }
  .features-title,
  .masks-title,
  .characters-title,
  .trailer-title,
  .legal-company,
  h2 {
    font-size: clamp(1.35rem, 6vw, 1.9rem);
  }
  .about-title,
  .media-title,
  .trailer-title,
  .features-title,
  .masks-title,
  .characters-title {
    font-size: 3rem;
  }
  .hero-actions {
    gap: 0.45rem;
    margin-top: 0.85rem;
  }
  .hero-actions .button {
    min-height: 38px;
    padding: 0.58rem 0.82rem;
    font-size: 1.32rem;
  }
  .button-buy {
    margin-left: 0.45rem;
    min-height: 40px;
    padding: 0.62rem 0.9rem;
    font-size: 1.38rem;
  }
  .hero-platforms {
    gap: 0.45rem;
    margin-left: 0.35rem;
    margin-top: 2rem;
  }
  .platform-button {
    width: 84px;
    height: 84px;
    border-radius: 20px;
  }
  .platform-icon {
    width: 38px;
    height: 38px;
  }
  .section { padding: 2.4rem 0; }
  .section-tight { padding: 2rem 0; }
  .content-card,
  .feature-card,
  .mask-card,
  .media-slider,
  .trailer-stage {
    padding: 0.82rem;
    border-radius: 16px;
  }
  .two-column, .legal-grid, .feature-grid { grid-template-columns: 1fr; }
  .mask-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.6rem; }
  .character-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .about-copy { font-size: 1.48rem; }
  .about-copy + .about-copy { margin-top: 0.95rem; }
  .mood-list li { font-size: 1.48rem; }
  .feature-card h3 { font-size: 2rem; }
  .feature-card p,
  .masks-intro,
  .characters-intro { font-size: 1.48rem; }
  .mask-card,
  .character-card {
    padding: 0.7rem;
  }
  .mask-card h3,
  .character-card h3 { font-size: 2rem; }
  .mask-meta { margin: 2.45rem 0 0.16rem; }
  .mask-card p:last-child,
  .character-card p { font-size: 1.34rem; }
  .mask-image { width: min(100%, 96px); max-height: 84px; }
  .character-card-main {
    grid-column: span 1;
  }
  .character-image-wrap,
  .character-image-wrap-main {
    min-height: 320px;
    margin-bottom: 0.7rem;
  }
  .character-card-main .character-image {
    max-height: 420px;
  }
  .character-image {
    width: auto;
    max-width: min(100%, 260px);
    max-height: 360px;
  }
  .trailer-play-button { width: 52px; height: 52px; font-size: 1.15rem; }
  .trailer-youtube-badge {
    right: 0.55rem;
    bottom: 0.55rem;
    padding: 0.34rem 0.48rem;
  }
  .trailer-youtube-text { font-size: 0.62rem; }
  .media-slider-stage { min-height: 210px; }
  .media-slider-image { height: 30vh; }
  .media-slider-nav { width: 36px; height: 36px; font-size: 1.4rem; }
  .media-slider-prev { left: 0.35rem; }
  .media-slider-next { right: 0.35rem; }
  .media-slider-counter {
    left: 0.55rem;
    bottom: 0.55rem;
    padding: 0.34rem 0.52rem;
    font-size: 0.66rem;
  }
  .media-slider-footer { flex-direction: column; align-items: flex-start; margin-top: 0.25rem; }
  .media-slider-dots {
    padding: 0.04rem 0.04rem 0.6rem;
    gap: 0.32rem;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scroll-snap-type: x proximity;
  }
  .media-dot {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    scroll-snap-align: start;
  }
  .media-dot-thumb { border-radius: 9px; }
  .media-slider-dots::-webkit-scrollbar { height: 14px; }
  .footer-inner {
    flex-direction: column;
    gap: 0.35rem;
  }
}

@media (max-width: 520px) {
  html { font-size: 12px; }
  body::before {
    position: fixed;
    inset: 0;
    min-height: 100svh;
    background:
      linear-gradient(180deg, rgba(6, 8, 10, 0.24) 0%, rgba(6, 8, 10, 0.1) 35%, rgba(6, 8, 10, 0.24) 100%),
      radial-gradient(circle at center, rgba(24, 183, 216, 0.05), transparent 45%),
      url("../img/backgrounds/mobile-background.png") center center / cover no-repeat;
    opacity: 0.52;
  }
  .brand-logo {
    height: 58px;
    max-width: 295px;
  }
  .language-switcher {
    flex: 0 0 auto;
    min-width: 0;
    width: fit-content;
  }
  .language-switcher .lang-button {
    padding: 0.34rem 0.36rem;
    font-size: 0.68rem;
  }
  .hero-company-logo-image {
    height: clamp(54px, 18vw, 78px);
    max-width: min(34vw, 124px);
  }
  .hero-inner {
    padding: 0.6rem 0 2.6rem;
  }
  .hero-actions {
    gap: 0.38rem;
  }
  .button-buy {
    margin-left: 0;
  }
  .hero-platforms {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
  }
  .platform-button {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }
  .platform-icon {
    width: 34px;
    height: 34px;
  }
  .mask-grid,
  .character-grid { gap: 0.6rem; }
  .mask-card,
  .character-card {
    padding: 0.62rem;
  }
  .mask-image { width: min(100%, 82px); max-height: 74px; }
  .character-grid { grid-template-columns: 1fr; }
  .character-card-main {
    grid-column: span 1;
  }
  .character-image-wrap,
  .character-image-wrap-main {
    min-height: 250px;
  }
  .character-card-main .character-image {
    max-height: 320px;
  }
  .character-image {
    max-width: min(100%, 220px);
    max-height: 280px;
  }
  .media-dot { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  .mask-card, .lang-button, .site-nav a, .button, .media-dot, .media-dot-thumb, .media-slider-nav, .trailer-thumbnail, .trailer-play-button, .trailer-youtube-badge {
    transition: none;
  }
}
