/* ============================================================
   HERO SECTION
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--morico-black);
}

/* Canvas particles */
#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Background radial glow */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(139,0,0,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(232,25,44,0.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Bottom gradient fade to page */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--morico-black));
  z-index: 2;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: var(--space-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}

/* ── Content Side ──────────────────────────────────────── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--morico-red);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--morico-red);
  border-radius: 1px;
}

.hero-game-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--morico-white);
}

.hero-game-title .red {
  color: var(--morico-red);
  text-shadow: 0 0 60px rgba(232,25,44,0.4);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--morico-gray-light);
  font-weight: 400;
  max-width: 460px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-ctas .btn-ghost {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Store badges */
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  color: var(--morico-white);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--t-base);
  backdrop-filter: blur(10px);
}

.store-badge:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.store-badge svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.store-badge .badge-label { font-size: 0.65rem; opacity: 0.7; display: block; }
.store-badge .badge-name  { font-size: 0.9rem; display: block; }

/* ── Visual Side (Characters) ──────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 75vh;
  max-height: 700px;
}

.hero-characters {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-char {
  position: absolute;
  bottom: 0;
  transition: transform 0.1s linear;
  will-change: transform;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
}

.hero-char img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.hero-char.char-center {
  left: 50%;
  transform: translateX(-50%);
  height: 90%;
  z-index: 3;
}

.hero-char.char-left {
  left: -5%;
  height: 75%;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8)) brightness(0.85);
}

.hero-char.char-right {
  right: -5%;
  height: 75%;
  z-index: 2;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8)) brightness(0.85);
}

/* Glow under characters */
.hero-char-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(232,25,44,0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(10px);
}

/* Game logo over characters */
.hero-game-logo {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  white-space: nowrap;
}

.hero-game-logo img {
  max-width: 300px;
  filter: drop-shadow(0 4px 30px rgba(232,25,44,0.5));
}

/* ── Scroll Indicator ───────────────────────────────────── */
.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-chevron {
  width: 24px;
  height: 24px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%       { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 2rem;
    padding-top: calc(var(--nav-h) + 2rem);
    text-align: center;
  }

  .hero-content {
    align-items: center;
    order: 2;
  }

  .hero-eyebrow { justify-content: center; }
  .hero-eyebrow::before { display: none; }
  .hero-tagline { text-align: center; max-width: 500px; }
  .hero-ctas    { justify-content: center; }
  .hero-badges  { justify-content: center; }

  .hero-visual {
    order: 1;
    height: 45vh;
    max-height: 350px;
  }
}

@media (max-width: 480px) {
  .hero-game-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero-ctas .btn-lg { width: 100%; justify-content: center; }
}
