/* =========================================================
   WILDVERSE ABOUT PAGE
   Page-specific layout only
========================================================= */

.wv-about-page {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100vh;
}

.wv-about-page > .wv-about-card {
  align-self: start;
  justify-self: center;

  width: min(920px, calc(100% - 2rem));
  margin: clamp(1.5rem, 5vw, 4rem) auto;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.wv-about-card {
  position: relative;
  overflow: hidden;
}

.wv-about-card::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -10rem;

  width: 28rem;
  height: 28rem;

  pointer-events: none;
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(126, 243, 255, 0.14),
      transparent 68%
    );
}

.wv-about-card > * {
  position: relative;
  z-index: 1;
}

.wv-about-header {
  max-width: 720px;
  margin-top: 2rem;
  margin-bottom: 2.4rem;
}

.wv-about-kicker {
  display: block;
  margin-bottom: 0.55rem;

  color: var(--wv-auth-cyan);

  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.wv-about-header h1 {
  margin: 0;

  font-size: clamp(2.4rem, 6vw, 4.8rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.96;

  text-shadow:
    0 0 22px rgba(126, 243, 255, 0.12),
    0 14px 34px rgba(0, 0, 0, 0.38);
}

.wv-about-intro {
  max-width: 700px;
  margin: 1.2rem 0 0;

  color: rgba(235, 250, 255, 0.8);

  font-size: clamp(1.02rem, 2.2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.7;
}

.wv-about-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.wv-about-section,
.wv-about-notice {
  padding: 1.35rem 1.4rem;

  border: 1px solid rgba(126, 243, 255, 0.14);
  border-radius: 20px;

  background:
    linear-gradient(
      145deg,
      rgba(126, 243, 255, 0.055),
      rgba(255, 92, 174, 0.025)
    ),
    rgba(255, 255, 255, 0.025);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.wv-about-section h2 {
  margin: 0 0 0.85rem;

  color: #ffffff;

  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.wv-about-section p,
.wv-about-notice p {
  margin: 0;

  color: rgba(225, 246, 250, 0.68);

  font-size: 0.94rem;
  line-height: 1.72;
}

.wv-about-section p + p,
.wv-about-notice p + p {
  margin-top: 0.9rem;
}

.wv-about-notice {
  grid-column: 1 / -1;

  border-color: rgba(255, 123, 213, 0.2);

  background:
    linear-gradient(
      135deg,
      rgba(255, 123, 213, 0.08),
      rgba(126, 243, 255, 0.05)
    ),
    rgba(255, 255, 255, 0.025);
}

.wv-about-notice strong {
  display: block;
  margin-bottom: 0.65rem;

  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wv-about-page > .wv-auth-mini-footer {
  align-self: end;
  width: 100%;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 760px) {
  .wv-about-page > .wv-about-card {
    width: min(100% - 1rem, 680px);
    margin: 0.8rem auto 1.5rem;
    padding: 1.25rem;
  }

  .wv-about-header {
    margin-top: 1.7rem;
    margin-bottom: 1.8rem;
  }

  .wv-about-content {
    grid-template-columns: 1fr;
  }

  .wv-about-notice {
    grid-column: auto;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {
  .wv-about-page > .wv-about-card {
    width: calc(100% - 0.7rem);
    padding: 1rem;
    border-radius: 18px;
  }

  .wv-about-card .wv-auth-back-link {
    padding: 0.58rem 0.82rem;
    font-size: 0.75rem;
  }

  .wv-about-header h1 {
    font-size: 2.35rem;
  }

  .wv-about-intro {
    font-size: 0.96rem;
  }

  .wv-about-section,
  .wv-about-notice {
    padding: 1.05rem;
    border-radius: 16px;
  }

  .wv-about-section p,
  .wv-about-notice p {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}