/* ==========================================================================
   CURSE-X — Official Landing Page Stylesheet
   Steam GunZ Internal | Developed by zxpwd
   ========================================================================== */

:root {
  /* Colors */
  --bg-main: #07090d;
  --bg-surface: #0d1118;
  --bg-surface-raised: #111722;
  --bg-surface-glass: rgba(13, 17, 24, 0.75);
  --bg-card: rgba(17, 23, 34, 0.65);
  --bg-card-hover: rgba(22, 31, 46, 0.85);

  /* Accents */
  --accent-primary: #ff2a55;
  --accent-primary-hover: #ff456c;
  --accent-primary-glow: rgba(255, 42, 85, 0.35);
  --accent-red-gradient: linear-gradient(135deg, #ff2a55 0%, #d4143d 100%);
  --accent-cyan: #00f0ff;
  --accent-cyan-glow: rgba(0, 240, 255, 0.3);
  --accent-purple: #9d4edd;
  --accent-purple-glow: rgba(157, 78, 221, 0.3);
  --accent-emerald: #00e676;
  --accent-amber: #ffb703;

  /* Typography */
  --text-main: #f5f7fa;
  --text-muted: #9099a8;
  --text-dim: #5a6474;
  --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, Monaco, monospace;

  /* Borders & Shadows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(255, 42, 85, 0.45);
  --border-cyan: rgba(0, 240, 255, 0.3);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(255, 42, 85, 0.25);
  --shadow-hud: 0 0 25px rgba(0, 0, 0, 0.8);

  /* Radii & Layout */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --max-width: 1280px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background: 
    radial-gradient(circle at 50% 0%, rgba(255, 42, 85, 0.09) 0%, transparent 50%),
    radial-gradient(circle at 100% 30%, rgba(0, 240, 255, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 0% 70%, rgba(157, 78, 221, 0.04) 0%, transparent 40%),
    var(--bg-main);
}

/* Subtle Ambient Background Grid & Noise */
.ambient-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  mask-image: radial-gradient(circle at 50% 35%, black 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 50% 35%, black 40%, transparent 85%);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 9, 13, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 8px var(--accent-primary-glow));
}

.brand-icon svg {
  width: 100%;
  height: 100%;
}

.brand-logo span.highlight {
  color: var(--accent-primary);
}

/* Desktop Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent-primary);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--accent-primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-sm);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--accent-red-gradient);
  color: #ffffff;
  border: 1px solid rgba(255, 42, 85, 0.5);
  box-shadow: 0 4px 14px var(--accent-primary-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff456c 0%, #ea1a46 100%);
  box-shadow: 0 6px 20px rgba(255, 42, 85, 0.55);
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(13, 17, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav-link:hover {
  color: var(--accent-primary);
  padding-left: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 4rem 0 3rem 0;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

/* Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 42, 85, 0.12);
  border: 1px solid rgba(255, 42, 85, 0.35);
  color: var(--accent-primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
  animation: pulse-dot 2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-title .title-accent {
  color: var(--accent-primary);
  text-shadow: 0 0 25px var(--accent-primary-glow);
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.hero-author {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-author span.author-name {
  color: var(--accent-primary);
  font-weight: 700;
}

.hero-description {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

/* Hero CTA Group */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}

.btn-hero-discord {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  background: var(--accent-red-gradient);
  border: 1px solid rgba(255, 42, 85, 0.6);
  border-radius: var(--radius-sm);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--accent-primary-glow);
  transition: all 0.22s ease;
  min-width: 180px;
}

.btn-hero-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 42, 85, 0.65);
}

.discord-cta-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
}

.discord-cta-url {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-mono);
  margin-top: 2px;
}

.btn-hero-explore {
  padding: 0.95rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: all 0.22s ease;
}

.btn-hero-explore:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Visual HUD / Dashboard Simulation
   ========================================================================== */
.hero-visual {
  position: relative;
  width: 100%;
}

.hud-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hud), 0 0 40px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  position: relative;
}

.hud-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-subtle);
}

.hud-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-main);
}

.hud-window-controls {
  display: flex;
  gap: 6px;
}

.hud-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.hud-layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 380px;
}

/* Internal Menu Sidebar */
.hud-sidebar {
  background: rgba(0, 0, 0, 0.25);
  border-right: 1px solid var(--border-subtle);
  padding: 0.85rem 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hud-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  list-style: none;
}

.hud-tab-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-xs);
  transition: all 0.15s ease;
  cursor: default;
}

.hud-tab-item.active {
  background: rgba(255, 42, 85, 0.15);
  color: var(--accent-primary);
  border-left: 2px solid var(--accent-primary);
}

.hud-tab-item:hover:not(.active) {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.hud-sidebar-status {
  padding: 0.4rem 0.6rem;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.6rem;
}

.hud-status-label {
  color: var(--text-dim);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.hud-status-val {
  color: var(--accent-emerald);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Internal Dashboard Panels */
.hud-content-grid {
  padding: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.85rem;
}

.hud-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
}

.hud-panel-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Player Status Panel */
.player-status-flex {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.wireframe-avatar {
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wireframe-avatar svg {
  width: 100%;
  height: 100%;
  stroke: var(--accent-primary);
  filter: drop-shadow(0 0 6px var(--accent-primary-glow));
}

.player-stats-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-name {
  color: var(--text-muted);
}

.stat-val {
  color: #ffffff;
  font-weight: 700;
}

.stat-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  margin-top: 0.4rem;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  width: 78%;
  background: var(--accent-primary);
  box-shadow: 0 0 6px var(--accent-primary);
}

/* Radar Panel */
.radar-flex {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.radar-circle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid rgba(255, 42, 85, 0.4);
  position: relative;
  background: radial-gradient(circle, rgba(255, 42, 85, 0.05) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.radar-sweep {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 270deg, rgba(255, 42, 85, 0.4) 360deg);
  animation: radar-spin 3s linear infinite;
  border-radius: 50%;
}

@keyframes radar-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-blip {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.blip-enemy {
  background: var(--accent-primary);
  box-shadow: 0 0 6px var(--accent-primary);
}

.blip-1 { top: 25%; left: 35%; }
.blip-2 { top: 60%; left: 70%; }
.blip-3 { top: 40%; left: 65%; }

.radar-stats {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-family: var(--font-mono);
}

/* ESP Overview Panel */
.esp-preview {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 65px;
  position: relative;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-xs);
  margin-bottom: 0.4rem;
}

.esp-box-target {
  border: 1px solid var(--accent-primary);
  padding: 4px 6px;
  font-size: 0.58rem;
  font-family: var(--font-mono);
  color: var(--accent-primary);
  box-shadow: 0 0 8px rgba(255, 42, 85, 0.3);
  text-align: center;
  position: relative;
}

.esp-box-target.target-small {
  height: 40px;
  width: 26px;
}

.esp-box-target.target-med {
  height: 52px;
  width: 32px;
}

.esp-legend-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.62rem;
  color: var(--text-dim);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 3px;
}

.legend-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

/* Match Info & Engine Status */
.telemetry-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-family: var(--font-mono);
}

.telemetry-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.telemetry-label {
  color: var(--text-muted);
}

.telemetry-val {
  color: var(--text-main);
  font-weight: 600;
}

.status-ok {
  color: var(--accent-emerald);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-ok::before {
  content: '●';
  font-size: 0.6rem;
}

/* ==========================================================================
   Trust / Platform Bar
   ========================================================================== */
.trust-bar-section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(13, 17, 24, 0.4);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* ==========================================================================
   Feature Categories Section
   ========================================================================== */
.features-section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  color: var(--accent-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* 9 Cards Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 42, 85, 0.08) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 42, 85, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 42, 85, 0.15);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.05);
}

.icon-red { color: #ff2a55; border-color: rgba(255, 42, 85, 0.3); background: rgba(255, 42, 85, 0.08); }
.icon-pink { color: #f72585; border-color: rgba(247, 37, 133, 0.3); background: rgba(247, 37, 133, 0.08); }
.icon-cyan { color: #00f0ff; border-color: rgba(0, 240, 255, 0.3); background: rgba(0, 240, 255, 0.08); }
.icon-violet { color: #b5179e; border-color: rgba(181, 23, 158, 0.3); background: rgba(181, 23, 158, 0.08); }
.icon-purple { color: #7209b7; border-color: rgba(114, 9, 183, 0.3); background: rgba(114, 9, 183, 0.08); }
.icon-amber { color: #ffb703; border-color: rgba(255, 183, 3, 0.3); background: rgba(255, 183, 3, 0.08); }
.icon-emerald { color: #00e676; border-color: rgba(0, 230, 118, 0.3); background: rgba(0, 230, 118, 0.08); }
.icon-teal { color: #4cc9f0; border-color: rgba(76, 201, 240, 0.3); background: rgba(76, 201, 240, 0.08); }

.feature-icon-box svg {
  width: 26px;
  height: 26px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   Commands & Live System Status Grid
   ========================================================================== */
.terminal-status-section {
  padding: 2rem 0 5rem 0;
  position: relative;
}

.terminal-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

/* Terminal Card */
.terminal-card {
  background: #090d14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.terminal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-mono);
  color: var(--accent-primary);
  letter-spacing: 0.05em;
}

.terminal-controls {
  display: flex;
  gap: 8px;
  color: var(--text-dim);
}

.terminal-body {
  padding: 1.25rem;
  font-family: var(--font-mono);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.command-row {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0.6rem;
  border-radius: var(--radius-xs);
  transition: background 0.15s ease;
}

.command-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.command-code {
  color: var(--accent-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.command-desc {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.command-copy-btn {
  font-size: 0.7rem;
  color: var(--text-dim);
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  cursor: pointer;
}

.command-copy-btn:hover {
  color: #ffffff;
  border-color: var(--border-subtle);
  background: rgba(255, 255, 255, 0.05);
}

.terminal-footer-cursor {
  padding-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blinking-cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Live System Status Card */
.live-status-card {
  background: #090d14;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.live-status-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.status-card-header {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-check-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.status-check-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-name {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hologram 3D Wireframe Cube Animation */
.wireframe-cube-box {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cube-hologram {
  width: 100px;
  height: 100px;
  animation: rotate-cube 12s infinite linear;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 12px var(--accent-primary-glow));
}

@keyframes rotate-cube {
  from { transform: rotateX(15deg) rotateY(0deg); }
  to { transform: rotateX(15deg) rotateY(360deg); }
}

/* ==========================================================================
   Developer & Discord Banner Section
   ========================================================================== */
.community-banner-section {
  padding: 2rem 0 5rem 0;
}

.community-card {
  background: linear-gradient(135deg, rgba(17, 23, 34, 0.85) 0%, rgba(13, 17, 24, 0.95) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: var(--shadow-md), 0 0 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(255, 42, 85, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.dev-info-block {
  border-right: 1px solid var(--border-subtle);
  padding-right: 2rem;
  min-width: 180px;
}

.dev-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.dev-author {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent-primary);
  text-shadow: 0 0 15px var(--accent-primary-glow);
  margin-bottom: 0.25rem;
}

.dev-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.discord-center-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}

.discord-big-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.35);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5865f2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.25);
  flex-shrink: 0;
}

.discord-big-icon-wrap svg {
  width: 32px;
  height: 32px;
}

.community-text h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
}

.community-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.btn-banner-discord {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background: var(--accent-red-gradient);
  border: 1px solid rgba(255, 42, 85, 0.6);
  border-radius: var(--radius-sm);
  color: #ffffff;
  box-shadow: 0 6px 24px var(--accent-primary-glow);
  transition: all 0.22s ease;
  min-width: 200px;
  flex-shrink: 0;
}

.btn-banner-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 42, 85, 0.7);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding: 2.5rem 0 3rem 0;
  border-top: 1px solid var(--border-subtle);
  background: #05070a;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-title {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text-main);
}

.footer-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a:hover {
  color: var(--accent-primary);
}

/* Mobile Sticky Bottom Nav Bar */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: rgba(13, 17, 24, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-subtle);
  z-index: 95;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.5rem;
}

.mobile-bottom-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
}

.mobile-bottom-item svg {
  width: 20px;
  height: 20px;
}

.mobile-bottom-item.active, .mobile-bottom-item:hover {
  color: var(--accent-primary);
}

/* ==========================================================================
   Responsive Breakpoints & Mobile Polish
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .terminal-grid {
    grid-template-columns: 1fr;
  }
  .community-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }
  .dev-info-block {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding-right: 0;
    padding-bottom: 1.25rem;
    width: 100%;
  }
  .discord-center-block {
    width: 100%;
  }
  .btn-banner-discord {
    width: 100%;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .nav-menu, .nav-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .mobile-drawer {
    display: flex;
  }
  .mobile-bottom-nav {
    display: flex;
  }
  body {
    padding-bottom: 70px; /* Space for mobile sticky bottom bar */
  }

  .hero-section {
    padding: 2.5rem 0 2rem 0;
  }
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
    letter-spacing: 0.15em;
  }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-hero-discord, .btn-hero-explore {
    width: 100%;
    text-align: center;
  }

  .hud-layout {
    grid-template-columns: 1fr;
  }
  .hud-sidebar {
    display: none; /* Simplify on mobile for pure card presentation */
  }
  .hud-content-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .trust-item {
    font-size: 0.75rem;
    gap: 0.4rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .command-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.6rem;
  }
  .command-copy-btn {
    display: none;
  }

  .live-status-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .wireframe-cube-box {
    align-self: center;
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* Small Phones (max-width: 380px) */
@media (max-width: 380px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .trust-bar-grid {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 1rem;
  }
}

/* Respect Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
