/* =============================================
   TwoRoadsDayZ — Apocalypse Edition
   Palette: Deep Green / Moss / Amber
   Fonts: Orbitron | Rajdhani | Share Tech Mono
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&family=Exo+2:wght@300;400;500;600&display=swap');

:root {
  --bg-primary:      #040804;
  --bg-secondary:    #080f07;
  --bg-card:         rgba(8,15,7,0.88);
  --bg-card-hover:   rgba(12,22,10,0.95);
  --green-dark:      #1e4a2a;
  --green-mid:       #2d7a42;
  --green-bright:    #4caf78;
  --green-glow:      rgba(76,175,120,0.35);
  --accent-dark:     #214d2d;
  --accent-mid:      #2f6c3f;
  --accent-bright:   #4caf78;
  --accent-glow:     rgba(76,175,120,0.3);
  --amber:           #b8741a;
  --amber-bright:    #e89820;
  --amber-glow:      rgba(232,152,32,0.3);
  --text-primary:    #b8c9b0;
  --text-secondary:  #637a59;
  --text-mono:       #5cb87a;
  --border-green:    rgba(60,120,60,0.35);
  --border-accent:   rgba(76,175,120,0.35);
  --scanline-color:  rgba(0,0,0,0.06);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ─── CURSOR ─────────────────────────────────── */
* { cursor: none !important; }
.cursor-outer {
  position: fixed; top: 0; left: 0;
  width: 32px; height: 32px;
  border: 1.5px solid var(--green-bright);
  border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .18s ease, height .18s ease, border-color .18s ease, opacity .18s ease;
  box-shadow: 0 0 10px var(--green-glow), inset 0 0 10px rgba(76,175,120,0.1);
  animation: cursorPulse 2.5s ease-in-out infinite;
}
.cursor-inner {
  position: fixed; top: 0; left: 0;
  width: 5px; height: 5px;
  background: var(--green-bright);
  border-radius: 50%;
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 6px var(--green-bright);
  transition: transform .08s ease;
}
.cursor-crosshair-h, .cursor-crosshair-v {
  position: fixed; pointer-events: none; z-index: 99998;
  background: var(--green-bright); opacity: 0.25;
  transition: opacity .18s ease;
}
.cursor-crosshair-h { width: 20px; height: 1px; transform: translate(-50%,-50%); }
.cursor-crosshair-v { width: 1px; height: 20px; transform: translate(-50%,-50%); }
.cursor-outer.hovering {
  width: 48px; height: 48px;
  border-color: var(--amber-bright);
  box-shadow: 0 0 20px var(--amber-glow), inset 0 0 15px rgba(232,152,32,0.15);
  animation: none;
}
.cursor-inner.hovering { background: var(--amber-bright); box-shadow: 0 0 8px var(--amber-bright); transform: translate(-50%,-50%) scale(1.4); }
.cursor-crosshair-h.hovering, .cursor-crosshair-v.hovering { opacity: 0.5; background: var(--amber-bright); }
@keyframes cursorPulse {
  0%,100%  { box-shadow: 0 0 8px var(--green-glow); }
  50%      { box-shadow: 0 0 18px var(--green-glow), 0 0 30px rgba(76,175,120,0.15); }
}

/* ─── BODY & ATMOSPHERE ─────────────────────── */
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden; position: relative;
  min-height: 100vh;
}

/* Scanline overlay */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    var(--scanline-color) 2px, var(--scanline-color) 4px
  );
  pointer-events: none;
}

/* Vignette */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(4,8,4,0.65) 100%);
  pointer-events: none;
}

/* Particles canvas (injected by JS) */
#apoc-canvas {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* Fog layers */
.fog-layer {
  position: fixed; top: 0; left: -100%; width: 300%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0;
}
.fog-layer-1 {
  background: radial-gradient(ellipse 40% 25% at 30% 70%, rgba(30,74,42,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 60% 30% at 70% 30%, rgba(20,50,28,0.05) 0%, transparent 70%);
  animation: fogDrift1 35s ease-in-out infinite alternate;
  opacity: 1;
}
.fog-layer-2 {
  background: radial-gradient(ellipse 50% 20% at 50% 80%, rgba(20,40,20,0.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 35% at 20% 20%, rgba(140,30,30,0.04) 0%, transparent 70%);
  animation: fogDrift2 50s ease-in-out infinite alternate;
  opacity: 1;
}
@keyframes fogDrift1 {
  0%   { transform: translateX(0); }
  100% { transform: translateX(15%); }
}
@keyframes fogDrift2 {
  0%   { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-10%) translateY(3%); }
}

/* ─── SCROLL INDICATOR ──────────────────────── */
.scroll-indicator {
  position: fixed; top: 0; left: 0; width: 100%; height: 3px;
  background: rgba(4,8,4,0.6); z-index: 9999;
}
.scroll-progress {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-bright), var(--amber-bright));
  transition: width .2s ease;
  box-shadow: 0 0 12px var(--green-glow);
}

/* ─── NAVIGATION ─────────────────────────────── */
nav {
  position: fixed; top: 3px; width: 100%;
  background: rgba(4,8,4,0.92);
  backdrop-filter: blur(24px) saturate(120%);
  padding: .9rem 0; z-index: 1000;
  border-bottom: 1px solid var(--border-green);
  box-shadow: 0 2px 24px rgba(0,0,0,0.7), 0 0 0 1px rgba(76,175,120,0.05);
  transition: all .3s ease;
}
nav.scrolled {
  background: rgba(4,8,4,0.97);
  border-bottom-color: rgba(76,175,120,0.4);
  box-shadow: 0 4px 32px rgba(0,0,0,0.8), 0 0 20px rgba(76,175,120,0.08);
}
.nav-container {
  max-width: 1240px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2rem;
}
.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.35rem; font-weight: 900;
  letter-spacing: .12em;
  color: var(--green-bright);
  text-decoration: none;
  text-shadow: 0 0 20px var(--green-glow), 0 0 40px rgba(76,175,120,0.2);
  animation: logoFlicker 8s ease-in-out infinite;
  position: relative;
}
.logo::before {
  content: '//';
  font-family: 'Share Tech Mono', monospace;
  font-size: .85rem; color: var(--amber);
  margin-right: .4rem; opacity: .7;
  vertical-align: middle;
}
@keyframes logoFlicker {
  0%,95%,100% { opacity: 1; text-shadow: 0 0 20px var(--green-glow); }
  96%         { opacity: .85; text-shadow: 0 0 8px var(--green-glow); }
  97%         { opacity: 1;  text-shadow: 0 0 25px var(--green-glow), 0 0 50px rgba(76,175,120,0.3); }
  98%         { opacity: .9; text-shadow: 0 0 10px var(--green-glow); }
}
.nav-links { display: flex; list-style: none; gap: 1.5rem; flex-wrap: wrap; }
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-size: .95rem; font-weight: 600; letter-spacing: .06em;
  color: var(--text-secondary); text-decoration: none;
  padding: .4rem .9rem; border-radius: 3px;
  border: 1px solid transparent;
  transition: all .25s ease; position: relative;
  text-transform: uppercase;
}
.nav-links a i { font-size: .8rem; margin-right: .35rem; opacity: .7; }
.nav-links a:hover {
  color: var(--green-bright);
  border-color: var(--border-green);
  background: rgba(76,175,120,0.06);
  text-shadow: 0 0 12px var(--green-glow);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--green-bright);
  transform: scaleX(0); transition: transform .25s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

/* ─── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background:
    linear-gradient(to bottom, rgba(4,8,4,0.82) 0%, rgba(4,8,4,0.5) 50%, rgba(4,8,4,0.82) 100%),
    url('background.png') center/cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, transparent 0%, rgba(4,8,4,0.7) 100%),
    linear-gradient(135deg, rgba(30,74,42,0.12) 0%, transparent 40%, rgba(140,30,30,0.08) 100%);
}
/* Hero HUD corner brackets */
.hero::after {
  content: '';
  position: absolute; inset: 40px;
  border: 1px solid rgba(76,175,120,0.12);
  pointer-events: none;
  background: 
    linear-gradient(to right, var(--green-bright), var(--green-bright)) top left / 40px 1px no-repeat,
    linear-gradient(to bottom, var(--green-bright), var(--green-bright)) top left / 1px 40px no-repeat,
    linear-gradient(to left, var(--green-bright), var(--green-bright)) top right / 40px 1px no-repeat,
    linear-gradient(to bottom, var(--green-bright), var(--green-bright)) top right / 1px 40px no-repeat,
    linear-gradient(to right, var(--green-bright), var(--green-bright)) bottom left / 40px 1px no-repeat,
    linear-gradient(to top, var(--green-bright), var(--green-bright)) bottom left / 1px 40px no-repeat,
    linear-gradient(to left, var(--green-bright), var(--green-bright)) bottom right / 40px 1px no-repeat,
    linear-gradient(to top, var(--green-bright), var(--green-bright)) bottom right / 1px 40px no-repeat;
  opacity: 0.5; z-index: 1;
}
.hero-content {
  text-align: center; position: relative; z-index: 2;
  max-width: 860px; padding: 0 2rem;
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900; letter-spacing: .08em;
  line-height: 1.05; margin-bottom: 1.2rem;
  color: var(--green-bright);
  text-shadow:
    0 0 30px var(--green-glow),
    0 0 60px rgba(76,175,120,0.2),
    0 2px 4px rgba(0,0,0,0.8);
  animation: heroGlow 4s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from { text-shadow: 0 0 20px var(--green-glow), 0 2px 4px rgba(0,0,0,0.8); filter: brightness(1); }
  to   { text-shadow: 0 0 40px var(--green-glow), 0 0 80px rgba(76,175,120,0.25), 0 2px 4px rgba(0,0,0,0.8); filter: brightness(1.08); }
}
.hero p {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500; letter-spacing: .12em;
  color: var(--text-secondary); margin-bottom: 2.5rem;
  text-transform: uppercase;
}
.hero p::before { content: '[ '; color: var(--green-mid); }
.hero p::after  { content: ' ]'; color: var(--green-mid); }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-block; padding: .85rem 2.2rem; margin: .4rem;
  font-family: 'Rajdhani', sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; position: relative;
  overflow: hidden; z-index: 1; transition: all .25s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-100%); transition: transform .45s ease; z-index: -1;
}
.btn:hover::before { transform: translateX(100%); }
.btn-primary {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff; border: 1px solid var(--green-mid);
  box-shadow: 0 4px 20px rgba(45,122,66,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  box-shadow: 0 6px 30px rgba(76,175,120,0.5), 0 0 20px rgba(76,175,120,0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--green-bright); border: 1px solid var(--green-mid);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-secondary:hover {
  background: rgba(76,175,120,0.1);
  border-color: var(--green-bright);
  box-shadow: 0 6px 25px rgba(76,175,120,0.3), inset 0 0 15px rgba(76,175,120,0.05);
  transform: translateY(-2px);
}

/* ─── SECTIONS ───────────────────────────────── */
section { padding: 100px 0; position: relative; z-index: 2; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.section-title {
  font-family: 'Orbitron', sans-serif;
  text-align: center; font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700; letter-spacing: .1em;
  color: var(--green-bright);
  text-shadow: 0 0 20px var(--green-glow);
  margin-bottom: 3.5rem; position: relative;
  text-transform: uppercase;
}
.section-title::before {
  content: '//'; font-family: 'Share Tech Mono', monospace;
  font-size: .8em; color: var(--amber); margin-right: .6em;
  opacity: .8;
}
.section-title::after {
  content: ''; display: block; width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--green-mid), transparent);
  margin: .7rem auto 0; border-radius: 2px;
  box-shadow: 0 0 8px var(--green-glow);
}

/* ─── CARDS ──────────────────────────────────── */
.server-card, .store-item, .staff-card, .contact-info, .contact-form {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-green);
  border-radius: 4px;
  padding: 2rem; position: relative; overflow: hidden;
  transition: all .3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), inset 0 1px 0 rgba(76,175,120,0.06);
}
/* Corner bracket decoration on cards */
.server-card::before, .store-item::before, .staff-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 20px; height: 20px;
  border-top: 2px solid var(--green-bright);
  border-left: 2px solid var(--green-bright);
  opacity: 0.6;
}
.server-card::after, .store-item::after, .staff-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 20px; height: 20px;
  border-bottom: 2px solid var(--green-mid);
  border-right: 2px solid var(--green-mid);
  opacity: 0.4;
}
.server-card:hover, .store-item:hover, .staff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(76,175,120,0.55);
  box-shadow: 0 16px 48px rgba(0,0,0,0.7), 0 0 24px rgba(76,175,120,0.12);
  background: var(--bg-card-hover);
}
.server-card i, .store-item i {
  font-size: 2.4rem; color: var(--green-bright); margin-bottom: 1rem;
  display: block; text-shadow: 0 0 16px var(--green-glow);
  font-family: 'Font Awesome 6 Free', sans-serif;
}
.server-card h3, .store-item h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem; font-weight: 700; letter-spacing: .06em;
  color: var(--text-primary); margin-bottom: .75rem; text-transform: uppercase;
}
.server-card p, .store-item p { color: var(--text-secondary); line-height: 1.65; font-size: .95rem; }

.server-info {
  background: rgba(4,8,4,0.7);
  padding: .9rem 1rem; border-radius: 2px; margin: 1rem 0;
  border-left: 3px solid var(--green-mid);
  font-family: 'Share Tech Mono', monospace;
  font-size: .88rem; color: var(--text-mono); line-height: 1.8;
}
.server-info strong { color: var(--green-bright); }
.server-info code {
  background: rgba(76,175,120,0.12); padding: .2rem .5rem;
  border-radius: 2px; color: var(--green-bright);
  border: 1px solid rgba(76,175,120,0.25);
}

/* GRIDS */
.server-grid { display: grid; gap: 1.8rem; margin-top: 2rem; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); }
.social-grid { display: grid; gap: 1.8rem; margin-top: 2rem; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); }
.store-grid  { display: grid; gap: 1.8rem; margin-top: 2rem; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); }
.staff-grid  { display: grid; gap: 1.8rem; margin-top: 2rem; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }

/* ─── STAFF CARDS ────────────────────────────── */
.owner-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: .68rem; letter-spacing: .15em;
  color: var(--amber-bright); text-transform: uppercase;
  background: rgba(184,116,26,0.12); border: 1px solid var(--amber);
  padding: .25rem .75rem; border-radius: 2px; display: inline-block;
  margin-bottom: 1rem; text-shadow: 0 0 10px var(--amber-glow);
}
.staff-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--green-dark));
  border: 2px solid var(--border-green); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 0 1rem; font-size: 1.8rem; color: var(--green-bright);
  box-shadow: 0 0 16px rgba(76,175,120,0.15);
}
.staff-card h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.25rem; font-weight: 700; color: var(--text-primary);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: .3rem;
}
.staff-role {
  font-family: 'Share Tech Mono', monospace;
  font-size: .8rem; color: var(--green-mid); letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: .8rem;
}
.staff-bio { font-size: .9rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── SOCIAL BUTTONS ─────────────────────────── */
.social-btn {
  display: block; padding: 2rem;
  text-decoration: none; border-radius: 4px;
  text-align: center; transition: all .3s ease;
  position: relative; overflow: hidden;
  border: 1px solid var(--border-green);
  background: var(--bg-card); font-family: 'Rajdhani', sans-serif;
}
.social-btn i { font-size: 2.5rem; display: block; margin-bottom: .6rem; }
.discord-btn {
  background: linear-gradient(135deg, rgba(88,101,242,0.2), rgba(114,137,218,0.1));
  border-color: rgba(88,101,242,0.4); color: #7289da;
  box-shadow: 0 6px 24px rgba(88,101,242,0.15);
}
.discord-btn:hover { transform: translateY(-4px) scale(1.02); border-color: rgba(88,101,242,0.7); box-shadow: 0 12px 36px rgba(88,101,242,0.3); color: #a0b0f8; }
.youtube-btn, .social-app-btn {
  background: linear-gradient(135deg, rgba(192,57,43,0.2), rgba(140,30,30,0.1));
  border-color: rgba(192,57,43,0.4); color: var(--red-bright);
  box-shadow: 0 6px 24px rgba(192,57,43,0.12);
}
.youtube-btn:hover, .social-app-btn:hover { transform: translateY(-4px) scale(1.02); border-color: var(--red-bright); box-shadow: 0 12px 36px rgba(192,57,43,0.3); }

/* ─── STORE ──────────────────────────────────── */
.price {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.8rem; font-weight: 700;
  color: var(--amber-bright); margin: .8rem 0;
  text-shadow: 0 0 12px var(--amber-glow);
  letter-spacing: .05em;
}
.price::before { content: '$'; font-size: 1rem; vertical-align: super; opacity: .7; }
.description { font-size: .9rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1.2rem; }
.buy-btn {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif; font-size: .95rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .7rem 1.8rem; text-decoration: none;
  background: linear-gradient(135deg, var(--red-dark), var(--red-mid));
  color: #fff; border: 1px solid var(--red-mid);
  border-radius: 2px; transition: all .25s ease;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}
.buy-btn:hover {
  background: linear-gradient(135deg, var(--red-mid), var(--red-bright));
  box-shadow: 0 6px 24px var(--red-glow), 0 0 16px var(--red-glow);
  transform: translateY(-2px);
}
.coming-soon {
  background: rgba(8,15,7,0.6); color: var(--text-secondary);
  border-color: var(--border-green); opacity: .55;
}
.coming-soon:hover { transform: none; box-shadow: none; background: rgba(8,15,7,0.6); }

/* ─── CONTACT ────────────────────────────────── */
.contact-container { max-width: 820px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem; border-radius: 4px; margin-bottom: 1rem;
  border: 1px solid var(--border-green);
  background: rgba(4,8,4,0.5);
  transition: border-color .25s ease;
}
.contact-item:hover { border-color: rgba(76,175,120,0.5); }
.contact-item > i {
  font-size: 1.4rem; color: var(--green-bright);
  text-shadow: 0 0 10px var(--green-glow); margin-top: .1rem;
}
.contact-item-content h4 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: .06em; color: var(--text-primary); text-transform: uppercase;
  margin-bottom: .3rem;
}
.contact-item-content p { color: var(--text-secondary); font-size: .9rem; }
.contact-item-content a { color: var(--green-bright); text-decoration: none; }
.contact-item-content a:hover { text-shadow: 0 0 10px var(--green-glow); }
.contact-info h3, .contact-form h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-primary); margin-bottom: 1.5rem; font-size: 1.2rem;
}
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block; margin-bottom: .5rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: .9rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-secondary);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .85rem 1rem;
  background: rgba(4,8,4,0.7); color: var(--text-primary);
  border: 1px solid var(--border-green); border-radius: 2px;
  font-family: 'Exo 2', sans-serif; font-size: .95rem;
  transition: all .25s ease; outline: none;
}
.form-group select { background: rgba(4,8,4,0.9); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 16px rgba(76,175,120,0.2), inset 0 0 8px rgba(76,175,120,0.04);
  background: rgba(4,8,4,0.85);
}
.form-group textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.submit-btn {
  width: 100%; padding: .95rem;
  font-family: 'Rajdhani', sans-serif; font-size: 1rem;
  font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff; border: 1px solid var(--green-mid); border-radius: 2px;
  transition: all .25s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}
.submit-btn:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  box-shadow: 0 6px 24px rgba(76,175,120,0.4);
  transform: translateY(-1px);
}
.form-status { font-family: 'Share Tech Mono', monospace; font-size: .9rem; }

/* ─── MEDIA ──────────────────────────────────── */
.video-container {
  position: relative; width: 100%; max-width: 820px; margin: 0 auto;
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border-green);
  box-shadow: 0 12px 48px rgba(0,0,0,0.7), 0 0 24px rgba(76,175,120,0.08);
}
.video-container iframe { width: 100%; height: 460px; border: none; display: block; }

/* ─── FADE IN ─────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── FAB ────────────────────────────────────── */
.fab {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border: 1px solid var(--green-mid); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; text-decoration: none;
  box-shadow: 0 6px 24px rgba(0,0,0,0.6), 0 0 16px rgba(76,175,120,0.2);
  transition: all .25s ease; z-index: 1000;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.fab:hover {
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  box-shadow: 0 8px 32px rgba(76,175,120,0.4);
  transform: translateY(-3px);
}

/* ─── STATUS ─────────────────────────────────── */
.server-status-simple {
  background: rgba(0,30,10,0.5); border: 1px solid rgba(76,175,120,0.4);
  padding: .8rem; border-radius: 4px; margin: 1.5rem 0;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: 'Share Tech Mono', monospace; font-size: .85rem; color: var(--text-mono);
}
.status-dot-simple {
  width: 8px; height: 8px; background: var(--green-bright);
  border-radius: 50%; box-shadow: 0 0 6px var(--green-bright);
  animation: statusPulse 2s ease-in-out infinite;
}
@keyframes statusPulse { 0%,100%{opacity:.6; box-shadow:0 0 4px var(--green-bright)} 50%{opacity:1; box-shadow:0 0 10px var(--green-bright)} }

.coming-soon-message {
  background: rgba(8,15,7,0.6); border: 1px solid var(--border-green);
  padding: 1.8rem; border-radius: 4px; margin: 1.5rem 0;
}
.coming-soon-message h3 {
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: .08em; color: var(--amber-bright); margin-bottom: .8rem; text-transform: uppercase;
}
.coming-soon-message p { color: var(--text-secondary); line-height: 1.65; }

/* ─── YOUTUBE CHANNEL CARD (media.html) ──────── */
.yt-channel-card {
  background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(8,15,7,0.9));
  border: 1px solid rgba(192,57,43,0.35);
  border-radius: 4px; padding: 2.5rem 2rem;
  text-align: center; max-width: 700px; margin: 0 auto 2rem;
  position: relative;
}
.yt-channel-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 20px; height: 20px;
  border-top: 2px solid var(--red-bright); border-left: 2px solid var(--red-bright);
}
.yt-channel-card .yt-icon { font-size: 3.5rem; color: #ff2200; margin-bottom: .8rem; display: block; }
.yt-channel-card h2 { color: var(--text-primary); font-family: 'Rajdhani', sans-serif; font-size: 1.6rem; font-weight: 700; margin-bottom: .6rem; letter-spacing: .06em; text-transform: uppercase; }
.yt-channel-card p { color: var(--text-secondary); margin-bottom: 1.5rem; line-height: 1.6; }
.btn-subscribe {
  display: inline-flex; align-items: center; gap: .6rem;
  background: linear-gradient(135deg, #8b1a1a, #c0392b);
  color: #fff; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: .95rem; padding: .75rem 1.8rem;
  border-radius: 2px; text-decoration: none;
  border: 1px solid var(--red-bright); letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s ease; clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 0 100%);
}
.btn-subscribe:hover { background: linear-gradient(135deg, #c0392b, #e74c3c); transform: scale(1.04); box-shadow: 0 6px 24px var(--red-glow); color: #fff; }
.btn-watch {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--green-bright);
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: .9rem; padding: .7rem 1.6rem; margin-left: .75rem;
  border: 1px solid var(--green-mid); border-radius: 2px;
  text-decoration: none; text-transform: uppercase; letter-spacing: .06em;
  transition: all .25s ease;
}
.btn-watch:hover { border-color: var(--green-bright); background: rgba(76,175,120,0.1); transform: scale(1.04); color: var(--green-bright); }
.yt-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; align-items: center; }
.video-grid { display: grid; grid-template-columns: 1fr; max-width: 820px; margin: 0 auto; gap: 2rem; }
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 4px; overflow: hidden; border: 1px solid var(--border-green); }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .nav-container { flex-direction: column; gap: .8rem; }
  .nav-links { gap: .6rem; justify-content: center; font-size: .85rem; }
}
@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .server-grid, .social-grid, .store-grid, .staff-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  section { padding: 70px 0; }
  .hero::after { inset: 20px; }
}

/* ─── SELECTION ──────────────────────────────── */
::selection { background: rgba(76,175,120,0.3); color: var(--green-bright); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-mid); }
