/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
picture { display: contents; }
:root {
  --hud-amber:   #f5a623;
  --hud-red:     #e8132c;
  --hud-green:   #39ff8e;
  --hud-blue:    #00cfff;
  --dark-void:   #04060a;
  --panel-dark:  #080d14;
  --panel-mid:   #0d1a26;
  --glass:       rgba(0,207,255,0.06);
  --glass-border:rgba(0,207,255,0.2);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans TC', sans-serif;
  background: var(--dark-void);
  color: #c8d8e8;
  overflow-x: hidden;
}
::selection { background: var(--hud-blue); color: #000; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* ─── SCANLINES ─── */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
  animation: scanFlicker 8s infinite;
}
@keyframes scanFlicker {
  0%,100% { opacity: 1; }
  95% { opacity: 1; }
  96% { opacity: 0.85; }
  97% { opacity: 1; }
}

/* ─── CANVAS PARTICLES ─── */
#canvas-bg {
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw;
  height: 64px;
  background: linear-gradient(180deg, rgba(4,6,10,0.95) 0%, transparent 100%);
  border-bottom: 1px solid rgba(0,207,255,0.08);
  backdrop-filter: blur(6px);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-emblem {
  width: 38px; height: 38px;
  border: 1.5px solid var(--hud-amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 13px; font-weight: 900;
  color: var(--hud-amber);
  letter-spacing: 1px;
  box-shadow: 0 0 12px rgba(245,166,35,0.35);
  animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 12px rgba(245,166,35,0.35); }
  50%      { box-shadow: 0 0 24px rgba(245,166,35,0.65), 0 0 48px rgba(245,166,35,0.2); }
}
.nav-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 15px; font-weight: 700;
  color: #e0eaf5;
  letter-spacing: 3px;
}
nav ul {
  list-style: none;
  display: flex; gap: 32px;
}
nav ul li a {
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px;
  color: rgba(200,216,232,0.7);
  text-transform: uppercase;
  transition: color 0.25s, text-shadow 0.25s;
  position: relative;
}
nav ul li a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--hud-blue);
  transform: scaleX(0);
  transition: transform 0.25s;
}
nav ul li a:hover { color: var(--hud-blue); text-shadow: 0 0 12px var(--hud-blue); }
nav ul li a:hover::after { transform: scaleX(1); }
.nav-join {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px;
  color: var(--dark-void) !important;
  text-transform: uppercase;
  background: var(--hud-amber);
  padding: 7px 20px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background 0.25s, box-shadow 0.25s !important;
}
.nav-join:hover {
  background: #ffc044 !important;
  box-shadow: 0 0 24px rgba(245,166,35,0.6) !important;
  color: var(--dark-void) !important;
}
.nav-join::after { display: none !important; }

/* ─── HERO SECTION ─── */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(4,6,10,0.55) 0%, rgba(4,6,10,0.15) 40%, rgba(4,6,10,0.8) 100%),
    url('img/Digital_Combat_Simulator_Black_Shark_Screenshot_2026.03.17_-_22.31.19.87.webp') center/cover no-repeat;
  animation: slowZoom 25s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,207,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,207,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 30%, transparent 80%);
}
/* HUD corner brackets */
.hud-corner {
  position: absolute;
  width: 60px; height: 60px;
  border-color: rgba(0,207,255,0.5);
  border-style: solid;
}
.hud-corner.tl { top: 90px;  left: 3vw;  border-width: 2px 0 0 2px; }
.hud-corner.tr { top: 90px;  right: 3vw; border-width: 2px 2px 0 0; }
.hud-corner.bl { bottom: 3vh; left: 3vw;  border-width: 0 0 2px 2px; }
.hud-corner.br { bottom: 3vh; right: 3vw; border-width: 0 2px 2px 0; }

/* HUD scanning line */
.hud-scan {
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hud-blue), transparent);
  opacity: 0.4;
  animation: hudScan 6s linear infinite;
  top: 90px;
}
@keyframes hudScan {
  0%   { top: 64px;  opacity: 0.4; }
  50%  { opacity: 0.6; }
  100% { top: 100vh; opacity: 0; }
}

.hero-content { position: relative; z-index: 10; padding: 0 20px; }

.hero-classification {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 6px;
  color: var(--hud-red);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  opacity: 0; animation: fadeInUp 0.8s 0.3s forwards;
}
.hero-classification span { display: inline-block; width: 30px; height: 1px; background: var(--hud-red); }

.hero-logo-img {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 2px solid rgba(245,166,35,0.6);
  box-shadow: 0 0 40px rgba(245,166,35,0.3), inset 0 0 20px rgba(245,166,35,0.08);
  object-fit: cover;
  margin-bottom: 24px;
  opacity: 0; animation: fadeInDown 0.8s 0.2s forwards;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(52px, 9vw, 120px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #ffffff 0%, #a8c8e8 50%, var(--hud-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px rgba(0,207,255,0.4));
  opacity: 0; animation: fadeInUp 0.9s 0.5s forwards;
}
.hero-subtitle-line {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: 8px;
  color: var(--hud-amber);
  margin-top: 8px;
  opacity: 0; animation: fadeInUp 0.8s 0.7s forwards;
}
.hero-tagline {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 3px;
  color: rgba(180,210,240,0.75);
  margin-top: 20px;
  max-width: 600px;
  opacity: 0; animation: fadeInUp 0.8s 0.9s forwards;
}
.hero-cta-group {
  display: flex; gap: 20px; justify-content: center;
  margin-top: 40px;
  opacity: 0; animation: fadeInUp 0.8s 1.1s forwards;
}
.btn-primary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 4px;
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  background: var(--hud-amber);
  padding: 14px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 0 30px rgba(245,166,35,0.3);
}
.btn-primary:hover {
  background: #ffc044;
  box-shadow: 0 0 50px rgba(245,166,35,0.7), 0 0 100px rgba(245,166,35,0.3);
  transform: translateY(-2px);
}
.btn-secondary {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 4px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--hud-blue);
  border: 1px solid rgba(0,207,255,0.5);
  padding: 13px 36px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.3s;
  display: inline-block;
  background: rgba(0,207,255,0.05);
}
.btn-secondary:hover {
  background: rgba(0,207,255,0.12);
  border-color: var(--hud-blue);
  box-shadow: 0 0 30px rgba(0,207,255,0.3);
  transform: translateY(-2px);
}

/* scroll indicator */
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeIn 1s 2s forwards;
}
.hero-scroll span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 4px;
  color: rgba(200,216,232,0.4);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--hud-blue), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── STATS BAR ─── */
#stats-bar {
  position: relative; z-index: 10;
  background: linear-gradient(90deg, var(--panel-dark), var(--panel-mid), var(--panel-dark));
  border-top: 1px solid rgba(0,207,255,0.15);
  border-bottom: 1px solid rgba(0,207,255,0.15);
  padding: 20px 0;
  overflow: hidden;
}
#stats-bar::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,207,255,0.03), transparent);
  animation: slideShine 4s linear infinite;
}
@keyframes slideShine {
  to { left: 150%; }
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-around; align-items: center;
  padding: 0 4vw;
  flex-wrap: wrap; gap: 20px;
}
.stat-item {
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.stat-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 32px; font-weight: 900;
  color: var(--hud-amber);
  line-height: 1;
  text-shadow: 0 0 20px rgba(245,166,35,0.5);
}
.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px;
  color: rgba(200,216,232,0.5);
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(0,207,255,0.3), transparent);
}

/* ─── SECTION BASE ─── */
section { position: relative; z-index: 10; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--hud-blue);
  margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.section-eyebrow::before,.section-eyebrow::after {
  content: '';
  display: inline-block; width: 40px; height: 1px;
  background: linear-gradient(to right, transparent, var(--hud-blue));
}
.section-eyebrow::after { background: linear-gradient(to left, transparent, var(--hud-blue)); }
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #e8f0f8;
  letter-spacing: 2px;
}
.section-title em {
  font-style: normal;
  color: var(--hud-amber);
}

/* ─── ABOUT ─── */
#about {
  padding: 100px 4vw;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,207,255,0.04) 0%, transparent 60%),
    var(--dark-void);
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid rgba(0,207,255,0.2);
  box-shadow: 0 0 60px rgba(0,207,255,0.08), 0 20px 60px rgba(0,0,0,0.6);
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 55%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid rgba(245,166,35,0.3);
  box-shadow: 0 0 40px rgba(245,166,35,0.1), 0 10px 40px rgba(0,0,0,0.6);
}
.about-hud-frame {
  position: absolute; top: -12px; left: -12px; right: -12px; bottom: -12px;
  border: 1px solid rgba(0,207,255,0.1);
  pointer-events: none;
}
.about-hud-frame::before,.about-hud-frame::after {
  content: ''; position: absolute;
  width: 20px; height: 20px;
  border-color: var(--hud-blue);
  border-style: solid;
  opacity: 0.6;
}
.about-hud-frame::before { top: 0; left: 0; border-width: 2px 0 0 2px; }
.about-hud-frame::after  { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.about-text h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 700;
  color: #e8f0f8;
  margin-bottom: 20px;
  line-height: 1.3;
}
.about-text h2 span { color: var(--hud-amber); }
.about-lead {
  font-size: 17px; line-height: 1.8;
  color: rgba(180,210,240,0.8);
  margin-bottom: 28px;
  border-left: 3px solid var(--hud-blue);
  padding-left: 20px;
}
.about-body {
  font-size: 15px; line-height: 1.9;
  color: rgba(160,190,220,0.7);
  margin-bottom: 32px;
}
.about-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.about-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid rgba(0,207,255,0.25);
  color: var(--hud-blue);
  background: rgba(0,207,255,0.05);
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

/* ─── GALLERY ─── */
#gallery {
  padding: 100px 4vw;
  background: var(--panel-dark);
}
.gallery-inner { max-width: 1300px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  background: #0a1520;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: 1 / 6; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 6 / 9; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 9 / 13; grid-row: 1; }
.gallery-item:nth-child(4) { grid-column: 1 / 5; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 5 / 9; grid-row: 2; }
.gallery-item:nth-child(6) { grid-column: 9 / 13; grid-row: 2; }
.gallery-item img {
  width: 100%; height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item-label {
  position: absolute; bottom: 12px; left: 14px;
  z-index: 2;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.0);
  transition: color 0.4s;
}
.gallery-item:hover .gallery-item-label { color: rgba(255,255,255,0.8); }

.gallery-item:nth-child(1) { aspect-ratio: 16/9; }

/* ─── PHILOSOPHY / DOCTRINE ─── */
#doctrine {
  padding: 100px 4vw;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(245,166,35,0.04) 0%, transparent 60%),
    var(--dark-void);
}
.doctrine-inner {
  max-width: 1200px; margin: 0 auto;
}
.doctrine-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.doctrine-card {
  position: relative;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 40px 32px;
  transition: all 0.4s;
  overflow: hidden;
}
.doctrine-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--hud-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.doctrine-card:hover { background: rgba(0,207,255,0.08); border-color: rgba(0,207,255,0.4); transform: translateY(-4px); }
.doctrine-card:hover::before { opacity: 1; }
.doctrine-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 0 8px rgba(0,207,255,0.4));
}
.doctrine-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Orbitron', sans-serif;
  font-size: 48px; font-weight: 900;
  color: rgba(0,207,255,0.06);
  line-height: 1;
}
.doctrine-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--hud-amber);
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.doctrine-card p {
  font-size: 14px; line-height: 1.85;
  color: rgba(160,190,220,0.75);
}

/* ─── MODULES SHOWCASE ─── */
#modules {
  padding: 100px 4vw;
  background: var(--panel-dark);
  position: relative;
  overflow: hidden;
}
#modules::before {
  content: '';
  position: absolute; top: -50%; left: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(0,207,255,0.03) 0%, transparent 70%);
}
.modules-inner { max-width: 1200px; margin: 0 auto; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 60px;
}
.module-card {
  position: relative;
  border: 1px solid rgba(0,207,255,0.15);
  background: rgba(13,26,38,0.8);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s;
  cursor: default;
}
.module-card:hover {
  border-color: var(--hud-amber);
  background: rgba(13,26,38,0.95);
  box-shadow: 0 0 30px rgba(245,166,35,0.1);
  transform: translateY(-3px);
}
.module-card .aircraft-icon {
  font-size: 42px;
  display: block;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(245,166,35,0.3));
}
.module-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #d0e4f0;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.module-card p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px;
  color: rgba(200,216,232,0.45);
  text-transform: uppercase;
}
.module-badge {
  position: absolute; top: 10px; right: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--hud-green);
  color: #000;
}

/* ─── RECRUITMENT / JOIN ─── */
#join {
  padding: 120px 4vw;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(to bottom, var(--dark-void), var(--panel-mid), var(--dark-void));
}
.join-bg {
  position: absolute; inset: 0;
  background:
    url('img/Digital_Combat_Simulator_Black_Shark_Screenshot_2026.03.30_-_20.36.22.94.png') center/cover no-repeat;
  opacity: 0.12;
}
.join-inner {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.join-inner .section-eyebrow { color: var(--hud-red); }
.join-inner .section-eyebrow::before { background: linear-gradient(to right, transparent, var(--hud-red)); }
.join-inner .section-eyebrow::after  { background: linear-gradient(to left, transparent, var(--hud-red)); }
.join-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #e8f0f8;
  margin-bottom: 10px;
  line-height: 1.1;
}
.join-title span {
  color: var(--hud-red);
  text-shadow: 0 0 30px rgba(232,19,44,0.6);
}
.join-sub {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  letter-spacing: 4px;
  color: rgba(200,216,232,0.6);
  margin-bottom: 30px;
}
.join-body {
  font-size: 16px; line-height: 1.9;
  color: rgba(180,210,240,0.75);
  margin-bottom: 50px;
  max-width: 600px; margin-left: auto; margin-right: auto;
}
.join-requirements {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-bottom: 50px;
}
.req-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,216,232,0.8);
}
.req-item .check { color: var(--hud-green); font-size: 16px; }
.join-cta {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
}
.btn-danger {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 5px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  background: var(--hud-red);
  padding: 18px 48px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  display: inline-block;
  box-shadow: 0 0 40px rgba(232,19,44,0.4);
  transition: all 0.3s;
}
.btn-danger:hover {
  background: #ff2d45;
  box-shadow: 0 0 60px rgba(232,19,44,0.7), 0 0 120px rgba(232,19,44,0.3);
  transform: translateY(-3px);
}

/* ─── PARALLAX FEATURE IMAGE ─── */
#feature-break {
  height: 50vh; min-height: 320px;
  position: relative; overflow: hidden;
  z-index: 10;
}
.feature-bg {
  position: absolute; inset: -20%;
  background: url('img/DCS_2025-04-13_00-10-09_00-10-09_294_.webp') center/cover no-repeat;
  will-change: transform;
}
.feature-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(4,6,10,0.9) 0%,
    rgba(4,6,10,0.4) 50%,
    rgba(4,6,10,0.8) 100%);
  display: flex; align-items: center; padding-left: 8vw;
}
.feature-quote {
  max-width: 500px;
}
.feature-quote blockquote {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: #e8f0f8;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.feature-quote blockquote em {
  font-style: normal;
  color: var(--hud-amber);
}
.feature-quote cite {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(200,216,232,0.4);
}

/* ─── FOOTER ─── */
footer {
  position: relative; z-index: 10;
  background: var(--panel-dark);
  border-top: 1px solid rgba(0,207,255,0.1);
  padding: 60px 4vw 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 48px; flex-wrap: wrap; gap: 40px;
}
.footer-brand .nav-emblem { width: 52px; height: 52px; font-size: 18px; margin-bottom: 14px; }
.footer-brand h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 20px; font-weight: 900;
  color: #e8f0f8; letter-spacing: 4px;
}
.footer-brand p {
  font-size: 13px; color: rgba(160,190,220,0.65);
  margin-top: 8px; max-width: 260px; line-height: 1.7;
}
.footer-links h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--hud-blue); margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
  text-decoration: none;
  font-size: 14px; color: rgba(160,190,220,0.72);
  transition: color 0.25s;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500; letter-spacing: 1px;
}
.footer-links ul li a:hover { color: var(--hud-blue); }
.footer-bottom {
  border-top: 1px solid rgba(0,207,255,0.08);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: 2px; color: rgba(160,190,220,0.65);
  text-transform: uppercase;
}
.footer-bottom p span { color: var(--hud-amber); }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav ul { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-accent { display: none; }
  .doctrine-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { grid-column: auto !important; grid-row: auto !important; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; align-items: center; }
}

/* ─── COUNTER ANIMATION ─── */
.counting { display: inline-block; }

/* ─── LIGHTBOX ─── */
#lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
#lightbox.open { opacity: 1; pointer-events: all; }
#lightbox img {
  max-width: 90vw; max-height: 85vh;
  border: 1px solid rgba(0,207,255,0.3);
  box-shadow: 0 0 80px rgba(0,207,255,0.15);
}
#lightbox .lb-close {
  position: absolute; top: 24px; right: 32px;
  font-family: 'Orbitron', sans-serif;
  font-size: 24px; color: rgba(200,216,232,0.6);
  cursor: pointer; transition: color 0.2s;
}
#lightbox .lb-close:hover { color: var(--hud-red); }
