/* ══════════════════════════════════════════════════════════════════
   APEX NETWORK UK — REALISTIC RP MASTER CINEMATIC DESIGN SYSTEM v4
   Enhanced Video Visibility, Neon Cyber Graphics & Knowledge Base UI
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&display=swap');

:root {
  /* Obsidian & Cyber Teal Palette */
  --bg-obsidian:       #02050c;
  --bg-deep:           #040916;
  --bg-card:           rgba(6, 14, 30, 0.72);
  --bg-card-hover:     rgba(10, 22, 46, 0.88);
  --bg-glass:          rgba(5, 12, 26, 0.65);
  --bg-input:          rgba(2, 6, 16, 0.88);

  /* Neon Accents */
  --neon-cyan:         #00f0ff;
  --neon-emerald:      #10b981;
  --neon-mint:         #34d399;
  --neon-blue:         #0088ff;
  --neon-purple:       #a855f7;
  --neon-red:          #ef4444;
  --neon-amber:        #f59e0b;

  /* Glow Effects */
  --glow-cyan:         0 0 25px rgba(0, 240, 255, 0.6);
  --glow-emerald:      0 0 25px rgba(16, 185, 129, 0.6);
  --glow-mint:         0 0 20px rgba(52, 211, 153, 0.55);
  --glow-blue:         0 0 30px rgba(0, 136, 255, 0.55);
  --glow-red:          0 0 25px rgba(239, 68, 68, 0.6);

  /* Text Colors */
  --text-pure:         #ffffff;
  --text-sub:          #cbd5e1;
  --text-muted:        #8492a6;
  --text-dim:          #475569;

  /* Radii */
  --radius-pill:       9999px;
  --radius-card:       20px;
  --radius-lg:         26px;
  --radius-modal:      28px;

  /* Transitions */
  --transition:        all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-cyan) var(--bg-obsidian);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-obsidian);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan) 0%, var(--neon-emerald) 100%);
  border-radius: var(--radius-pill);
}

body {
  background-color: var(--bg-obsidian);
  color: var(--text-pure);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── VIBRANT VIDEO BACKGROUND (HIGHLY VISIBLE) ── */
.video-bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.video-bg-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.18) saturate(1.4);
}

.video-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 25%, rgba(2, 6, 15, 0.2) 0%, rgba(2, 6, 15, 0.6) 70%, rgba(2, 6, 15, 0.9) 100%),
              linear-gradient(180deg, rgba(2, 6, 15, 0.3) 0%, rgba(2, 6, 15, 0.85) 100%);
}

.page-wrapper {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══════════════════════════════════════════════════════════════════
   FLOATING CAPSULE NAVBAR
   ══════════════════════════════════════════════════════════════════ */
.navbar-capsule-wrap {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 36px);
  max-width: 1360px;
  z-index: 9999;
  transition: var(--transition);
}

.navbar-capsule {
  height: 68px;
  background: rgba(4, 10, 22, 0.76);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 0 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.brand-capsule {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-mark {
  display: flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.35rem;
  line-height: 1;
  color: #fff;
  letter-spacing: 1px;
}

.brand-logo-mark .cyan {
  color: var(--neon-cyan);
  text-shadow: 0 0 14px rgba(0, 240, 255, 0.85);
}

.brand-logo-mark img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.7));
  transition: transform 0.3s ease;
}

.brand-logo-mark:hover img {
  transform: scale(1.08) rotate(4deg);
}

/* Nav Pill Links */
.nav-capsule-links {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style: none;
}

.nav-capsule-links li a {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-sub);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
}

.nav-capsule-links li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.nav-capsule-links li a.active {
  color: #ffffff;
  background: rgba(0, 240, 255, 0.18);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
}

/* Right Nav Buttons */
.nav-capsule-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-capsule-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(52, 211, 153, 0.6);
  box-shadow: 0 0 22px rgba(16, 185, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-capsule-green:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  box-shadow: 0 0 32px rgba(52, 211, 153, 0.75);
  color: #fff;
}

.btn-capsule-cyan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #0088ff 0%, #0055cc 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 136, 255, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-capsule-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

/* ══════════════════════════════════════════════════════════════════
   DUAL-TONE HERO SECTION
   ══════════════════════════════════════════════════════════════════ */
.hero-cinematic {
  min-height: 88vh;
  padding: 165px 20px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 22px;
  background: rgba(6, 14, 28, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 255, 0.38);
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 24px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.hero-dual-headline {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 22px;
  line-height: 0.92;
}

.hero-dual-headline .upper-word {
  font-size: 5.6rem;
  letter-spacing: 2px;
  color: #ffffff;
  display: block;
  position: relative;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-dual-headline .wave-accent { display: none !important; }

.hero-dual-headline .lower-word {
  font-size: 5.6rem;
  letter-spacing: 3px;
  display: block;
  color: transparent;
  -webkit-text-stroke: 2.5px var(--neon-cyan);
  text-shadow: 0 0 35px rgba(0, 240, 255, 0.65), 0 0 70px rgba(0, 240, 255, 0.35);
}

.hero-sub-text {
  font-size: 1.15rem;
  color: var(--text-sub);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.hero-cta-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.85) 0%, rgba(5, 150, 105, 0.95) 100%);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(52, 211, 153, 0.65);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: var(--transition);
  cursor: pointer;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 12px 40px rgba(52, 211, 153, 0.75);
  color: #fff;
}

.hero-discord-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  padding: 12px 22px;
  background: rgba(88, 101, 242, 0.25);
  border: 1px solid rgba(88, 101, 242, 0.5);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}

.hero-discord-link:hover {
  background: #5865f2;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.65);
}

/* ══════════════════════════════════════════════════════════════════
   JOB / ABOUT TILE CARDS
   ══════════════════════════════════════════════════════════════════ */
.jobs-section {
  padding: 80px 20px 100px;
  max-width: 1340px;
  margin: 0 auto;
}

.section-hero-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.section-hero-header h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-hero-header p {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.jobs-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.job-tile-card {
  background: rgba(6, 14, 30, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: var(--transition);
  position: relative;
}

.job-tile-card:hover {
  transform: translateY(-7px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 50px rgba(0, 240, 255, 0.3);
}


.job-tile-img-box {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(12, 24, 48, 0.8) 0%, rgba(2, 6, 14, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.job-tile-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.9));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.job-tile-card:hover .job-tile-img {
  transform: scale(1.1) translateY(-4px);
  filter: drop-shadow(0 12px 30px rgba(0, 240, 255, 0.4));
}

.job-tags-floating {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 3;
}

.job-badge-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 11px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: #ffffff;
  letter-spacing: 0.5px;
}

.job-badge-tag.cyan {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.2);
}

.job-badge-tag.emerald {
  border-color: var(--neon-emerald);
  color: var(--neon-mint);
  background: rgba(16, 185, 129, 0.2);
}

.job-badge-tag.amber {
  border-color: #f59e0b;
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.2);
}

.job-tile-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.job-tile-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.job-tile-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin-bottom: 18px;
}

.job-perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}

.job-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #e2e8f0;
  font-weight: 600;
}

.job-perk-item i {
  color: var(--neon-emerald);
  font-size: 0.95rem;
  filter: drop-shadow(0 0 6px rgba(16, 185, 129, 0.8));
}

.btn-learn-more {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.35) 0%, rgba(5, 150, 105, 0.55) 100%);
  border: 1px solid rgba(52, 211, 153, 0.55);
  border-radius: 12px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-learn-more:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.65);
  transform: translateY(-2px);
  color: #ffffff;
}

/* ══════════════════════════════════════════════════════════════════
   IMMERSIVE KNOWLEDGE BASE RULEBOOK (RULES.HTML)
   ══════════════════════════════════════════════════════════════════ */
.kb-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: flex-start;
}

.kb-sidebar-sticky {
  position: sticky;
  top: 105px;
  background: rgba(5, 12, 26, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 20px;
  padding: 20px 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.kb-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kb-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-sub);
  transition: var(--transition);
  cursor: pointer;
}

.kb-nav-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.kb-nav-item.active {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid rgba(0, 240, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.25);
}

.kb-rule-section {
  background: rgba(6, 14, 30, 0.85);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 240, 255, 0.22);
  border-radius: 24px;
  padding: 36px 32px;
  margin-bottom: 30px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.75);
}

.kb-section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.kb-rule-item-box {
  background: rgba(2, 6, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 0 16px 16px 0;
  padding: 20px 24px;
  margin-bottom: 16px;
  transition: var(--transition);
}

.kb-rule-item-box:hover {
  border-color: var(--neon-cyan);
  background: rgba(4, 12, 28, 0.85);
  transform: translateX(4px);
}

.kb-rule-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.kb-rule-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.12);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.punish-pill {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.punish-pill.perm {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid #ef4444;
  color: #f87171;
}

.punish-pill.heavy {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid #f59e0b;
  color: #fbbf24;
}

.punish-pill.med {
  background: rgba(0, 240, 255, 0.2);
  border: 1px solid #00f0ff;
  color: #00f0ff;
}

/* Modals */
.learn-more-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 12, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-content-glass {
  width: 100%;
  max-width: 740px;
  background: #050c1c;
  border: 1px solid rgba(0, 240, 255, 0.4);
  border-radius: var(--radius-modal);
  padding: 36px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.95), 0 0 50px rgba(0, 240, 255, 0.2);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background: #ef4444;
  border-color: #ef4444;
  transform: rotate(90deg);
}

/* Footer */
footer {
  text-align: center;
  padding: 45px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 0.88rem;
  background: rgba(2, 4, 10, 0.9);
  position: relative;
  z-index: 2;
}

footer span {
  color: var(--neon-cyan);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1080px) {
  .jobs-tile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .kb-layout {
    grid-template-columns: 1fr;
  }
  .kb-sidebar-sticky {
    position: static;
  }
  .hero-dual-headline .upper-word,
  .hero-dual-headline .lower-word {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .navbar-capsule-wrap {
    width: calc(100% - 24px);
    top: 12px;
  }
  .nav-capsule-links {
    display: none;
  }
  .jobs-tile-grid {
    grid-template-columns: 1fr;
  }
  .hero-dual-headline .upper-word,
  .hero-dual-headline .lower-word {
    font-size: 2.8rem;
  }
  .hero-cinematic {
    padding-top: 140px;
  }
}


/* ══════════════════════════════════════════════════════════════════
   CINEMATIC ANIMATED SUNSET HERO BACKGROUND (HOMEPAGE)
   ══════════════════════════════════════════════════════════════════ */
.hero-sunset-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
  min-height: 820px;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-sunset-media {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-image: url('/sunset-hero.jpg');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.95) contrast(1.15) saturate(1.3);
  animation: sunsetKenBurns 28s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
  transform-origin: center center;
}

@keyframes sunsetKenBurns {
  0% {
    transform: scale(1) translate(0%, 0%);
  }
  50% {
    transform: scale(1.1) translate(-1.5%, -1.5%);
  }
  100% {
    transform: scale(1.05) translate(1.5%, -0.8%);
  }
}

/* Animated Sunbeam / Ocean Light Pulse */
.hero-sunset-flare {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle at center, rgba(251, 146, 60, 0.35) 0%, rgba(244, 63, 94, 0.2) 45%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: sunsetGlowPulse 8s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes sunsetGlowPulse {
  0% {
    opacity: 0.3;
    transform: scale(0.95);
  }
  50% {
    opacity: 0.65;
    transform: scale(1.12);
  }
  100% {
    opacity: 0.4;
    transform: scale(1.02);
  }
}

/* Seamless Bottom Dark Fade into Obsidian Sections */
.hero-sunset-gradient-fade {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(2, 5, 12, 0.25) 0%, rgba(2, 5, 12, 0.4) 50%, rgba(2, 5, 12, 0.95) 85%, #02050c 100%),
    radial-gradient(circle at 50% 10%, transparent 20%, rgba(2, 5, 12, 0.5) 75%, #02050c 100%);
}




/* ══════════════════════════════════════════════════════════════════
   AUTHENTIC FIVEM SLEEK PILL TOPBAR (PHOTO 1 REFERENCE)
   ══════════════════════════════════════════════════════════════════ */
.navbar-capsule-wrap {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1400px;
  z-index: 99999;
  transition: all 0.3s ease;
}

.navbar-capsule-wrap.scrolled {
  top: 12px;
}

.navbar-capsule {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  background: transparent;
}

/* Left Brand Box */
.brand-capsule {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: rgba(4, 9, 20, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 8px 20px 8px 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.brand-capsule:hover {
  border-color: rgba(0, 240, 255, 0.4);
  background: rgba(6, 14, 30, 0.85);
  transform: translateY(-2px);
}

.brand-logo-mark {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.6));
}

.brand-logo-text-vertical {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.brand-logo-text-vertical .top-text {
  color: #ffffff;
}

.brand-logo-text-vertical .bot-text {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

/* Center Pill Tabs Container */
.nav-capsule-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  background: rgba(4, 9, 20, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  padding: 6px 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-capsule-links li a {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #e2e8f0;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid transparent;
}

.nav-capsule-links li a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.nav-capsule-links li a.active {
  color: #ffffff;
  background: rgba(0, 240, 255, 0.18);
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
}

/* Right Action Buttons */
.nav-capsule-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-discord-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  padding: 10px 20px;
  background: rgba(4, 9, 20, 0.65);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(88, 101, 242, 0.45);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-discord-link:hover {
  background: #5865f2;
  border-color: #a5b4fc;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(88, 101, 242, 0.7);
}

/* Clean RealisticRP Glowing Emerald-Cyan Play Now Button */
.btn-capsule-green {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 26px;
  background: linear-gradient(90deg, #10b981 0%, #34d399 50%, #00f0ff 100%);
  color: #020408;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.8);
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-capsule-green:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(52, 211, 153, 0.8), 0 0 25px rgba(0, 240, 255, 0.6);
  color: #000;
}


/* ══════════════════════════════════════════════════════════════════
   HERO LIVE FIVEM PLAYER COUNT BADGE
   ══════════════════════════════════════════════════════════════════ */
.hero-live-players-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 24px;
  background: rgba(4, 10, 24, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(0, 240, 255, 0.45);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hero-live-players-badge:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--neon-cyan);
  box-shadow: 0 14px 40px rgba(0, 240, 255, 0.45), 0 0 30px rgba(0, 240, 255, 0.35);
  background: rgba(6, 16, 38, 0.9);
}

.live-radar-ping-box {
  position: relative;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.live-radar-ping-dot {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  position: relative;
  z-index: 2;
}

.live-radar-sonar {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #10b981;
  animation: sonarWave 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  opacity: 0.8;
  z-index: 1;
}

@keyframes sonarWave {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.live-players-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.live-players-count-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #ffffff;
}

.live-players-max-text {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  font-weight: 700;
}

.live-players-label-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.live-status-pill-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(52, 211, 153, 0.6);
  border-radius: var(--radius-pill);
  color: #34d399;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}



/* ══════════════════════════════════════════════════════════════════
   ECLIPSE-STYLE AAA CINEMATIC 2-COLUMN MODAL WITH MOUNTAIN BACKDROP
   ══════════════════════════════════════════════════════════════════ */
.learn-more-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 5, 14, 0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.learn-more-modal-overlay.active {
  display: flex;
  opacity: 1;
}



.modal-eclipse-box {
  width: 100%;
  max-width: 980px;
  background: 
    linear-gradient(135deg, rgba(4, 9, 24, 0.88) 0%, rgba(6, 14, 32, 0.92) 100%),
    url('/modal-mountain-bg.jpg') center 40% / cover no-repeat;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid rgba(0, 240, 255, 0.45);
  border-radius: 28px;
  padding: 30px 32px;
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.95), 
    0 0 50px rgba(0, 240, 255, 0.25),
    0 0 25px rgba(168, 85, 247, 0.2),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden !important;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  animation: eclipseModalPop 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-eclipse-box::-webkit-scrollbar,
.modal-eclipse-box *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

@keyframes eclipseModalPop {
  0% { transform: scale(0.92) translateY(20px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* Ambient Laser Glow Accents at Bottom of Modal */
.modal-eclipse-box::after {
  content: '';
  position: absolute;
  bottom: -35px;
  left: 5%;
  width: 90%;
  height: 70px;
  background: radial-gradient(ellipse at center, rgba(168, 85, 247, 0.4) 0%, rgba(0, 240, 255, 0.3) 50%, transparent 75%);
  filter: blur(25px);
  pointer-events: none;
}

.modal-eclipse-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  background: rgba(4, 9, 24, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.modal-eclipse-close:hover {
  background: rgba(239, 68, 68, 0.35);
  border-color: #ef4444;
  color: #fff;
  transform: rotate(90deg) scale(1.08);
}

/* Split 2-Column Grid Inside Modal */
.modal-eclipse-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 24px;
}

/* Left Featured Media Box */
.modal-eclipse-media-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  background: #020612;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.modal-eclipse-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.15);
}

.modal-eclipse-media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 16px;
  background: rgba(4, 10, 24, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(168, 85, 247, 0.7);
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  color: #c084fc;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

/* Right Content Area */
.modal-eclipse-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-eclipse-brand-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--neon-cyan);
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.modal-eclipse-headline-1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
}

.modal-eclipse-headline-2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 14px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #00f0ff 0%, #a855f7 70%, #ec4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.modal-eclipse-slogan-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(168, 85, 247, 0.18);
  border: 1px solid rgba(168, 85, 247, 0.5);
  border-radius: var(--radius-pill);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  color: #d8b4fe;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  width: fit-content;
}

.modal-eclipse-desc {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Stat & Telemetry Box Bar (No Wages) */
.modal-eclipse-stats-bar {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.modal-eclipse-stat-chip {
  flex: 1;
  min-width: 140px;
  background: rgba(2, 6, 16, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-eclipse-stat-chip .stat-icon {
  color: var(--neon-cyan);
  font-size: 1.15rem;
}

.modal-eclipse-stat-chip .stat-data {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.modal-eclipse-stat-chip .stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
}

.modal-eclipse-stat-chip .stat-val {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: #ffffff;
}

/* Bottom Dual CTA Buttons */
.modal-eclipse-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-eclipse-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #00f0ff 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  cursor: pointer;
}

.btn-eclipse-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 240, 255, 0.7);
  color: #fff;
}

.btn-eclipse-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(4, 9, 22, 0.75);
  backdrop-filter: blur(12px);
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
  transition: var(--transition);
  cursor: pointer;
}

.btn-eclipse-secondary:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--neon-cyan);
  transform: translateY(-2px);
  color: #fff;
}

@media (max-width: 820px) {
  .modal-eclipse-grid {
    grid-template-columns: 1fr;
  }
  .modal-eclipse-media-card {
    min-height: 200px;
  }
  .modal-eclipse-actions {
    grid-template-columns: 1fr;
  }
}

.learn-more-modal-overlay,
.learn-more-modal-overlay * {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}
.learn-more-modal-overlay::-webkit-scrollbar,
.learn-more-modal-overlay *::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}



/* ══════════════════════════════════════════════════════════════════
   ADVANCED MOBILE NAVIGATION & RESPONSIVENESS (PERFECT MOBILE UX)
   ══════════════════════════════════════════════════════════════════ */

/* Mobile Hamburger Trigger */
.mobile-nav-trigger {
  display: none;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: var(--neon-cyan);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 1001;
}

.mobile-nav-trigger:hover,
.mobile-nav-trigger:active {
  background: var(--neon-cyan);
  color: #030712;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

/* Mobile Slide-Over Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: rgba(5, 12, 28, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 20px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.active {
  right: 0;
}

/* Mobile Drawer Overlay Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Drawer Header */
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

/* Mobile Drawer Navigation Links */
.mobile-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  color: #cbd5e1;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.mobile-drawer-links li a:hover,
.mobile-drawer-links li a.active {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.35);
  color: var(--neon-cyan);
  transform: translateX(4px);
}

.mobile-drawer-links li a i {
  width: 24px;
  text-align: center;
  font-size: 1.1rem;
  color: var(--neon-cyan);
}

/* Mobile Drawer Bottom Actions */
.mobile-drawer-footer {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ══════════════════════════════════════════════════════════════════
   GLOBAL MOBILE BREAKPOINT ADJUSTMENTS (< 768px and < 480px)
   ══════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar */
  .navbar-capsule-wrap {
    width: calc(100% - 20px) !important;
    top: 10px !important;
    padding: 8px 14px !important;
  }

  .nav-capsule-links {
    display: none !important;
  }

  .nav-capsule-right .hero-discord-link,
  .nav-capsule-right .btn-capsule-green {
    display: none !important;
  }

  .mobile-nav-trigger {
    display: flex !important;
  }

  /* Hero Section */
  .hero-cinematic {
    padding-top: 120px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
    min-height: auto !important;
    padding-bottom: 40px !important;
  }

  .hero-eyebrow-pill {
    max-width: 100% !important;
    font-size: 0.76rem !important;
    padding: 6px 12px !important;
    text-align: center !important;
    line-height: 1.4 !important;
  }

  .hero-dual-headline {
    margin-bottom: 16px !important;
  }

  .hero-dual-headline .upper-word,
  .hero-dual-headline .lower-word {
    font-size: 2.7rem !important;
    letter-spacing: -0.5px !important;
  }

  .hero-sub-text {
    font-size: 0.92rem !important;
    padding: 0 8px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
  }

  .hero-cta-cluster {
    flex-direction: column !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }

  .hero-cta-cluster a,
  .hero-cta-cluster button {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
  }

  .hero-live-players-badge {
    width: 100% !important;
    justify-content: center !important;
  }

  /* Grid Layouts Stacked on Mobile */
  .jobs-tile-grid,
  .dash-metrics-grid,
  .rules-grid,
  .articles-grid,
  .streamers-grid,
  .store-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .job-tile-card,
  .metric-card,
  .rule-card-pro {
    padding: 18px 16px !important;
  }

  /* Section Headers */
  .section-hero-header h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  .section-hero-header p {
    font-size: 0.88rem !important;
    padding: 0 10px !important;
  }

  /* Prevent any horizontal page overflow */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative !important;
  }
}

@media (max-width: 480px) {
  .hero-dual-headline .upper-word,
  .hero-dual-headline .lower-word {
    font-size: 2.3rem !important;
  }

  .section-hero-header h2 {
    font-size: 1.6rem !important;
  }

  .modal-eclipse-card,
  .staff-modal-card {
    padding: 18px 14px !important;
    width: 95% !important;
  }
}
