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

:root {
  --blue: #00c8ff;
  --blue-dark: #0080cc;
  --blue-glow: rgba(0, 200, 255, 0.6);
  --red: #ff1a4a;
  --red-glow: rgba(255, 26, 74, 0.7);
  --bg: #03050d;
  --bg2: #070d1a;
  --bg3: #0b1222;
  --surface: rgba(5, 15, 35, 0.85);
  --border: rgba(0, 200, 255, 0.2);
  --text: #e0f4ff;
  --text-dim: #7aa8c0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── SCANLINES OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,200,255,0.012) 2px, rgba(0,200,255,0.012) 4px);
  pointer-events: none;
  z-index: 9999;
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(3, 5, 13, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.08);
}

.logo {
  font-family: 'Orbitron', monospace;
  font-weight: 900;
  font-size: 24px;
  text-decoration: none;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--red) 0%, #ff6b35 30%, var(--blue) 70%, #00eeff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(255,26,74,0.5)) drop-shadow(0 0 16px rgba(0,200,255,0.4));
  position: relative;
  transition: filter 0.3s;
}
.logo:hover {
  filter: drop-shadow(0 0 12px rgba(255,26,74,0.7)) drop-shadow(0 0 24px rgba(0,200,255,0.6));
}

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  border-color: var(--border);
  background: rgba(0, 200, 255, 0.06);
  box-shadow: 0 0 12px rgba(0, 200, 255, 0.15), inset 0 0 12px rgba(0, 200, 255, 0.05);
  text-shadow: 0 0 8px var(--blue-glow);
}

.nav-btn {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.2);
}
.nav-btn:hover {
  background: var(--blue);
  color: var(--bg);
  box-shadow: 0 0 25px var(--blue-glow);
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0,120,200,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255,26,74,0.1) 0%, transparent 60%),
              linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}

.hero > * { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  border: 1px solid var(--red);
  border-radius: 2px;
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 32px;
  box-shadow: 0 0 15px rgba(255, 26, 74, 0.3), inset 0 0 10px rgba(255, 26, 74, 0.06);
  background: rgba(255, 26, 74, 0.05);
}

.hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 40px var(--blue-glow), 0 0 80px rgba(0, 200, 255, 0.3);
  margin-bottom: 8px;
}

.hero h1 span {
  color: var(--blue);
  text-shadow: 0 0 30px var(--blue-glow), 0 0 60px var(--blue-glow);
}

.hero-sub {
  font-family: 'Orbitron', monospace;
  font-size: clamp(12px, 2vw, 18px);
  color: var(--blue);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.8;
}

.hero p {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.cta-group { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  position: relative;
}

.btn-primary {
  background: var(--blue);
  color: var(--bg);
  box-shadow: 0 0 20px var(--blue-glow), 0 0 40px rgba(0, 200, 255, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 0 35px var(--blue-glow), 0 0 70px rgba(0, 200, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
  box-shadow: 0 0 10px rgba(0, 200, 255, 0.15);
}
.btn-outline:hover {
  background: rgba(0, 200, 255, 0.08);
  box-shadow: 0 0 20px var(--blue-glow);
  transform: translateY(-2px);
}

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-red:hover {
  box-shadow: 0 0 40px var(--red-glow);
  transform: translateY(-2px);
}

/* ─── SECTION ─── */
.section { padding: 100px 24px; position: relative; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 6px var(--red-glow);
}

.section-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0, 200, 255, 0.2);
}

.section-desc {
  color: var(--text-dim);
  font-size: 16px;
  max-width: 560px;
  margin-bottom: 60px;
}

/* ─── CARD ─── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.6;
}

.card:hover {
  border-color: rgba(0, 200, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 200, 255, 0.12), 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}

/* RED GLOW CARD variant */
.card-red {
  border-color: rgba(255, 26, 74, 0.3);
  box-shadow: 0 0 20px rgba(255, 26, 74, 0.08), -4px 0 0 var(--red);
}
.card-red::before {
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.card-red:hover {
  border-color: rgba(255, 26, 74, 0.6);
  box-shadow: 0 0 30px rgba(255, 26, 74, 0.2);
}

/* ─── GRID ─── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }

/* ─── BADGE / CHIP ─── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.chip-blue {
  color: var(--blue);
  border: 1px solid var(--blue);
  background: rgba(0,200,255,0.08);
  box-shadow: 0 0 8px rgba(0,200,255,0.2);
}
.chip-red {
  color: var(--red);
  border: 1px solid var(--red);
  background: rgba(255,26,74,0.08);
  box-shadow: 0 0 8px rgba(255,26,74,0.2);
}

/* ─── STAT ─── */
.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 48px;
  font-weight: 900;
  color: var(--blue);
  text-shadow: 0 0 20px var(--blue-glow);
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-dim); letter-spacing: 2px; text-transform: uppercase; margin-top: 8px; }

/* ─── DIVIDER ─── */
.neon-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 30%, var(--blue) 70%, transparent);
  box-shadow: 0 0 10px var(--red-glow), 0 0 20px var(--blue-glow);
  margin: 0;
}

/* ─── FORM ─── */
textarea, input[type=text], input[type=email] {
  width: 100%;
  background: rgba(0, 200, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s;
}
textarea:focus, input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0,200,255,0.15), 0 0 20px rgba(0,200,255,0.1);
}
textarea { min-height: 120px; resize: vertical; }

/* ─── STAR RATING ─── */
.stars { display: flex; gap: 8px; font-size: 28px; color: #1a2535; }
.stars span { cursor: pointer; transition: color 0.2s, text-shadow 0.2s; }
.stars span:hover, .stars .lit { color: #ffd700; text-shadow: 0 0 12px rgba(255,215,0,0.6); }

/* ─── FOOTER ─── */
footer.main-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 48px 32px;
  position: relative;
}
footer.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red) 20%, var(--blue) 80%, transparent);
  box-shadow: 0 0 20px var(--red-glow);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }

.footer-brand .logo { font-size: 28px; display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: #3d5a6e; font-size: 14px; line-height: 1.8; }

.footer-col h5 {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow: 0 0 8px var(--blue-glow);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { color: #3d5a6e; text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(0,200,255,0.08);
  padding-top: 24px;
  text-align: center;
  color: #1e3045;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ─── DOC PAGES ─── */
.doc-hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.doc-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,200,255,0.1) 0%, transparent 70%);
}
.doc-hero > * { position: relative; z-index: 1; }
.doc-hero h1 {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 30px var(--blue-glow);
  margin-bottom: 16px;
}
.doc-hero p { color: var(--text-dim); max-width: 600px; margin: 0 auto; }

.doc-container {
  max-width: 860px;
  margin: -40px auto 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 56px 64px;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(16px);
}
.doc-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  box-shadow: 0 0 20px var(--red-glow);
}

.doc-section { margin-bottom: 56px; }
.doc-section:last-child { margin-bottom: 0; }

.doc-section-title {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,26,74,0.2);
  box-shadow: 0 1px 0 rgba(255,26,74,0.05);
  text-shadow: 0 0 8px var(--red-glow);
}
.doc-section-title::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red-glow);
  flex-shrink: 0;
}

.doc-section h3 { color: #fff; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.doc-section p { color: var(--text-dim); margin-bottom: 16px; text-align: justify; font-size: 15px; }
.doc-section ul { color: var(--text-dim); margin-left: 20px; margin-bottom: 16px; font-size: 15px; }
.doc-section li { margin-bottom: 10px; line-height: 1.7; }
.doc-section strong { color: var(--text); }

.highlight-box {
  background: rgba(0,200,255,0.04);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0;
  box-shadow: -3px 0 15px rgba(0,200,255,0.15);
}
.highlight-box h4 { color: var(--blue); font-size: 14px; margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.highlight-box p { color: var(--text-dim); margin: 0; font-size: 14px; text-align: left; }

.highlight-box-red {
  background: rgba(255,26,74,0.04);
  border-left: 3px solid var(--red);
  box-shadow: -3px 0 15px rgba(255,26,74,0.15);
}
.highlight-box-red h4 { color: var(--red); }

/* ─── ANNOUNCEMENT ─── */
.announcement-card {
  background: rgba(0,200,255,0.03);
  border: 1px solid rgba(0,200,255,0.12);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  padding: 24px 28px;
  margin-bottom: 16px;
  transition: all 0.3s;
  box-shadow: -3px 0 20px rgba(0,200,255,0.1);
}
.announcement-card:hover { border-color: rgba(0,200,255,0.4); background: rgba(0,200,255,0.06); }
.announcement-date { font-size: 11px; color: var(--blue); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.announcement-card h4 { color: #fff; font-size: 17px; margin-bottom: 6px; }
.announcement-card p { color: var(--text-dim); font-size: 14px; margin: 0; }

/* ─── MOBILE ─── */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--blue); box-shadow: 0 0 6px var(--blue-glow); transition: all 0.3s; }

@media (max-width: 900px) {
  header { padding: 14px 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(3,5,13,0.98); padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .doc-container { margin: -20px 16px 60px; padding: 32px 24px; }
  .cta-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; justify-content: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  footer.main-footer { padding: 60px 24px 24px; }
  .doc-hero { padding: 60px 20px 40px; }
}
