:root {
  --ink: #172033;
  --muted: #63708a;
  --paper: #fffdf8;
  --cream: #fff5d8;
  --lime: #c8f36a;
  --purple: #6c4cf1;
  --pink: #ff7d9d;
  --line: #e8e4d8;
  --shadow: 0 18px 50px rgba(23, 32, 51, 0.09);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    16px/1.65 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
}
a {
  color: inherit;
}
.shell {
  max-width: 1180px;
  margin: auto;
  padding: 0 22px;
}
.top {
  background: #17152c;
  color: #fff;
}
.topbar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 20px;
  text-decoration: none;
}
.brand::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  background: url("/game-icon.png") center / cover no-repeat;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.14);
}
.brand em {
  font-style: normal;
  color: var(--lime);
}
.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}
.nav a {
  text-decoration: none;
  color: #dedcf2;
}
.nav a:hover {
  color: var(--lime);
}
.nav .pill {
  background: var(--lime);
  color: #17152c;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 800;
}
.hero {
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 90% 15%, #e9ddff 0, transparent 34%),
    linear-gradient(145deg, #fff8e7 0, #fffdf8 60%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  font-weight: 900;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin: 16px 0 20px;
  max-width: 720px;
}
.hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 680px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 900;
  border-radius: 14px;
  padding: 12px 18px;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 8px 18px rgba(108, 76, 241, 0.22);
}
.btn.alt {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.egg-art {
  min-height: 310px;
  margin: 0;
  border-radius: 36px;
  background: #211948;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.egg-art img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
  filter: saturate(1.05);
}
.egg-art:after {
  content: "OFFICIAL ROBLOX THUMBNAIL";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px 14px;
  background: linear-gradient(transparent, rgba(23, 21, 44, 0.92));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.egg-art figcaption {
  position: absolute;
  right: 14px;
  top: 12px;
  z-index: 1;
  background: rgba(23, 21, 44, 0.8);
  color: #fff;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
}
.egg-art figcaption a {
  color: var(--lime);
}
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: -25px auto 46px;
  position: relative;
}
.fact {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.fact b {
  display: block;
  font-size: 25px;
  letter-spacing: -0.04em;
}
.fact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}
.section {
  padding: 34px 0 72px;
}
.section h2 {
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin: 0 0 10px;
}
.lede {
  color: var(--muted);
  max-width: 710px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 26px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(23, 32, 51, 0.04);
}
.card .icon {
  font-size: 28px;
}
.card h3 {
  margin: 10px 0 4px;
  font-size: 20px;
}
.card p {
  color: var(--muted);
  margin: 0;
}
.card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--purple);
  font-weight: 800;
  text-decoration: none;
}
.callout {
  margin-top: 26px;
  background: var(--cream);
  border: 1px solid #f0ddb0;
  border-radius: 20px;
  padding: 20px 22px;
}
.callout strong {
  display: block;
  margin-bottom: 4px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.checklist {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.checklist li {
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  background: var(--lime);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.notice {
  background: #f4f1ff;
  border: 1px solid #ded6ff;
  border-radius: 18px;
  padding: 18px;
  color: #4b3b91;
}
.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.table th,
.table td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: #faf9f4;
}
.small {
  font-size: 13px;
  color: var(--muted);
}
footer {
  background: #17152c;
  color: #c9c6dd;
  padding: 42px 0;
}
.foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.foot a {
  color: #fff;
  text-decoration: none;
  margin-right: 16px;
}
.route {
  padding: 54px 0 78px;
}
.route h1 {
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 12px 0;
}
.crumb {
  font-size: 13px;
  color: var(--purple);
  font-weight: 800;
}
.source {
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 16px;
}
.mobile-menu {
  display: none;
}
@media (max-width: 820px) {
  .nav {
    display: none;
  }
  .mobile-menu {
    display: block;
    color: #fff;
    font-size: 14px;
  }
  .brand::before {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    border-radius: 8px;
  }
  .hero {
    padding: 48px 0 34px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .egg-art {
    min-height: 220px;
  }
  .egg-art img {
    min-height: 220px;
  }
  .facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 18px;
  }
  .cards,
  .split {
    grid-template-columns: 1fr;
  }
  .section {
    padding-bottom: 52px;
  }
  .route h1 {
    font-size: 42px;
  }
}
