@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&display=swap');

/* Reset and Core Variables */
:root {
  --bg-pure-black: #000000;
  --text-white: #ffffff;
  --font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Futuristic Esports Accent Palette */
  --violet-accent: #e02020;
  --violet-accent-glow: rgba(224, 32, 32, 0.35);
  --emerald-accent: #00ff7f;
  --emerald-accent-glow: rgba(0, 255, 127, 0.35);

  --glow-color: rgba(255, 255, 255, 0.1);
  --btn-border-width: 0.6px;

  /* Transition timings */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ====================================================
   GLOBAL ANIMATION KEYFRAMES
   ==================================================== */

/* Entrance: fade up from below */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Entrance: fade in from right */
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Pulsing scale for dots */
@keyframes pulseDot {
  0%   { transform: scale(0.85); opacity: 0.5; box-shadow: 0 0 4px var(--emerald-accent); }
  100% { transform: scale(1.15); opacity: 1;   box-shadow: 0 0 12px var(--emerald-accent); }
}

/* Ripple ring expanding out from status dot */
@keyframes rippleRing {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(2.8); opacity: 0;   }
}

/* Shimmer sweep across buttons */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Subtle floating for the HUD card */
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Badge entrance flash */
@keyframes badgeFlash {
  0%   { opacity: 0; transform: scale(0.85); }
  60%  { transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

/* Glow border pulse for the HUD card */
@keyframes borderGlow {
  0%, 100% { border-color: rgba(224, 32, 32, 0.15); box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 20px rgba(224,32,32,0.05); }
  50%       { border-color: rgba(224, 32, 32, 0.35); box-shadow: 0 15px 35px rgba(0,0,0,0.4), 0 0 35px rgba(224,32,32,0.15); }
}

/* Gradient shift on progress bar */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ====================================================
   STAGGERED ENTRANCE ANIMATION UTILITY CLASSES
   ==================================================== */
.anim-fade-up {
  animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.anim-fade-left {
  animation: fadeLeft 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.36s; }
.anim-delay-4 { animation-delay: 0.52s; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-pure-black);
  color: var(--text-white);
  font-family: var(--font-family);
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
}

/* ====================================================
   PRELOADER
   ==================================================== */
#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background-color: var(--bg-pure-black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--violet-accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-shadow: 0 0 15px var(--violet-accent-glow);
}

.preloader-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-white);
  animation: pulse 1.5s infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Background Video and Image Layers */
.video-background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  /* Deep cosmic background image serves as a fallback texture underneath the video */
  background: url('bgv3mul.png') no-repeat center center / cover #000000;
}

.video-background-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  /* Blends the video loop beautifully with the bgv3mul graphic */
}

.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.55);
  /* 55% Black mask for extreme text legibility */
  z-index: -1;
  pointer-events: none;
}

/* Header & Navbar navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 120px;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.logo-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-white);
  font-weight: 700;
  width: 187px;
  height: 25px;
  transition: var(--transition-smooth);
}

.logo-wordmark text {
  font-family: var(--font-family);
  font-weight: 700;
}

.logo-dot {
  animation: logoPulse 2s infinite alternate;
  box-shadow: 0 0 10px var(--emerald-accent);
}

@keyframes logoPulse {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  cursor: pointer;
}

.nav-item:hover {
  color: var(--text-white);
}

.nav-item svg {
  margin-left: 8px;
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item:hover svg {
  transform: translateY(2px);
}

/* Waitlist/Discord Action pill buttons */
.btn-waitlist-container {
  position: relative;
  border: var(--btn-border-width) solid rgba(255, 255, 255, 0.25);
  border-radius: 9999px;
  padding: 1px;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-waitlist-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 2;
  transition: var(--transition-smooth);
}

.btn-waitlist-dark {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  color: var(--text-white);
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-waitlist-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 43, 226, 0.15);
  border-color: rgba(138, 43, 226, 0.5);
}

.btn-waitlist-container:hover .btn-waitlist-dark {
  background-color: var(--bg-pure-black);
}

/* Mobile toggler */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  z-index: 101;
}

/* Primary Hero Landing Layout */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  padding: 60px 24px;
  z-index: 2;
}

/* Dashboard 2-column grid layout */
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  width: 100%;
  align-items: center;
}

.dashboard-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.dashboard-right {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Badges & Titles */
.early-access-badge {
  background-color: rgba(0, 255, 127, 0.08);
  border: 1px solid rgba(0, 255, 127, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.05);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--emerald-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-accent);
  animation: pulse 1.5s infinite alternate;
}

.badge-text-opacity {
  color: rgba(255, 255, 255, 0.65);
}

.badge-text-solid {
  color: var(--emerald-accent);
}

.hero-heading {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  background: linear-gradient(144.5deg, #ffffff 32%, rgba(255, 255, 255, 0.25) 115%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: headingFadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes headingFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  margin-bottom: 36px;
}

/* Action button configurations */
.action-buttons-group {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.btn-waitlist-light-container {
  position: relative;
  border: var(--btn-border-width) solid rgba(255, 255, 255, 1);
  border-radius: 9999px;
  padding: 1px;
  background: transparent;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.btn-waitlist-light-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 20px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
  filter: blur(4px);
  pointer-events: none;
  z-index: 2;
  transition: var(--transition-smooth);
}

.btn-waitlist-light {
  background-color: var(--text-white);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  color: var(--bg-pure-black);
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-waitlist-light-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 1);
}

.btn-waitlist-light-container:hover .btn-waitlist-light {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Glassmorphic cards definition */
.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

/* Server HUD Card Specific styling */
.server-hud-card {
  border-color: rgba(224, 32, 32, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 25px rgba(224, 32, 32, 0.05);
  animation: floatCard 5s ease-in-out infinite, borderGlow 4s ease-in-out infinite;
}

/* Override glass-card hover so float isn't interrupted by translateY conflict */
.server-hud-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(224, 32, 32, 0.35);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(224, 32, 32, 0.18);
  animation-play-state: paused;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.card-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-title svg {
  color: var(--violet-accent);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 255, 127, 0.08);
  border: 1px solid rgba(0, 255, 127, 0.15);
  color: var(--emerald-accent);
  padding: 5px 12px 5px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  vertical-align: middle;
  transition: var(--transition-smooth);
  animation: badgeFlash 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.status-badge:hover {
  background: rgba(0, 255, 127, 0.14);
  border-color: rgba(0, 255, 127, 0.35);
  box-shadow: 0 0 12px rgba(0, 255, 127, 0.15);
}

/* Wrapper holds dot + expanding ripple ring, same fixed size */
.status-dot-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.status-dot {
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  background-color: var(--emerald-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald-accent);
  animation: pulseDot 1.4s ease-in-out infinite alternate;
  flex-shrink: 0;
}

/* Ripple ring anchored to the wrapper center */
.status-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--emerald-accent);
  border-radius: 50%;
  animation: rippleRing 1.8s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes pulse {
  0%   { opacity: 0.4; }
  100% { opacity: 1; }
}

.hud-main {
  margin-bottom: 24px;
}

.hud-players-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.hud-players-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.hud-players-numbers {
  display: flex;
  align-items: baseline;
  margin-top: 4px;
}

.hud-count-highlight {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hud-count-divider {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.2);
  margin: 0 6px;
}

.hud-count-max {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

/* Beautiful Animated Progress bar */
.progress-bar-container {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar-fill {
  height: 100%;
  background: var(--violet-accent); /* solid red */
  border-radius: 99px;
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 8px rgba(224, 32, 32, 0.5), 0 0 18px rgba(224, 32, 32, 0.2);
}

.hud-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.hud-meta-item {
  display: flex;
  flex-direction: column;
}

.hud-meta-label {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hud-meta-value {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 4px;
}

/* Copier widget */
.ip-copy-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 16px;
}

.ip-copy-widget:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(224, 32, 32, 0.4);
  box-shadow: 0 5px 20px rgba(224, 32, 32, 0.12);
  transform: translateY(-1px);
}

.ip-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.copy-action {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.ip-copy-widget:hover .copy-action {
  color: var(--text-white);
}

.copy-action svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Discord Invite Widget inside HUD */
.card-discord-invite {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(224, 32, 32, 0.05);
  border: 1px solid rgba(224, 32, 32, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  transition: var(--transition-smooth);
}

.card-discord-invite:hover {
  background: rgba(224, 32, 32, 0.08);
  border-color: rgba(224, 32, 32, 0.3);
}

.card-discord-left {
  display: flex;
  flex-direction: column;
}

.discord-invite-tag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red-accent);
  text-transform: uppercase;
}

.discord-invite-title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 2px;
}

.card-discord-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--red-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.card-discord-join-btn:hover {
  background: #ff3535;
  transform: translateX(2px);
}

/* About Server Section */
.about-section {
  position: relative;
  padding: 120px 24px;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--emerald-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 0 10px var(--emerald-accent-glow);
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--violet-accent), var(--emerald-accent));
  margin: 16px auto 0;
  border-radius: 9px;
  box-shadow: 0 0 10px var(--violet-accent-glow);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}

.about-card {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-card:hover .about-image {
  transform: scale(1.04);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

.about-card-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-card-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-accent);
  margin-bottom: 8px;
}

.text-glow-emerald {
  color: var(--emerald-accent) !important;
}

.about-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.about-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.about-card-features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 8px;
}

.feat-dot {
  width: 5px;
  height: 5px;
  background-color: var(--violet-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--violet-accent);
}

.dot-emerald {
  background-color: var(--emerald-accent) !important;
  box-shadow: 0 0 6px var(--emerald-accent) !important;
}

.tag-emerald {
  border-color: rgba(0, 255, 127, 0.1) !important;
  background: rgba(0, 255, 127, 0.02) !important;
}

/* Horizontal technical specifications bar */
.tech-specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.spec-col {
  display: flex;
  flex-direction: column;
}

.spec-num {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.text-glow-violet {
  color: var(--violet-accent);
  text-shadow: 0 0 15px var(--violet-accent-glow);
}

.text-glow-emerald {
  color: var(--emerald-accent);
  text-shadow: 0 0 15px var(--emerald-accent-glow);
}

.spec-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.06em;
}

/* Developers / Team Section */
.developers-section {
  position: relative;
  padding: 120px 24px;
  z-index: 2;
}

.developer-spotlight-container {
  max-width: 1000px;
  margin: 60px auto 0;
  width: 100%;
}

.developer-profile-card {
  padding: 48px;
  border-color: rgba(138, 43, 226, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.developer-card-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 48px;
  align-items: center;
}

.developer-avatar-column {
  display: flex;
  justify-content: center;
}

.developer-img-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.developer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(105%) brightness(95%);
  transition: var(--transition-smooth);
}

.developer-img-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  border: 1px solid var(--violet-accent);
  opacity: 0.25;
  pointer-events: none;
  box-shadow: 0 0 25px var(--violet-accent-glow);
  transition: var(--transition-smooth);
}

.developer-profile-card:hover .developer-img {
  transform: scale(1.03);
}

.developer-profile-card:hover .developer-img-glow {
  opacity: 0.45;
  box-shadow: 0 0 35px var(--violet-accent);
}

.developer-info-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.dev-header {
  display: flex;
  flex-direction: column;
}

.dev-role-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--violet-accent);
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 0 10px var(--violet-accent-glow);
}

.dev-name {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.dev-bio {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin: 20px 0 24px;
}

.dev-stats-hud {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 28px;
}

.hud-stat-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hud-stat-box:hover {
  border-color: rgba(138, 43, 226, 0.2);
}

.hud-stat-label {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hud-stat-val {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.dev-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet-accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 30px;
  box-shadow: 0 4px 15px var(--violet-accent-glow);
  transition: var(--transition-smooth);
}

.dev-social-btn:hover {
  background: #9b46ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138, 43, 226, 0.4);
}

/* Clipboard Copy Notification overlay */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0, 255, 127, 0.15);
  color: var(--emerald-accent);
}

.toast-icon svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
}

/* Fullscreen Mobile Drawer Menu overlay */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-drawer-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.mobile-drawer-link:hover {
  color: var(--text-white);
}

/* Responsive Adaptive Layout Breakpoints */
@media (max-width: 1100px) {
  .navbar {
    padding: 20px 48px;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 20px 48px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .dashboard-left {
    align-items: center;
    text-align: center;
  }

  .hero-heading {
    font-size: 48px;
  }

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

  .action-buttons-group {
    justify-content: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tech-specs-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 24px;
  }

  .nav-links {
    display: none;
    /* Hide standard nav on mobile screens */
  }

  .navbar .btn-waitlist-container {
    display: none;
    /* Collapses nav pill in favor of burger menu */
  }

  .mobile-nav-toggle {
    display: block;
    /* Hamburger toggle is visible */
  }

  .hero-section {
    padding-top: 130px;
  }

  .hero-heading {
    font-size: 38px;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 14px;
    line-height: 1.5;
  }

  .action-buttons-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-waitlist-light-container,
  .btn-waitlist-container {
    width: 100%;
  }

  .btn-waitlist-light,
  .btn-waitlist-dark {
    width: 100%;
    padding: 14px 28px;
  }

  .glass-card {
    padding: 24px;
  }

  .hud-count-highlight {
    font-size: 48px;
  }

  .about-section {
    padding: 80px 24px;
  }

  .section-title {
    font-size: 30px;
  }

  .about-image-wrapper {
    height: 200px;
  }

  .about-card-content {
    padding: 24px;
  }

  .tech-specs-bar {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .spec-num {
    font-size: 26px;
  }

  .developers-section {
    padding: 80px 24px;
  }

  .developer-profile-card {
    padding: 24px;
  }

  .developer-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .developer-img-wrapper {
    max-width: 200px;
  }

  .dev-name {
    font-size: 28px;
  }

  .dev-bio {
    font-size: 14px;
  }

  .hud-stat-box {
    padding: 10px 14px;
  }

  .dev-social-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ====================================================
   PREMIUM BUTTON ANIMATIONS
   ==================================================== */

/* Shimmer sweep — applied via .btn-anim class on buttons */
.btn-anim {
  position: relative;
  overflow: hidden;
}

.btn-anim::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 100%
  );
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
  border-radius: inherit;
}

/* Animated scan line on the early access badge */
.early-access-badge {
  position: relative;
  overflow: hidden;
}

.early-access-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 127, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out 1.5s infinite;
  pointer-events: none;
}

/* Feature tags lift on hover */
.feature-tag {
  transition: var(--transition-smooth);
}

.feature-tag:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 32, 32, 0.25);
  box-shadow: 0 4px 12px rgba(224, 32, 32, 0.1);
}

.tag-emerald:hover {
  border-color: rgba(0, 255, 127, 0.25) !important;
  box-shadow: 0 4px 12px rgba(0, 255, 127, 0.1) !important;
}

/* Spec numbers glow pulse on the stats bar */
.spec-num {
  transition: var(--transition-smooth);
}

.spec-col:hover .spec-num {
  text-shadow: 0 0 20px currentColor;
  transform: scale(1.04);
}

/* About game mode cards get a shine edge on hover */
.about-card {
  transition: var(--transition-smooth);
}

.about-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Discord invite inner card join button */
.card-discord-join-btn {
  position: relative;
  overflow: hidden;
}

.card-discord-join-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shimmer 2.8s ease-in-out 2s infinite;
  pointer-events: none;
}

/* Developer social button subtle pulse glow */
.dev-social-btn {
  animation: none;
  transition: var(--transition-smooth);
}

.dev-social-btn:hover {
  background: #ff3535;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(224, 32, 32, 0.5);
}

/* hud-stat-box neon left border on hover */
.hud-stat-box {
  border-left: 2px solid transparent;
  transition: var(--transition-smooth);
}

.hud-stat-box:hover {
  border-left-color: var(--violet-accent);
  background: rgba(224, 32, 32, 0.05);
  padding-left: 18px;
}