:root {
  --sky: #7fc7e8;
  --sky-deep: #2f8bc4;
  --grass: #6fba58;
  --leaf: #2f6744;
  --jade: #2d927c;
  --gold: #f3c763;
  --gold-deep: #c98622;
  --paper: #fff5dc;
  --ink: #172820;
  --muted: #5a6f63;
  --danger: #b5482f;
  --blue-shadow: #123247;
  --line: rgba(23, 40, 32, 0.14);
  --glass: rgba(255, 255, 255, 0.22);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 70px rgba(18, 50, 71, 0.24);
  --shadow-soft: 0 14px 38px rgba(18, 50, 71, 0.16);
  --radius: 22px;
  --container: 1180px;
  --font-title: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  --font-body: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  --font-en: Georgia, Cambria, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #dbf3ff;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.62;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 231, 159, 0.7), transparent 24rem),
    linear-gradient(180deg, #d8f3ff 0%, #fff4d3 42%, #e5f5dd 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 35%);
  background-size: 46px 46px, 100% 100%;
}

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

img,
svg {
  max-width: 100%;
  display: block;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(243, 199, 99, 0.92);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(76px, 9vw, 132px) 0;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 100;
}

.nav-wrap {
  width: min(calc(100% - 32px), 1220px);
  min-height: 66px;
  margin: 0 auto;
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 14px 44px rgba(18, 50, 71, 0.16);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled .nav-wrap {
  background: rgba(255, 252, 235, 0.9);
  box-shadow: 0 18px 50px rgba(18, 50, 71, 0.22);
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px 4px 6px;
  border-radius: 999px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(18, 50, 71, 0.18);
}

.brand strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.78rem;
}

.site-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-menu a,
.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(23, 40, 32, 0.76);
  font-weight: 700;
  font-size: 0.94rem;
  transition: background-color 160ms ease, color 160ms ease;
}

.site-menu a:hover,
.footer-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.nav-actions {
  display: flex;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid rgba(23, 40, 32, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  display: block;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn[disabled],
.btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn-primary {
  color: #162319;
  background: linear-gradient(135deg, #fff2a7, var(--gold) 55%, #f5a83f);
  box-shadow: 0 16px 34px rgba(201, 134, 34, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 20px 42px rgba(201, 134, 34, 0.44);
}

.btn-secondary {
  color: #fff;
  background: linear-gradient(135deg, #2e9f78, #1b6e5e);
  box-shadow: 0 16px 34px rgba(45, 146, 124, 0.28);
}

.btn-glass,
.btn-ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(255, 255, 255, 0.64);
}

.btn-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 132px 0 70px;
  overflow: hidden;
  color: #fff;
  background: var(--sky-deep);
}

.hero-bg {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 54%;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.02);
  will-change: transform;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 223, 126, 0.18), transparent 25rem),
    linear-gradient(90deg, rgba(10, 28, 39, 0.84) 0%, rgba(10, 28, 39, 0.44) 42%, rgba(10, 28, 39, 0.08) 78%),
    linear-gradient(180deg, rgba(10, 28, 39, 0.08) 0%, rgba(10, 28, 39, 0.22) 62%, rgba(10, 28, 39, 0.72) 100%);
}

.sky-ribbons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.sky-ribbons span {
  position: absolute;
  width: 52vw;
  height: 120px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  filter: blur(16px);
  animation: cloudDrift 18s linear infinite;
}

.sky-ribbons span:nth-child(1) {
  left: -18vw;
  top: 24%;
}

.sky-ribbons span:nth-child(2) {
  right: -22vw;
  top: 46%;
  animation-duration: 24s;
  animation-direction: reverse;
}

.sky-ribbons span:nth-child(3) {
  left: 20vw;
  bottom: 12%;
  opacity: 0.5;
  animation-duration: 28s;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: clamp(28px, 6vw, 80px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(4.3rem, 12vw, 9.5rem);
  font-weight: 950;
  text-shadow: 0 16px 44px rgba(0, 0, 0, 0.46);
}

h1 span {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.7rem, 4.2vw, 4rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  font-weight: 950;
}

h3 {
  font-size: 1.55rem;
}

.hero-en {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-en);
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.hero-text {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

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

.steam-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 30px;
  background: rgba(8, 26, 37, 0.48);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px) saturate(1.18);
}

.steam-card > img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.steam-card-copy p {
  margin: 14px 0 4px;
  color: rgba(255, 255, 255, 0.72);
}

.steam-card-copy strong {
  display: block;
  font-size: 1.2rem;
}

.steam-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 16px 0 0;
}

.steam-card div {
  min-width: 0;
}

.steam-card dt,
.steam-card dd {
  margin: 0;
}

.steam-card dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.steam-card dd {
  font-weight: 900;
}

.section-heading {
  margin-bottom: clamp(30px, 5vw, 56px);
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(190px, auto);
  gap: 18px;
}

.bento-card,
.world-art,
.class-showcase,
.gameplay-card,
.road li,
.join-panel {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.bento-card {
  position: relative;
  padding: 24px;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.bento-card:hover,
.gameplay-card:hover,
.shot-card:hover,
.road li:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.bento-card.big {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
}

.image-card {
  min-height: 360px;
  padding: 0;
  display: grid;
  align-items: end;
  color: #fff;
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.image-card:hover img {
  transform: scale(1.045);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(5, 22, 32, 0.82) 100%);
}

.image-card div {
  position: relative;
  z-index: 2;
  padding: 26px;
}

.image-card span,
.feature-mark {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 950;
  color: #13231a;
  background: linear-gradient(135deg, #fff5b0, var(--gold));
}

.bento-card p {
  color: var(--muted);
}

.world {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 231, 159, 0.58), transparent 24rem),
    linear-gradient(180deg, rgba(118, 200, 236, 0.12), rgba(111, 186, 88, 0.12));
}

.world-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.world-copy p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag-row span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 50, 71, 0.09);
}

.world-art {
  margin: 0;
  padding: 14px;
}

.world-art img,
.class-showcase > img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.world-art figcaption {
  padding: 12px 6px 2px;
  color: var(--muted);
  font-size: 0.94rem;
}

.class-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 16px;
  padding: 16px;
}

.class-showcase > img {
  height: 100%;
  min-height: 430px;
}

.class-tabs {
  display: grid;
  gap: 10px;
}

.class-tabs article {
  padding: 16px;
  border: 1px solid rgba(23, 40, 32, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
}

.class-tabs article.active {
  background: linear-gradient(135deg, rgba(255, 244, 179, 0.9), rgba(151, 220, 164, 0.62));
  border-color: rgba(201, 134, 34, 0.28);
}

.class-tabs span {
  color: var(--gold-deep);
  font-weight: 950;
  font-size: 0.78rem;
}

.class-tabs p {
  margin: 6px 0 0;
  color: var(--muted);
}

.gameplay-layout {
  display: grid;
  gap: 10px;
}

.gameplay-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gameplay-card {
  padding: 12px;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.gameplay-card img {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.gameplay-card h3,
.gameplay-card p {
  margin-left: 8px;
  margin-right: 8px;
}

.gameplay-card h3 {
  margin-top: 16px;
}

.gameplay-card p {
  color: var(--muted);
}

.media {
  background: linear-gradient(180deg, rgba(111, 186, 88, 0.1), rgba(127, 199, 232, 0.16));
}

.media-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 520px);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scroll-snap-type: x mandatory;
}

.media-strip::-webkit-scrollbar {
  height: 10px;
}

.media-strip::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(47, 139, 196, 0.36);
}

.shot-card {
  position: relative;
  min-height: 280px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  background: #123247;
  scroll-snap-align: start;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.shot-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.shot-card:hover img {
  transform: scale(1.05);
}

.shot-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 26, 37, 0.88));
}

.shot-card span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  font-size: 1.25rem;
  font-weight: 950;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

.road {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.road li {
  min-height: 220px;
  padding: 24px;
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.road span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: #142319;
  background: linear-gradient(135deg, #fff5b0, var(--gold));
  font-weight: 950;
}

.road li.hot {
  background: linear-gradient(135deg, rgba(255, 245, 176, 0.82), rgba(255, 255, 255, 0.68));
}

.road p {
  color: var(--muted);
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: 16px;
}

.join-panel > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: 18px;
  object-fit: cover;
}

.join-panel > div {
  padding: clamp(18px, 4vw, 44px);
}

.site-footer {
  padding: 42px 0 54px;
}

.footer-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(23, 40, 32, 0.12);
  padding-top: 26px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}

.footer-record {
  margin-top: 18px;
  color: rgba(23, 40, 32, 0.56);
  font-size: 0.88rem;
}

.footer-record a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: color 160ms ease;
}

.footer-record a:hover {
  color: var(--ink);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(6, 18, 28, 0.86);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 540ms ease, transform 540ms ease;
}

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

@keyframes cloudDrift {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(18vw);
  }
  100% {
    transform: translateX(0);
  }
}

@media (max-width: 1080px) {
  .nav-actions {
    display: none;
  }

  .hero-layout,
  .world-layout,
  .class-showcase,
  .join-panel {
    grid-template-columns: 1fr;
  }

  .steam-card {
    max-width: 520px;
  }

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

  .gameplay-cards,
  .road {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .site-header {
    inset: 10px 0 auto;
  }

  .nav-wrap {
    position: relative;
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 8px;
    right: 8px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 22px;
    background: rgba(255, 252, 235, 0.94);
    box-shadow: var(--shadow);
    transform: scaleY(0.96);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-menu.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-menu a {
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-bg {
    object-position: 58% 50%;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(10, 28, 39, 0.74), rgba(10, 28, 39, 0.48) 48%, rgba(10, 28, 39, 0.78)),
      radial-gradient(circle at 55% 20%, rgba(255, 223, 126, 0.18), transparent 18rem);
  }

  .bento-grid,
  .gameplay-cards,
  .road {
    grid-template-columns: 1fr;
  }

  .bento-card.big,
  .bento-card.wide {
    grid-column: span 1;
  }

  .footer-layout {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.04rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  h1 {
    font-size: clamp(3.2rem, 20vw, 5.1rem);
  }

  h1 span {
    font-size: clamp(1.55rem, 7.5vw, 2.35rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .steam-card dl {
    grid-template-columns: 1fr;
  }

  .image-card {
    min-height: 300px;
  }

  .class-showcase > img,
  .join-panel > img {
    min-height: 280px;
  }

  .media-strip {
    grid-auto-columns: minmax(270px, 86vw);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
