/* World Runner game page styling */

.worldrunner-page {
  background: radial-gradient(circle at top right, #161a3b, #0b0f25 75%);
  color: #f5f6ff;
  padding: 6rem 5% 4rem;
  text-align: center;
  position: relative;
  min-height: 100vh;
}

.worldrunner-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/accents/hero-purple.png") center/cover no-repeat;
  opacity: 0.22;
  filter: brightness(1.2) contrast(1.3);
  z-index: 0;
}

.worldrunner-page section {
  position: relative;
  z-index: 2;
}

.worldrunner-page .hero h1 {
  color: var(--accent);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  text-shadow: 0 0 20px rgba(0, 209, 255, 0.65),
               0 2px 10px rgba(0, 0, 0, 0.8);
}

.worldrunner-page .hero p {
  margin-top: 0.8rem;
  color: #e0e0ff;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.worldrunner-page .about {
  max-width: 800px;
  margin: 0 auto 3rem;
  background: rgba(25, 30, 65, 0.6);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.65);
}

.worldrunner-page .about h2 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.worldrunner-page .media {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.worldrunner-page .media img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.worldrunner-page .media img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 40px rgba(0, 202, 255, 0.3);
}

.worldrunner-page .links {
  text-align: center;
}
