@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;900&family=Rajdhani:wght@500;600;700&display=swap");

.dungeons-page {
  color: #eefcff;
  width: auto;
  max-width: none;
  margin: -2rem calc(50% - 50vw) -3rem;
  overflow: hidden;
  background: #050b18;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-synthesis: none;
  --ink: #050b18;
  --navy: #071327;
  --navy-2: #0a1b34;
  --panel: #0d2240;
  --cyan: #55e8ff;
  --cyan-soft: #a8f5ff;
  --ember: #ffb31a;
  --ember-dark: #e76816;
  --paper: #eefcff;
  --muted: #8ca8bd;
  --line: rgba(116, 213, 232, 0.22);
}

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

.dungeons-page {
  background: var(--ink);
  color: var(--paper);
  -webkit-font-smoothing: antialiased;
}

.dungeons-page button,
.dungeons-page a {
  font: inherit;
}

.dungeons-page button {
  color: inherit;
}

.dungeons-page button:focus-visible,
.dungeons-page a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.dungeons-page.site-shell {
  overflow: hidden;
}

.scroll-cue {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 460px);
  align-items: end;
  gap: clamp(36px, 5vw, 88px);
  min-height: 100vh;
  padding: 160px clamp(24px, 7vw, 134px) clamp(100px, 10vh, 130px);
  background-image: url("/Minecraft-Dungeons-2/Minecraft-Dungeons-2-Date_06-05-26.jpg");
  background-position: calc(50% + var(--hero-shift-x, 0px)) calc(50% + var(--hero-shift-y, 0px));
  background-size: cover;
  isolation: isolate;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(2, 8, 22, 0.25);
  box-shadow: inset 0 -300px 180px rgba(2, 7, 17, 0.96), inset 560px 0 260px rgba(2, 7, 17, 0.52);
}

.hero__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__ambient span {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(97, 239, 255, 0.58) 0%, rgba(97, 239, 255, 0.18) 32%, rgba(97, 239, 255, 0) 72%);
  filter: blur(4px);
  animation: ambientFloat 10s ease-in-out infinite;
}

.hero__ambient span:nth-child(1) {
  top: 14%;
  right: 14%;
  width: 180px;
  height: 180px;
}

.hero__ambient span:nth-child(2) {
  top: 42%;
  right: 28%;
  width: 110px;
  height: 110px;
  animation-delay: -2.4s;
}

.hero__ambient span:nth-child(3) {
  bottom: 16%;
  left: 11%;
  width: 150px;
  height: 150px;
  animation-delay: -4.8s;
}

@keyframes ambientFloat {
  50% { transform: translate3d(0, -16px, 0) scale(1.08); opacity: 0.74; }
}

.hero__content {
  width: min(680px, 62vw);
  padding-left: 28px;
  border-left: 3px solid var(--ember);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.78);
  transform: translate3d(calc(var(--hero-shift-x, 0px) * -0.28), calc(var(--hero-shift-y, 0px) * -0.28), 0);
}

.eyebrow {
  margin: 0 0 18px;
  color: #fff0c0;
  font: 700 14px/1 "Rajdhani", sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow--cyan {
  color: var(--cyan);
}

.eyebrow--ember {
  color: var(--ember);
}

.hero h1,
.section h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(50px, 6.8vw, 108px);
  line-height: 0.94;
}

.hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(225, 247, 252, 0.84);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.9;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__badges span {
  padding: 10px 14px;
  border: 1px solid rgba(176, 237, 249, 0.28);
  background: rgba(4, 17, 37, 0.58);
  color: #ecfbff;
  font: 700 11px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(9px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 27px;
  border: 1px solid transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--ember {
  background: var(--ember);
  color: #281303;
  border-color: #ffe084;
  box-shadow: 6px 6px 0 var(--ember-dark);
}

.button--ember:hover {
  box-shadow: 9px 9px 0 var(--ember-dark);
}

.button--ghost {
  background: rgba(3, 15, 33, 0.58);
  border-color: rgba(176, 237, 249, 0.5);
  color: #e8fbff;
  backdrop-filter: blur(9px);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: statusBlink 1.8s ease-in-out infinite;
}

@keyframes statusBlink {
  50% { opacity: 0.42; transform: scale(0.78); }
}

.hero__panel {
  position: relative;
  display: grid;
  gap: 20px;
  align-self: end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(6, 18, 39, 0.92) 0%, rgba(4, 14, 30, 0.96) 100%);
  border: 1px solid rgba(104, 225, 246, 0.34);
  backdrop-filter: blur(18px);
  box-shadow: 16px 16px 0 rgba(0, 175, 216, 0.16);
  overflow: hidden;
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(calc(var(--hero-shift-x, 0px) * -0.12), calc(var(--hero-shift-y, 0px) * -0.12), 0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero__panel::before,
[data-spotlight]::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(87, 230, 255, 0.22), rgba(87, 230, 255, 0.04) 32%, rgba(87, 230, 255, 0) 62%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 100%);
  transform: translateX(-140%);
  animation: panelSweep 6s linear infinite;
  pointer-events: none;
}

[data-spotlight]:hover::before,
[data-spotlight].is-interacting::before,
.hero__panel:hover::before {
  opacity: 1;
}

@keyframes panelSweep {
  to { transform: translateX(140%); }
}

.hero__panel-head,
.hero__status {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.hero__status {
  justify-content: flex-start;
}

.hero__status > div,
.hero__panel-grid article {
  display: grid;
  gap: 6px;
}

.hero__panel small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.hero__panel strong {
  color: #fff;
  font: 700 18px/1.15 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: 0.04em;
}

.hero__panel-tag {
  flex-shrink: 0;
  padding: 9px 12px;
  border: 1px solid rgba(255, 210, 120, 0.32);
  color: #ffe6b4;
  font: 700 10px/1 "Rajdhani", sans-serif;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 179, 26, 0.12);
}

.hero__panel-grid {
  display: grid;
  gap: 12px;
}

.hero__panel-grid article {
  position: relative;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(116, 213, 232, 0.14);
}

.hero__panel-grid p {
  margin: 0;
  color: #95b4c8;
  font-size: 13px;
  line-height: 1.65;
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(219, 248, 255, 0.65);
  font-size: 10px;
  letter-spacing: 0.18em;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 26px;
  background: var(--cyan);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  50% { transform: scaleY(0.45); opacity: 0.45; }
}

.section {
  position: relative;
  padding: clamp(90px, 10vw, 160px) clamp(24px, 7vw, 134px);
}

.section__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(54px, 6vw, 92px);
  color: #50748d;
}

.section__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #17344c;
}

.section__label span {
  color: var(--ember-dark);
  font: 700 13px/1 "Rajdhani", sans-serif;
}

.section__label p {
  margin: 0;
  font: 700 11px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section__label--light {
  color: #6f93aa;
}

.section__label--light::after {
  background: rgba(112, 198, 217, 0.18);
}

.section h2 {
  font-size: clamp(38px, 5vw, 78px);
  line-height: 1.08;
}

.overview {
  background: #f0f2ec;
  color: #081426;
}

.overview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: start;
}

.overview__copy {
  padding-top: 42px;
  border-top: 4px solid #0d263b;
}

.overview__copy p {
  margin: 0 0 24px;
  color: #3c5362;
  font-size: 16px;
  line-height: 2;
}

.intel-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(70px, 8vw, 126px);
  border-top: 1px solid #bcc9c8;
  border-bottom: 1px solid #bcc9c8;
}

.intel-strip div {
  display: grid;
  gap: 12px;
  min-height: 130px;
  padding: 27px 24px;
  border-right: 1px solid #bcc9c8;
}

.intel-strip div:last-child {
  border-right: 0;
}

.intel-strip span {
  color: #6d7e83;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.intel-strip strong {
  align-self: end;
  font-size: 16px;
}

.features,
.trailer {
  background: var(--navy);
}

.features__intro {
  width: min(820px, 100%);
  margin-bottom: 68px;
}

.feature-console {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1.58fr);
  min-height: 620px;
  border: 1px solid rgba(107, 221, 240, 0.2);
  background: #061021;
  box-shadow: 18px 18px 0 #030914;
}

.feature-console__tabs {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-right: 1px solid rgba(107, 221, 240, 0.2);
}

.feature-console__tabs button {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px;
  border: 0;
  border-bottom: 1px solid rgba(107, 221, 240, 0.14);
  background: #08172c;
  color: #8ca8bd;
  text-align: left;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.feature-console__tabs button:last-child {
  border-bottom: 0;
}

.feature-console__tabs button:hover,
.feature-console__tabs button.is-active {
  background: #103152;
  color: #fff;
}

.feature-console__tabs button.is-active {
  box-shadow: inset 4px 0 0 var(--cyan);
}

.feature-console__tabs span {
  color: var(--cyan);
  font: 700 13px/1 "Rajdhani", sans-serif;
}

.feature-console__tabs strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.feature-console__stage {
  position: relative;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  overflow: hidden;
  isolation: isolate;
}

.feature-console__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 12, 25, 0.16) 0%, rgba(4, 12, 25, 0.34) 50%, rgba(3, 9, 20, 0.96) 100%);
  box-shadow: inset 0 -240px 160px rgba(3, 9, 20, 0.88);
}

@keyframes stageIn {
  from { transform: scale(1.035); opacity: 0.6; }
}

.feature-console__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(280px, 1.18fr) repeat(2, minmax(168px, 0.78fr));
  gap: 14px;
  padding: 18px;
  animation: stageIn 520ms ease both;
}

.feature-shot {
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(127, 228, 245, 0.2);
  background: #071426;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-shot.is-primary {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 8.6;
}

.feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.feature-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 7, 17, 0.02) 32%, rgba(1, 7, 17, 0.78) 100%);
  pointer-events: none;
}

.feature-shot figcaption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  background: rgba(4, 18, 39, 0.72);
  border: 1px solid rgba(106, 225, 243, 0.22);
  color: #eafcff;
  font: 700 11px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-shot:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.feature-shot:hover {
  border-color: rgba(127, 228, 245, 0.42);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.feature-console__content {
  width: auto;
  padding: 38px 40px 42px;
  animation: contentIn 420ms ease both;
}

.feature-console__stage.is-refreshing .feature-console__gallery {
  animation: stageIn 520ms ease both;
}

.feature-console__stage.is-refreshing .feature-console__content {
  animation: contentIn 420ms ease both;
}

@keyframes contentIn {
  from { transform: translateY(16px); opacity: 0; }
}

.feature-console__content > p:first-child {
  color: var(--cyan);
  font: 700 12px/1 "Rajdhani", sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.feature-console__content h3 {
  max-width: 600px;
  margin: 16px 0 0;
  font-size: clamp(29px, 3.2vw, 50px);
  line-height: 1.14;
}

.feature-rule {
  width: 70px;
  height: 4px;
  margin: 24px 0;
  background: var(--ember);
}

.feature-console__content > p:not(:first-child) {
  max-width: 620px;
  margin: 0;
  color: #b9d0dc;
  font-size: 15px;
  line-height: 1.9;
}

.feature-console__content small {
  display: block;
  margin-top: 24px;
  color: #6f95a9;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.world,
.release,
.faq {
  background: #07101f;
}

.world__layout,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
}

.world__statement {
  position: sticky;
  top: 120px;
  align-self: start;
}

.world__statement > p:last-child,
.release__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.signal-list {
  display: grid;
}

.signal-list article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 44px 48px;
  border-top: 1px solid var(--line);
  background: #0a1930;
  transition: transform 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.signal-list article:nth-child(2) {
  background: #0c203b;
}

.signal-list article:hover {
  z-index: 1;
  transform: translateX(-10px);
  background: #113455;
  border-color: rgba(85, 232, 255, 0.24);
}

.signal-list span {
  color: var(--cyan);
  font: 700 11px/1 "Rajdhani", sans-serif;
  letter-spacing: 0.2em;
}

.signal-list h3 {
  margin: 22px 0 14px;
  font-size: 26px;
}

.signal-list p {
  max-width: 580px;
  margin: 0;
  color: #8ea9ba;
  line-height: 1.9;
}

.trailer__heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.35fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 54px;
}

.trailer__heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  padding: 10px;
  border: 1px solid rgba(107, 221, 240, 0.32);
  background: #030812;
  box-shadow: 18px 18px 0 #020610;
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame:hover {
  border-color: rgba(107, 221, 240, 0.5);
  box-shadow: 22px 22px 0 #020610;
}

.release__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(70px, 9vw, 140px);
  align-items: end;
}

.release__copy .button {
  margin-top: 34px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: #0a1930;
  box-shadow: 15px 15px 0 #030812;
}

.countdown div {
  position: relative;
  display: grid;
  gap: 10px;
  padding: clamp(28px, 4vw, 54px) 12px;
  border-right: 1px solid var(--line);
  text-align: center;
  overflow: hidden;
}

.countdown div:last-child {
  border-right: 0;
}

.countdown strong {
  color: var(--paper);
  font: 700 clamp(40px, 5vw, 76px)/0.9 "Rajdhani", sans-serif;
}

.countdown span {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.countdown--hero {
  position: relative;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.countdown--hero::before {
  display: none;
}

.countdown--hero div {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 12px 20px;
  border: 1px solid rgba(85, 232, 255, 0.18);
  border-right: 1px solid rgba(85, 232, 255, 0.18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(8, 25, 47, 0.88) 0%, rgba(7, 19, 38, 0.96) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.countdown--hero div::before {
  display: none;
}

.countdown--hero strong {
  font-size: clamp(46px, 4.1vw, 62px);
  line-height: 0.96;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
  text-shadow: none;
}

.countdown--hero span {
  order: -1;
  color: #b7f5ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.countdown--hero small {
  display: none;
}

.countdown--hero [data-count-card].is-ticking {
  animation: tickFlash 260ms ease;
}

@keyframes tickFlash {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-4px) scale(1.03); box-shadow: inset 0 0 0 1px rgba(85, 232, 255, 0.16), 0 0 24px rgba(85, 232, 255, 0.12); }
  100% { transform: translateY(0) scale(1); }
}

.countdown--hero.is-complete {
  border-color: transparent;
}

.countdown--hero.is-complete strong,
.countdown--hero.is-complete span {
  color: #ffe6b4;
}

.release__board {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(85, 232, 255, 0.2);
  background: #0a1930;
  box-shadow: 15px 15px 0 #030812;
  overflow: hidden;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.release__board:hover {
  border-color: rgba(85, 232, 255, 0.34);
  box-shadow: 20px 20px 0 #030812;
}

.release__board article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(116, 213, 232, 0.12);
}

.release__board small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.release__board strong {
  font: 700 20px/1.2 "Rajdhani", "Noto Sans SC", sans-serif;
}

.release__board p {
  margin: 0;
  color: #95b4c8;
  line-height: 1.75;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 78px;
}

.platforms span {
  padding: 14px 18px;
  border: 1px solid #254259;
  color: #9db7c6;
  font: 600 13px/1 "Rajdhani", "Noto Sans SC", sans-serif;
  letter-spacing: 0.04em;
}

.faq {
  padding-top: 40px;
}

.faq__list article {
  border-top: 1px solid var(--line);
}

.faq__list article:last-child {
  border-bottom: 1px solid var(--line);
}

.faq__list button {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 27px 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq__list button span,
.faq__list button i {
  color: #587b91;
  font: 600 11px/1 "Rajdhani", sans-serif;
  letter-spacing: 0.1em;
}

.faq__list button strong {
  font-size: 16px;
}

.faq__list button i {
  font-style: normal;
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq__answer p {
  min-height: 0;
  margin: 0 0 0 58px;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.85;
}

.faq__list article.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__list article.is-open .faq__answer p {
  margin-bottom: 28px;
}

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

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: end;
  }

  .hero__content {
    width: min(720px, 100%);
  }

  .hero__panel {
    max-width: 620px;
  }

  .overview__grid,
  .world__layout,
  .faq__grid,
  .release__grid {
    grid-template-columns: 1fr;
  }

  .world__statement {
    position: static;
  }

  .intel-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .intel-strip div:nth-child(2) {
    border-right: 0;
  }

  .intel-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid #bcc9c8;
  }

  .feature-console {
    grid-template-columns: 220px 1fr;
  }

  .feature-console__gallery {
    grid-template-rows: minmax(240px, 1fr) repeat(2, minmax(150px, 0.8fr));
  }

  .feature-shot.is-primary {
    grid-column: 1 / -1;
  }

  .feature-console__content {
    padding: 40px;
  }
}

@media (max-width: 760px) {
  .dungeons-page {
    margin-right: -1rem;
    margin-left: -1rem;
  }

  .hero {
    min-height: 820px;
    padding: 120px 22px 110px;
    background-position: 58% center;
  }

  .hero__shade {
    background: rgba(2, 8, 22, 0.37);
    box-shadow: inset 0 -440px 170px rgba(2, 7, 17, 0.98);
  }

  .hero__content {
    width: 100%;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .hero__actions {
    display: grid;
  }

  .hero__badges {
    gap: 10px;
  }

  .hero__badges span {
    padding: 9px 11px;
    font-size: 10px;
  }

  .hero__panel {
    padding: 18px;
    box-shadow: 10px 10px 0 rgba(0, 175, 216, 0.14);
  }

  .hero__panel-head,
  .hero__status {
    display: grid;
  }

  .hero__panel-tag {
    justify-self: start;
  }

  .section {
    padding: 82px 22px;
  }

  .section__label {
    margin-bottom: 46px;
  }

  .section h2 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .overview__copy {
    padding-top: 28px;
  }

  .intel-strip {
    grid-template-columns: 1fr;
  }

  .intel-strip div,
  .intel-strip div:nth-child(2) {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid #bcc9c8;
  }

  .intel-strip div:last-child {
    border-bottom: 0;
  }

  .feature-console {
    display: block;
    min-height: 0;
    box-shadow: 8px 8px 0 #030914;
  }

  .feature-console__tabs {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: none;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    overflow-x: auto;
  }

  .feature-console__tabs button {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    min-width: 104px;
    padding: 17px 13px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .feature-console__tabs button.is-active {
    box-shadow: inset 0 -3px 0 var(--cyan);
  }

  .feature-console__stage {
    grid-template-rows: auto auto;
    min-height: 0;
  }

  .feature-console__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(208px, 1.1fr) repeat(4, minmax(150px, 1fr));
    gap: 10px;
    padding: 12px;
  }

  .feature-shot,
  .feature-shot.is-primary {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .feature-console__content {
    width: 100%;
    padding: 28px 24px 30px;
  }

  .world__layout,
  .faq__grid {
    gap: 60px;
  }

  .signal-list article {
    min-height: 235px;
    padding: 34px 26px;
  }

  .signal-list article:hover {
    transform: none;
  }

  .trailer__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .video-frame {
    margin-right: -8px;
    padding: 5px;
    box-shadow: 8px 8px 0 #020610;
  }

  .release__grid {
    gap: 58px;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
    box-shadow: 8px 8px 0 #030812;
  }

  .countdown--hero {
    gap: 10px;
    padding: 0;
    box-shadow: none;
  }

  .countdown--hero div {
    min-height: 110px;
    padding: 16px 10px 18px;
    gap: 10px;
    border-right: 1px solid rgba(85, 232, 255, 0.18);
    border-bottom: 1px solid rgba(85, 232, 255, 0.18);
  }

  .countdown--hero strong {
    font-size: clamp(38px, 9vw, 52px);
  }

  .countdown--hero span {
    font-size: 12px;
  }

  .countdown--hero div:nth-child(2),
  .countdown--hero div:nth-child(-n + 2) {
    border-right: 1px solid rgba(85, 232, 255, 0.18);
    border-bottom: 1px solid rgba(85, 232, 255, 0.18);
  }

  .countdown div:nth-child(2) {
    border-right: 0;
  }

  .countdown div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .faq__list button {
    grid-template-columns: 32px 1fr auto;
  }

  .faq__answer p {
    margin-left: 48px;
  }

  .release__board {
    padding: 18px;
    box-shadow: 8px 8px 0 #030812;
  }

}

@media (prefers-reduced-motion: reduce) {
  .dungeons-page *,
  .dungeons-page *::before,
  .dungeons-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero__content,
  .hero__panel,
  .feature-shot,
  .video-frame,
  .release__board {
    transform: none !important;
  }
}
