/* ── NAV ─────────────────────────────────────────────────────────────────── */
.home .site-nav .nav-logo { color: #fff; }
.home .site-nav .nav-links a.active { color: var(--brand); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero-fullscreen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(5, 8, 20, 0.45) 0%,
      rgba(5, 8, 20, 0.55) 45%,
      rgba(5, 8, 20, 0.80) 72%,
      rgba(5, 8, 20, 0.97) 100%
    );
}

/* ── HERO CENTER CONTENT ──────────────────────────────────────────────────── */
.hero-center {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem 180px;
  margin-top: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-badge {
  display: inline-block;
  font-family: 'Inter', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(240, 50, 90, 0.15);
  border: 1px solid rgba(240, 50, 90, 0.4);
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.2rem;
}

.hero-wordmark-img {
  width: clamp(280px, 60vw, 640px);
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.35));
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}

.hero-tagline .pink {
  color: #f0325a;
  font-weight: 600;
}

/* ── IP WIDGET ────────────────────────────────────────────────────────────── */
.ip-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.ip-widget {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 12, 28, 0.75);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 99px;
  padding: 0.4rem 0.4rem 0.4rem 1.4rem;
  backdrop-filter: blur(8px);
}

.ip-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.ip-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

.ip-copy-btn {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.ip-copy-btn:hover { background: #ff4d72; transform: scale(1.04); }
.ip-copy-btn:active { transform: scale(0.97); }
.ip-copy-btn.copied { background: #4ade80; color: #000; }

/* ── HERO ACTIONS ─────────────────────────────────────────────────────────── */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.player-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 12, 28, 0.75);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  backdrop-filter: blur(6px);
}

.dot-green {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  flex-shrink: 0;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.btn-join {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #f0325a, #c41e3a);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.6rem 1.5rem;
  border-radius: 99px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.1s;
  box-shadow: 0 4px 20px rgba(240, 50, 90, 0.4);
}

.btn-join:hover { opacity: 0.88; transform: translateY(-1px); text-decoration: none; }

.hero-store-row {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 12, 28, 0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.4rem;
  border-radius: 99px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}

.btn-store:hover {
  border-color: var(--brand);
  background: rgba(240, 50, 90, 0.18);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

/* ── FEATURE CARDS (bottom of hero) ──────────────────────────────────────── */
.feature-strip {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.feature-card {
  background: rgba(10, 12, 26, 0.82);
  backdrop-filter: blur(14px);
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background 0.2s;
}

.feature-card:last-child { border-right: none; }
.feature-card:hover { background: rgba(18, 22, 45, 0.9); }

.feature-svg-icon {
  width: 36px;
  height: 36px;
  color: var(--brand);
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.diamond-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #00e5ff, #0099bb);
  transform: rotate(45deg);
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.feature-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}

.feature-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  color: #fff;
}

/* ── BELOW HERO ───────────────────────────────────────────────────────────── */
.below-hero { padding-top: 0; }
.info-section { padding: 70px 2rem; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .feature-strip {
    position: relative;
    grid-template-columns: 1fr;
  }
  .feature-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .feature-card:last-child { border-bottom: none; }
  .hero-center { padding-bottom: 2rem; }

  .home .site-nav { padding: 0 1rem; }
  .ip-widget { flex-direction: column; border-radius: 10px; }
  .ip-label { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; text-align: center; padding: 0.5rem; }
  .ip-copy-btn { width: 100%; padding: 0.6rem; }
}

