/* ===== Hero V2 – Centered Cinematic Layout ===== */

.hero-v2 {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 12vh, 110px) clamp(80px, 14vh, 140px);
}

/* Animated gradient orbs */
.hero-v2__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  will-change: transform;
}

.hero-v2__orb--purple {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.7), transparent 70%);
  top: -15%;
  left: -8%;
  animation: heroOrbFloat 14s ease-in-out infinite;
}

.hero-v2__orb--cyan {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.6), transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: heroOrbFloat 18s ease-in-out infinite reverse;
}

.hero-v2__orb--gold {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35), transparent 70%);
  top: 30%;
  right: 20%;
  animation: heroOrbFloat 12s ease-in-out infinite 3s;
}

@keyframes heroOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.08); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Inner container */
.hero-v2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Top badge */
.hero-v2__top {
  margin-bottom: var(--space-5);
}

.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.5);
  backdrop-filter: blur(12px);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  animation: heroBadgeFade 0.8s ease-out both;
}

.hero-v2__badge-icon {
  color: var(--color-gold);
  font-size: 0.9rem;
}

.hero-v2__badge-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
}

@keyframes heroBadgeFade {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Title */
.hero-v2__title {
  font-size: clamp(2.6rem, 5vw + 1rem, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
  animation: heroTitleUp 0.9s ease-out 0.1s both;
  max-width: 750px;
}

.hero-v2__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--color-cyan), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes heroTitleUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Subtitle */
.hero-v2__subtitle {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: var(--space-6);
  animation: heroTitleUp 0.9s ease-out 0.2s both;
}

/* CTA buttons */
.hero-v2__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(40px, 6vh, 72px);
  animation: heroTitleUp 0.9s ease-out 0.3s both;
}

.hero-v2__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #7C3AED 0%, #8B5CF6 40%, #22D3EE 100%);
  color: #fff;
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 50px rgba(139, 92, 246, 0.5), 0 20px 50px rgba(15, 23, 42, 0.8);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.hero-v2__cta-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 70px rgba(139, 92, 246, 0.7), 0 24px 60px rgba(15, 23, 42, 0.9);
}

.hero-v2__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(0,0,0,0.3);
}

.hero-v2__cta-icon svg {
  width: 16px;
  height: 16px;
}

.hero-v2__cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--color-text);
  font-family: var(--ff-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.hero-v2__cta-ghost:hover {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

/* Showcase / Image area */
.hero-v2__showcase {
  position: relative;
  width: 100%;
  max-width: 680px;
  animation: heroShowcaseUp 1s ease-out 0.45s both;
}

@keyframes heroShowcaseUp {
  from { opacity: 0; transform: translateY(40px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-v2__showcase-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.8),
    0 30px 80px rgba(15, 23, 42, 0.7),
    0 0 120px rgba(139, 92, 246, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-v2__showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating stat cards */
.hero-v2__float {
  position: absolute;
  z-index: 2;
}

.hero-v2__float-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.hero-v2__float-card--wide {
  flex-direction: row;
  gap: 12px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
}

.hero-v2__float-num {
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--color-text);
  line-height: 1;
}

.hero-v2__float-label {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-v2__float-tag {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.hero-v2__float-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-cyan);
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.6);
}

/* Float positions */
.hero-v2__float--left {
  left: -30px;
  top: 30%;
  animation: heroFloatBounce 4s ease-in-out infinite 0.6s;
}

.hero-v2__float--right {
  right: -30px;
  top: 20%;
  animation: heroFloatBounce 4s ease-in-out infinite 1.2s;
}

.hero-v2__float--bottom {
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  animation: heroFloatBounce 4s ease-in-out infinite 0.9s;
}

@keyframes heroFloatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-v2__float--bottom {
  animation: heroFloatBounceCenter 4s ease-in-out infinite 0.9s;
}

@keyframes heroFloatBounceCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-v2 {
    padding-block: clamp(40px, 8vh, 60px) clamp(60px, 10vh, 100px);
  }

  .hero-v2__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .hero-v2__subtitle {
    font-size: var(--fs-base);
  }

  .hero-v2__showcase {
    max-width: 100%;
  }

  .hero-v2__float--left {
    left: -10px;
    top: auto;
    bottom: 60px;
  }

  .hero-v2__float--right {
    right: -10px;
    top: 15%;
  }

  .hero-v2__float-card {
    padding: 8px 14px;
    border-radius: 12px;
  }

  .hero-v2__float-num {
    font-size: 1.05rem;
  }

  .hero-v2__float-card--wide {
    gap: 8px;
    padding: 8px 14px;
  }

  .hero-v2__orb--purple {
    width: 300px;
    height: 300px;
  }

  .hero-v2__orb--cyan {
    width: 250px;
    height: 250px;
  }

  .hero-v2__orb--gold {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .hero-v2__float--left,
  .hero-v2__float--right {
    display: none;
  }

  .hero-v2__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-v2__cta-primary,
  .hero-v2__cta-ghost {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Sections ===== */

section {
  padding-block: var(--space-12);
}


.section-gameplay,
.section-artwork,
.section-facts,
.section-download,
.section-media,
.section-community,
.section-footer-links {
  scroll-margin-top: 80px;
}

.section-bullets {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
  padding-left: 0;
  display: grid;
  gap: 6px;
}

.section-bullets li {
  position: relative;
  padding-left: 18px;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.section-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, var(--color-cyan), transparent 60%);
  box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.4);
}

.section-image-card {
  display: flex;
  align-items: center;
}

.section-image-card .card {
  width: 100%;
}

.section-facts-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.section-facts-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-4);
}

.section-facts-visual {
  max-width: 220px;
}

.section-facts-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: var(--fs-sm);
}

.section-facts-item {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.section-facts-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
}

.section-download-ctas {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.section-download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.section-download-devices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section-device-pill {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.section-media .link-inline,
.section-community .link-inline {
  color: var(--color-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.6);
}

.section-media .link-inline:hover,
.section-community .link-inline:hover {
  color: var(--color-gold);
  text-decoration-color: rgba(245, 158, 11, 0.8);
}

.section-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.section-quote::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(circle at 20% 0, rgba(248, 250, 252, 0.95), transparent 55%), rgba(15, 23, 42, 0.95);
  box-shadow: var(--shadow-glow-purple);
  mask-image: radial-gradient(circle at 30% 30%, black 0, black 45%, transparent 60%);
}

.section-quote-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cyan);
}

.section-quote-text {
  font-size: var(--fs-md);
  color: var(--color-text);
}

.section-quote-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.section-quote-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 158, 11, 0.8);
  color: var(--color-gold);
}

.section-quote-star {
  color: var(--color-gold);
}

.section-footer-card {
  display: flex;
  flex-direction: column;
}

.section-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: flex-start;
}

.section-footer-links-list {
  display: grid;
  gap: 10px;
}

.section-footer-links-list .link-arrow {
  font-size: var(--fs-sm);
}

.link-inline {
  font-size: inherit;
}

@media (max-width: 900px) {
  .section-facts-header {
    flex-direction: column;
  }

  .section-footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  section {
    padding-block: var(--space-10);
  }

  .hero {
    padding-block: var(--space-8);
  }

  .section-facts-ticker {
    gap: 8px;
  }
}

ul { list-style: none !important; }
.nav-toggle { flex-direction: column; }
.btn-arrow svg, .link-arrow svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease, stroke 0.3s ease;
}
.btn:hover .btn-arrow svg, a:hover .link-arrow svg {
  transform: translate(3px, -3px);
}
