

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: #0A0E17; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  color: #FFFFFF;
  min-height: 100vh;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: center top;
}
a { color: #0055FF; text-decoration: none; transition: color 300ms ease; }
a:hover { color: #FFFFFF; }
img { display: block; max-width: 100%; }
input, button, textarea, select { font-family: inherit; }
::selection { background: #0055FF; color: #fff; }
input::placeholder, textarea::placeholder { color: #A0AABF; opacity: .7; }
h1, h2, h3, h4, h5, h6 { margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

@keyframes jmFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes jmMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes jmFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes jmPulse {
  0%, 100% { opacity: .45; }
  50% { opacity: 1; }
}
@keyframes jmSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  display: block;
}
.eyebrow__dot--blue { background: #0055FF; }
.eyebrow__dot--gold { background: #D4AF37; }
.eyebrow__text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A0AABF;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(10,14,23,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-gate--hidden { display: none; }
.age-gate__box {
  width: 100%;
  max-width: 560px;
  border: 1px solid #0055FF;
  background: #1A1F2B;
  padding: 48px;
  animation: jmFade 300ms ease both;
}
.age-gate__icon {
  display: block;
  margin-bottom: 24px;
}
.age-gate__title {
  font-size: 56px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.age-gate__text {
  font-size: 16px;
  color: #A0AABF;
  max-width: 44ch;
  margin-bottom: 36px;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.age-gate__btn-yes {
  width: 100%;
  padding: 26px 24px;
  border: 1px solid #0055FF;
  background: #0055FF;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 300ms ease, opacity 300ms ease;
}
.age-gate__btn-yes:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.age-gate__btn-no {
  width: 100%;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #A0AABF;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 300ms ease, border-color 300ms ease;
}
.age-gate__btn-no:hover {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.5);
}

.age-denied {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0A0E17;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.age-denied--hidden { display: none; }
.age-denied__text {
  font-size: 20px;
  font-weight: 500;
  color: #FFFFFF;
  text-align: center;
  max-width: 520px;
  line-height: 1.4;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 130;
  background: #1A1F2B;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  animation: jmFade 300ms ease both;
}
.cookie-banner--hidden { display: none; }
.cookie-banner__text {
  font-size: 14px;
  color: #A0AABF;
  max-width: 72ch;
  line-height: 1.5;
}
.cookie-banner__text a {
  color: #0055FF;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__accept {
  padding: 12px 24px;
  background: #0055FF;
  border: 1px solid #0055FF;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 300ms ease;
}
.cookie-banner__accept:hover { opacity: 0.9; }
.cookie-banner__decline {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #A0AABF;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 300ms ease, border-color 300ms ease;
}
.cookie-banner__decline:hover { color: #FFFFFF; border-color: rgba(255,255,255,0.5); }

.top-bar {
  min-height: 40px;
  background: #1A1F2B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar__text {
  max-width: 1100px;
  font-size: 13px;
  line-height: 1.35;
  color: #A0AABF;
  text-align: center;
}
.top-bar__text a {
  color: #0055FF;
}

.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header {
  position: relative;
  z-index: 99;
  background: rgba(10,14,23,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 32px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  flex: 0 0 auto;
}
.site-header__logo:hover { color: #FFFFFF; }
.site-header__logo-dot {
  width: 10px;
  height: 10px;
  background: #0055FF;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
  min-width: 0;
}
.site-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: #A0AABF;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 300ms ease, border-color 300ms ease;
}
.site-nav__link:hover { color: #FFFFFF; }
.site-nav__link--active {
  color: #FFFFFF;
  border-bottom-color: #0055FF;
}

.hamburger {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  flex: 0 0 auto;
}
.hamburger__line {
  width: 18px;
  height: 1px;
  background: #FFFFFF;
  display: block;
  transition: transform 300ms ease, opacity 300ms ease;
}
.hamburger--open .hamburger__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.hamburger--open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger--open .hamburger__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #1A1F2B;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 8px 32px 24px;
  animation: jmFade 300ms ease both;
}
.mobile-menu--open { display: block; }
.mobile-menu__link {
  display: block;
  padding: 15px 0;
  font-size: 17px;
  font-weight: 500;
  color: #A0AABF;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 300ms ease;
}
.mobile-menu__link:hover { color: #FFFFFF; }
.mobile-menu__link--active { color: #FFFFFF; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}
.btn-login {
  padding: 11px 20px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 300ms ease, transform 300ms ease;
}
.btn-login:hover {
  border-color: #FFFFFF;
  transform: translateY(-1px);
}
.btn-register {
  padding: 11px 22px;
  background: #0055FF;
  border: 1px solid #0055FF;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 300ms ease, transform 300ms ease;
}
.btn-register:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(10,14,23,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.auth-overlay--hidden { display: none; }
.auth-modal {
  width: 100%;
  max-width: 440px;
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.1);
  animation: jmFade 300ms ease both;
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.auth-tab {
  padding: 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #A0AABF;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 300ms ease;
}
.auth-tab--active {
  color: #FFFFFF;
  border-bottom-color: #0055FF;
}
.auth-body {
  padding: 36px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.auth-success__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.auth-success__text {
  font-size: 15px;
  color: #A0AABF;
  margin-bottom: 24px;
}

.form-field { display: block; }
.form-field__label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A0AABF;
  margin-bottom: 8px;
}
.form-field__input {
  width: 100%;
  padding: 13px 14px;
  background: #0A0E17;
  border: 1px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
  font-size: 15px;
  outline: none;
  transition: border-color 300ms ease;
  line-height: 1.6;
}
.form-field__input:focus {
  border-color: #0055FF;
}
.form-field__input--error {
  border-color: #D4AF37;
}
.form-field__textarea {
  width: 100%;
  padding: 13px 14px;
  background: #0A0E17;
  border: 1px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
  font-size: 15px;
  outline: none;
  transition: border-color 300ms ease;
  line-height: 1.6;
  font-family: inherit;
  resize: vertical;
}
.form-field__textarea:focus {
  border-color: #0055FF;
}
.form-field__textarea--error {
  border-color: #D4AF37;
}
.form-field__error {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  color: #D4AF37;
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
}
.form-check__input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: #0055FF;
  flex-shrink: 0;
}
.form-check__text {
  font-size: 13px;
  line-height: 1.5;
  color: #A0AABF;
}
.form-check__text a { color: #0055FF; }

.btn-primary {
  width: 100%;
  padding: 17px 24px;
  background: #0055FF;
  border: 1px solid #0055FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 300ms ease, transform 300ms ease;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.btn-primary--inline {
  width: auto;
  align-self: flex-start;
  padding: 17px 34px;
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(0,85,255,0.15), transparent 60%);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid-line--v1 {
  position: absolute;
  top: 0; bottom: 0;
  left: 16.6667%;
  width: 1px;
  background: rgba(255,255,255,0.02);
}
.hero__grid-line--v2 {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.02);
}
.hero__grid-line--v3 {
  position: absolute;
  top: 0; bottom: 0;
  left: 83.3333%;
  width: 1px;
  background: rgba(255,255,255,0.02);
}
.hero__grid-line--h1 {
  position: absolute;
  left: 0; right: 0;
  top: 28%;
  height: 1px;
  background: rgba(255,255,255,0.02);
}
.hero__grid-line--h2 {
  position: absolute;
  left: 0; right: 0;
  top: 64%;
  height: 1px;
  background: rgba(255,255,255,0.02);
}
.hero__gold-dot {
  position: absolute;
  left: 50%;
  top: 64%;
  width: 7px;
  height: 7px;
  margin: -3px 0 0 -3px;
  background: #D4AF37;
  box-shadow: 0 0 18px 4px rgba(212,175,55,0.5);
  animation: jmPulse 4s ease-in-out infinite;
}
.hero__sphere {
  position: absolute;
  right: 5%;
  top: 10%;
  z-index: 1;
  width: 45vw;
  max-width: 650px;
  height: auto;
  aspect-ratio: 1200/676;
  object-fit: contain;
  opacity: 0.85;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse 62% 62% at 42% 50%, #000 55%, transparent 82%);
  mask-image: radial-gradient(ellipse 62% 62% at 42% 50%, #000 55%, transparent 82%);
  pointer-events: none;
  animation: jmFloat 6s ease-in-out infinite;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  padding: 140px 32px 100px;
}
.hero__title {
  font-size: clamp(5rem, 13vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: #FFFFFF;
  text-shadow: 0 0 80px rgba(10,14,23,0.7);
}
.hero__subtitle {
  display: block;
  position: relative;
  z-index: 3;
  margin-top: -3vw;
  margin-left: 0.4vw;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 0.85;
  text-transform: uppercase;
  color: #0055FF;
}
.hero__body {
  margin-top: clamp(48px, 6vw, 88px);
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  gap: 40px 64px;
  align-items: end;
  justify-content: start;
}
.hero__desc-wrap {
  position: relative;
  min-width: 0;
}
.hero__desc-bg {
  position: absolute;
  left: -10%;
  top: -30%;
  width: 120%;
  height: 160%;
  pointer-events: none;
  background: radial-gradient(ellipse at 35% 50%, rgba(10,14,23,0.94) 0%, rgba(10,14,23,0.78) 48%, rgba(10,14,23,0) 80%);
}
.hero__tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.hero__tag {
  padding: 7px 15px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #A0AABF;
}
.hero__desc {
  position: relative;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.7;
  color: #C6CEDD;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  min-width: 0;
}
.hero__btn-primary {
  height: 60px;
  padding: 0 32px;
  background: #0055FF;
  border: 1px solid #0055FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 300ms ease, transform 300ms ease;
}
.hero__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  height: 60px;
  padding: 0 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 300ms ease, transform 300ms ease;
}
.hero__btn-secondary:hover {
  border-color: #FFFFFF;
  transform: translateY(-2px);
  color: #FFFFFF;
}
.hero__disclaimer {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 5;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,14,23,0.96);
}
.hero__disclaimer-text {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 32px;
  font-size: 13px;
  line-height: 1.5;
  color: #FFFFFF;
}

.marquee-banner {
  overflow: hidden;
  white-space: nowrap;
  background: #0055FF;
  color: #0A0E17;
  padding: 18px 0;
}
.marquee-banner__track {
  display: inline-flex;
  width: 200%;
  animation: jmMarquee 24s linear infinite;
}
.marquee-banner__text {
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}

.library-panel {
  max-width: 1440px;
  margin: -40px auto 0;
  position: relative;
  z-index: 10;
  padding: 0 32px;
}
.library-panel__inner {
  background: #1A1F2B;
  padding: 64px;
  border: 1px solid rgba(255,255,255,0.06);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 24px;
}
.library-panel__left {
  grid-column: 1 / span 6;
  min-width: 0;
}
.library-panel__right {
  grid-column: 7 / span 6;
  min-width: 0;
  align-self: end;
}
.library-panel__label-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.library-panel__label-dot {
  width: 6px;
  height: 6px;
  background: #D4AF37;
  display: block;
}
.library-panel__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A0AABF;
}
.library-panel__text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.45;
  color: #FFFFFF;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.category-tile {
  background: #0A0E17;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.category-tile__icon {
  width: 40px;
  height: 40px;
  display: block;
  color: #FFFFFF;
}
.category-tile__name {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.3;
}

.section-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 48px;
}
.section-header__title {
  grid-column: 1 / span 5;
  min-width: 0;
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #FFFFFF;
}
.section-header__desc {
  grid-column: 7 / span 6;
  min-width: 0;
  font-size: 16px;
  color: #A0AABF;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.game-grid--large {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 28px;
}
.game-card {
  display: block;
  color: #FFFFFF;
  transition: transform 300ms ease;
}
.game-card:hover {
  transform: scale(1.02);
  color: #FFFFFF;
}
.game-card__img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.game-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.game-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  padding: 5px 10px;
  background: #0055FF;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
}
.game-card__title {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.game-card__title--large {
  margin-top: 16px;
  font-size: 16px;
}
.game-card__genre {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A0AABF;
}
.game-card__desc {
  margin-top: 6px;
  font-size: 14px;
  color: #A0AABF;
}

.why-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 128px 32px 0;
}
.why-section__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  position: relative;
}
.why-section__left {
  grid-column: 1 / span 6;
  min-width: 0;
}
.why-section__title {
  font-size: clamp(44px, 5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.why-section__text {
  font-size: 16px;
  color: #A0AABF;
  margin-bottom: 24px;
}
.why-section__text:last-child { margin-bottom: 0; }
.why-section__right {
  grid-column: 7 / span 6;
  min-width: 0;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(255,255,255,0.08);
}
.why-section__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.why-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,23,0.5), rgba(10,14,23,0.85));
}
.why-section__grid-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.why-section__grid-v1 {
  position: absolute;
  top: 0; bottom: 0;
  left: 33.3333%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.why-section__grid-v2 {
  position: absolute;
  top: 0; bottom: 0;
  left: 66.6667%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.why-section__grid-h {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.why-section__gold {
  position: absolute;
  left: 33.3333%;
  top: 50%;
  width: 9px;
  height: 9px;
  margin: -4px 0 0 -4px;
  background: #D4AF37;
  box-shadow: 0 0 22px 6px rgba(212,175,55,0.55);
  animation: jmPulse 4s ease-in-out infinite;
}
.why-section__watermark {
  position: absolute;
  left: -6%;
  bottom: -8%;
  font-size: 19vw;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.22);
  white-space: nowrap;
}

.reviews-section {
  padding: 128px 0 0;
}
.reviews-section__header {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews-section__title {
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #FFFFFF;
}
.reviews-section__hint {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A0AABF;
}
.reviews-section__marquee {
  overflow: hidden;
  padding: 4px 0 32px;
}
.reviews-section__marquee:hover .reviews-track { animation-play-state: paused; }
.reviews-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: jmMarquee 60s linear infinite;
}
.review-card {
  flex: 0 0 300px;
  width: 300px;
  background: #1A1F2B;
  border-left: 2px solid #0055FF;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.review-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: #FFFFFF;
}
.review-card__author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A0AABF;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.faq-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 32px 128px;
}
.faq-section__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 24px;
}
.faq-section__left {
  grid-column: 1 / span 4;
  min-width: 0;
}
.faq-section__title {
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #FFFFFF;
}
.faq-section__link {
  display: inline-block;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,85,255,0.5);
  padding-bottom: 2px;
}
.faq-section__right {
  grid-column: 6 / span 7;
  min-width: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  background: transparent;
  border: 0;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  cursor: pointer;
}
.faq-item__icon {
  flex: 0 0 auto;
  font-size: 20px;
  color: #A0AABF;
  transition: transform 300ms ease, color 300ms ease;
}
.faq-item--open .faq-item__icon {
  transform: rotate(45deg);
  color: #0055FF;
}
.faq-item__answer {
  display: none;
  max-width: 62ch;
  font-size: 16px;
  color: #A0AABF;
  padding-bottom: 24px;
  animation: jmFade 300ms ease both;
}
.faq-item--open .faq-item__answer { display: block; }

.site-footer {
  background: #0A0E17;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 64px 24px;
}
.site-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 48px 32px;
}
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.site-footer__logo-dot {
  width: 10px;
  height: 10px;
  background: #0055FF;
  display: block;
}
.site-footer__logo-text {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.site-footer__info {
  font-size: 14px;
  color: #A0AABF;
  margin-bottom: 8px;
}
.site-footer__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.site-footer__link {
  font-size: 14px;
  color: #A0AABF;
  transition: color 300ms ease;
}
.site-footer__link:hover { color: #FFFFFF; }

.footer-badges {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #FFFFFF;
}
.footer-badge--text {
  padding: 9px 16px;
  font-weight: 500;
  color: #A0AABF;
}
.footer-badge--gold {
  border-color: rgba(212,175,55,0.5);
  color: #D4AF37;
  font-weight: 500;
}
.footer-disclaimer {
  margin-top: 32px;
  max-width: 100ch;
  font-size: 13px;
  line-height: 1.65;
  color: #FFFFFF;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-bottom__link {
  font-size: 13px;
  color: #A0AABF;
  transition: color 300ms ease;
}
.footer-bottom__link:hover { color: #FFFFFF; }
.footer-bottom__copy {
  font-size: 13px;
  color: #A0AABF;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-form__input {
  width: 100%;
  padding: 13px 14px;
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.14);
  color: #FFFFFF;
  font-size: 14px;
  outline: none;
  transition: border-color 300ms ease;
}
.newsletter-form__input:focus { border-color: #0055FF; }
.newsletter-form__input--error { border-color: #D4AF37; }
.newsletter-form__btn {
  width: 100%;
  padding: 13px;
  background: #0055FF;
  border: 1px solid #0055FF;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: opacity 300ms ease;
}
.newsletter-form__btn:hover { opacity: 0.9; }
.newsletter-form__check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
}
.newsletter-form__checkbox {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  accent-color: #0055FF;
  flex-shrink: 0;
}
.newsletter-form__check-text {
  font-size: 12px;
  line-height: 1.5;
  color: #A0AABF;
}
.newsletter-form__error {
  font-size: 12px;
  color: #D4AF37;
}
.newsletter-form__success {
  font-size: 14px;
  color: #FFFFFF;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.social-link {
  font-size: 13px;
  color: #A0AABF;
  transition: color 300ms ease;
}
.social-link:hover { color: #FFFFFF; }

.page-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 80px 32px 128px;
}
.page-section--games {
  padding-top: 112px;
  padding-bottom: 0;
}
.page-title {
  font-size: clamp(48px, 6.4vw, 104px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
  color: #FFFFFF;
}
.page-title--small {
  font-size: clamp(44px, 5.8vw, 96px);
}
.page-title--legal {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.page-intro {
  margin-top: 28px;
  max-width: 60ch;
  font-size: 17px;
  color: #A0AABF;
}

.filter-bar {
  margin: 56px 0 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chip {
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #A0AABF;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 300ms ease, color 300ms ease, background 300ms ease;
}
.filter-chip:hover { border-color: rgba(255,255,255,0.4); color: #FFFFFF; }
.filter-chip--active {
  border-color: #0055FF;
  background: #0055FF;
  color: #FFFFFF;
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.filter-search__input {
  width: 220px;
  padding: 12px 16px;
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.12);
  color: #FFFFFF;
  font-size: 14px;
  outline: none;
  transition: border-color 300ms ease;
}
.filter-search__input:focus { border-color: #0055FF; }
.filter-search__count {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #A0AABF;
  white-space: nowrap;
}

.game-detail { padding: 56px 32px 128px; }
.game-detail__back {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #A0AABF;
  transition: color 300ms ease;
}
.game-detail__back:hover { color: #FFFFFF; }
.game-detail__grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 32px;
}
.game-detail__main {
  grid-column: 1 / span 8;
  min-width: 0;
}
.game-detail__sidebar {
  grid-column: 9 / span 4;
  min-width: 0;
}
.game-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.game-frame__iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 12px;
  z-index: 2;
}
.game-frame__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.game-frame__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(10,14,23,0.55), rgba(10,14,23,0.92));
}
.game-frame__content {
  position: relative;
  text-align: center;
  padding: 24px;
}
.game-frame__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A0AABF;
  margin-bottom: 20px;
}
.game-frame__play-btn {
  padding: 20px 40px;
  background: #0055FF;
  border: 1px solid #0055FF;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 300ms ease, transform 300ms ease;
}
.game-frame__play-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.game-frame__note {
  margin-top: 20px;
  font-size: 13px;
  color: #A0AABF;
}
.game-detail__title {
  margin-top: 40px;
  font-size: clamp(40px, 4.8vw, 76px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: #FFFFFF;
}
.game-detail__desc {
  margin-top: 24px;
  max-width: 58ch;
  font-size: 18px;
  color: #A0AABF;
}

.game-info-panel {
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px;
}
.game-info-panel__heading {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A0AABF;
  margin-bottom: 18px;
}
.game-info-panel__rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.game-info-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.game-info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.game-info-row__label {
  font-size: 14px;
  color: #A0AABF;
}
.game-info-row__value {
  font-size: 14px;
  font-weight: 500;
  color: #FFFFFF;
}
.game-detail__disclaimer {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
  color: #A0AABF;
}

.related-section {
  grid-column: 1 / span 12;
  min-width: 0;
}
.related-section__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: #FFFFFF;
  margin-bottom: 32px;
}

.about-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 32px;
}
.about-grid__left {
  grid-column: 1 / span 6;
  min-width: 0;
}
.about-grid__right {
  grid-column: 8 / span 5;
  min-width: 0;
}
.about-grid__text {
  font-size: 17px;
  color: #A0AABF;
  margin-bottom: 24px;
}
.about-grid__text:last-child { margin-bottom: 0; }
.about-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.about-image-wrap__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.about-image-wrap__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,23,0.35), rgba(10,14,23,0.85));
}
.about-address-panel {
  margin-top: 32px;
  padding: 28px;
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-address-panel__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.about-address-panel__text {
  font-size: 15px;
  color: #A0AABF;
  line-height: 1.7;
}

.contact-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px 32px;
}
.contact-grid__left {
  grid-column: 1 / span 7;
  min-width: 0;
}
.contact-grid__right {
  grid-column: 9 / span 4;
  min-width: 0;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 620px;
}
.contact-success {
  padding: 36px;
  background: #1A1F2B;
  border: 1px solid #0055FF;
}
.contact-success__title {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.contact-success__text {
  font-size: 16px;
  color: #A0AABF;
}
.contact-info-panel {
  padding: 28px;
  background: #1A1F2B;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-info-panel__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 18px;
}
.contact-info-panel__text {
  font-size: 15px;
  color: #A0AABF;
  line-height: 1.7;
  margin-bottom: 20px;
}
.contact-info-panel__detail {
  font-size: 15px;
  color: #A0AABF;
  margin-bottom: 6px;
}
.contact-info-panel__detail:last-child { margin-bottom: 0; }
.contact-map {
  margin-top: 24px;
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #0A0E17;
}
.contact-map__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.contact-map__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-map__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: rgba(10,14,23,0.92);
}
.contact-map__caption-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFFFFF;
}

.responsible-intro {
  margin-top: 32px;
  font-size: 18px;
  color: #FFFFFF;
}
.responsible-sub {
  margin-top: 24px;
  font-size: 17px;
  color: #A0AABF;
}
.responsible-resources {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.responsible-resource {
  background: #1A1F2B;
  padding: 24px 28px;
}
.responsible-resource__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A0AABF;
  margin-bottom: 6px;
}
.responsible-resource__value {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
}
.responsible-resource__links {
  font-size: 16px;
  color: #A0AABF;
}
.responsible-resource__links a { color: #0055FF; }
.responsible-note {
  margin-top: 40px;
  font-size: 14px;
  color: #A0AABF;
}

.legal-meta {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #A0AABF;
}
.legal-content {
  margin-top: 56px;
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 16px;
}
.legal-section__text {
  font-size: 16px;
  line-height: 1.75;
  color: #A0AABF;
  margin-bottom: 16px;
}
.legal-section__text:last-child { margin-bottom: 0; }

.page-404 {
  position: relative;
  overflow: hidden;
  padding: 120px 0 160px;
}
.page-404__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-404__line--v1 {
  position: absolute;
  top: 0; bottom: 0;
  left: 25%;
  width: 1px;
  background: rgba(255,255,255,0.05);
}
.page-404__line--v2 {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.05);
}
.page-404__line--v3 {
  position: absolute;
  top: 0; bottom: 0;
  left: 75%;
  width: 1px;
  background: rgba(255,255,255,0.05);
}
.page-404__line--h {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.05);
}
.page-404__content {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.page-404__big-text {
  display: block;
  font-size: 26vw;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
}
.page-404__title {
  margin-top: -2vw;
  position: relative;
  font-size: clamp(36px, 4.4vw, 68px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: #FFFFFF;
}
.page-404__desc {
  margin-top: 28px;
  max-width: 56ch;
  font-size: 17px;
  color: #A0AABF;
}
.page-404__btn {
  display: inline-block;
  margin-top: 36px;
  padding: 17px 30px;
  background: #0055FF;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 300ms ease, transform 300ms ease;
}
.page-404__btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.faq-page__list {
  margin-top: 64px;
  max-width: 900px;
}

@media (max-width: 1120px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .header-actions { display: none; }
}

@media (max-width: 1000px) {
  .grid-12 { grid-template-columns: 1fr; }
  .section-header { grid-template-columns: 1fr; }
  .section-header__title { grid-column: 1 / -1; }
  .section-header__desc { grid-column: 1 / -1; }
  .library-panel__inner { grid-template-columns: 1fr; }
  .library-panel__left { grid-column: 1 / -1; }
  .library-panel__right { grid-column: 1 / -1; }
  .why-section__grid { grid-template-columns: 1fr; }
  .why-section__left { grid-column: 1 / -1; }
  .why-section__right { grid-column: 1 / -1; }
  .faq-section__grid { grid-template-columns: 1fr; }
  .faq-section__left { grid-column: 1 / -1; }
  .faq-section__right { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid__left { grid-column: 1 / -1; }
  .about-grid__right { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid__left { grid-column: 1 / -1; }
  .contact-grid__right { grid-column: 1 / -1; }
  .game-detail__grid { grid-template-columns: 1fr; }
  .game-detail__main { grid-column: 1 / -1; }
  .game-detail__sidebar { grid-column: 1 / -1; }
  .related-section { grid-column: 1 / -1; }
  .hero__body { grid-template-columns: minmax(0, 520px); }
}

@media (max-width: 900px) {
  .hero__sphere {
    position: relative;
    right: auto;
    top: auto;
    width: 78%;
    margin: 8px auto 0;
    opacity: 1;
  }
}

@media (max-width: 760px) {
  .library-panel__inner { padding: 32px 24px; }
  .marquee-banner__text { font-size: 38px; }
  .container { padding-left: 20px; padding-right: 20px; }
  .container--narrow { padding-left: 20px; padding-right: 20px; }
  .hero__content { padding: 100px 20px 80px; }
  .hero__disclaimer-text { padding: 16px 20px; }
  .site-header__inner { padding: 14px 20px; }
  .page-section { padding-left: 20px; padding-right: 20px; }
  .why-section { padding-left: 20px; padding-right: 20px; }
  .faq-section { padding-left: 20px; padding-right: 20px; }
  .library-panel { padding-left: 20px; padding-right: 20px; }
  .reviews-section__header { padding-left: 20px; padding-right: 20px; }
  .game-detail { padding-left: 20px; padding-right: 20px; }
  .site-footer { padding: 48px 20px; }
  .age-gate__box { padding: 32px 24px; }
  .age-gate__title { font-size: 40px; }
  .filter-search__input { width: 160px; }
  .review-card { flex: 0 0 260px; width: 260px; padding: 22px 20px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero__subtitle { font-size: clamp(1.6rem, 8vw, 2.5rem); }
  .game-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
  .game-grid--large { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
  .filter-bar { flex-direction: column; align-items: stretch; }
  .filter-search { flex-direction: column; }
  .filter-search__input { width: 100%; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
  .page-title { font-size: clamp(32px, 10vw, 48px); }
  .page-title--small { font-size: clamp(32px, 10vw, 44px); }
  .page-title--legal { font-size: clamp(28px, 8vw, 40px); }
  .mobile-menu { padding: 8px 20px 24px; }
}

@media (max-width: 320px) {
  .hero__content { padding: 80px 16px 60px; }
  .site-header__inner { padding: 10px 16px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .container--narrow { padding-left: 16px; padding-right: 16px; }
  .page-section { padding-left: 16px; padding-right: 16px; }
  .game-grid { grid-template-columns: 1fr; }
  .game-grid--large { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .library-panel__inner { padding: 24px 16px; }
  .why-section { padding-left: 16px; padding-right: 16px; }
  .faq-section { padding-left: 16px; padding-right: 16px; }
  .game-detail { padding-left: 16px; padding-right: 16px; }
  .site-footer { padding: 40px 16px; }
  .hero__btn-primary, .hero__btn-secondary { width: 100%; text-align: center; justify-content: center; }
  .hero__cta { flex-direction: column; }
  .auth-body { padding: 24px; }
  .age-gate__box { padding: 24px 16px; }
  .age-gate__title { font-size: 32px; }
}
