.hero--gameplay {
  position: relative;
}
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-visual-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at 20% 0%, rgba(255, 213, 79, 0.45) 0, transparent 55%), radial-gradient(circle at 80% 100%, rgba(0, 188, 212, 0.35) 0, transparent 55%), var(--color-surface);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-4);
}
.hero-visual-egg {
  width: 70%;
  max-width: 220px;
  aspect-ratio: 3 / 4;
  border-radius: 60% 55% 50% 65%;
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #f3fbf7 45%, #b388ff 100%);
  position: relative;
  box-shadow: 0 18px 40px rgba(10, 24, 44, 0.26);
}
.hero-visual-egg::before,
.hero-visual-egg::after {
  content: "";
  position: absolute;
  inset: 18% 14% auto 12%;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(0, 188, 212, 0.5) 0, transparent 60%);
  opacity: 0.65;
}
.hero-visual-egg::after {
  inset: auto 10% 10% 22%;
  background: radial-gradient(circle at 100% 100%, rgba(30, 185, 128, 0.55) 0, transparent 60%);
}
.hero-visual-badge {
  position: absolute;
  left: 10%;
  right: auto;
  top: 10%;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-xs);
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--color-neutral-800);
  box-shadow: var(--shadow-sm);
}
.hero-visual-badge--offline {
  top: 10%;
  left: 10%;
}
.hero-visual-badge--pvp {
  top: auto;
  bottom: 10%;
  right: 10%;
  left: auto;
  background-color: rgba(179, 136, 255, 0.96);
  color: #ffffff;
}
.gameplay-grid {
  display: grid;
  gap: var(--space-6);
  align-items: center;
}
.gameplay-media {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.gameplay-grid--reverse {
}
.expeditions-grid {
  align-items: flex-start;
}
.cta-card {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(30, 185, 128, 0.16) 0, transparent 55%), radial-gradient(circle at bottom right, rgba(179, 136, 255, 0.16) 0, transparent 55%), var(--color-surface);
  box-shadow: var(--shadow-md);
}
.hero-actions--center {
  justify-content: center;
}
.cta-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
@media (min-width: 640px) {
  .gameplay-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .gameplay-grid--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}
@media (min-width: 960px) {
  .hero-visual-card {
    max-width: 360px;
  }
}
