@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@400;500;600;700&family=Inter:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --bg-grad:   linear-gradient(155deg, #000000 0%, #040f07 35%, #071c0e 65%, #0a2817 100%);
  --card-bg:   rgba(0, 16, 7, 0.70);
  --card-bd:   rgba(0, 255, 136, 0.22);
  --neon:      #00ff88;
  --teal:      #00e5cc;
  --neon-dark: #00aa5c;
  --txt:       #ffffff;
  --txt-muted: rgba(255, 255, 255, 0.68);
  --glow-lg:   0 0 32px rgba(0, 255, 136, 0.45), 0 0 64px rgba(0, 255, 136, 0.2);
  --glow-sm:   0 0 14px rgba(0, 255, 136, 0.38);
  --glow-txt:  0 0 22px rgba(0, 255, 136, 0.55), 0 0 44px rgba(0, 255, 136, 0.22);
  --radius:    10px;
  --gap:       24px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }

/* ── BODY & DRAGON-SCALE TEXTURE ───────────────────────────── */
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-grad);
  background-attachment: fixed;
  color: var(--txt);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Dragon scale SVG tile at very low opacity */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='56'%3E%3Cellipse cx='40' cy='56' rx='42' ry='32' fill='none' stroke='%2300ff88' stroke-width='0.7'/%3E%3Cellipse cx='0' cy='28' rx='42' ry='32' fill='none' stroke='%2300ff88' stroke-width='0.7'/%3E%3Cellipse cx='80' cy='28' rx='42' ry='32' fill='none' stroke='%2300ff88' stroke-width='0.7'/%3E%3Cellipse cx='40' cy='0' rx='42' ry='32' fill='none' stroke='%2300ff88' stroke-width='0.7'/%3E%3C/svg%3E");
  background-size: 80px 56px;
  opacity: 0.048;
  pointer-events: none;
  z-index: 0;
}

/* Subtle radial glow at top */
body::after {
  content: '';
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

/* ── HEADER ─────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(1, 8, 4, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--card-bd);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px var(--gap);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { flex-shrink: 0; line-height: 0; }
.logo img { height: 52px; width: auto; }

.header-cta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  transition: box-shadow .28s ease, transform .2s ease, opacity .2s;
}

.btn-primary {
  background: linear-gradient(135deg, #04180a 0%, var(--neon-dark) 55%, var(--neon) 100%);
  color: #001a08;
  font-weight: 900;
  padding: 13px 28px;
  font-size: 14px;
  border-radius: 3px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  box-shadow: var(--glow-sm);
}
.btn-primary:hover {
  box-shadow: var(--glow-lg);
  transform: translateY(-2px);
  color: #001a08;
}

.btn-outline {
  background: transparent;
  color: var(--neon);
  padding: 11px 26px;
  font-size: 14px;
  border: 1px solid var(--card-bd);
  border-radius: 3px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-outline:hover {
  border-color: var(--neon);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 42px;
  font-size: 16px;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  z-index: 1;
  padding: 72px 0 56px;
  text-align: center;
}

.hero-heading {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 4.2vw, 54px);
  line-height: 1.15;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #ffffff 0%, var(--teal) 45%, var(--neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 24px rgba(0,255,136,0.38));
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-banner-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.hero-banner {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--card-bd);
  box-shadow: 0 0 64px rgba(0,255,136,0.18), 0 24px 72px rgba(0,0,0,0.65);
  object-fit: cover;
  max-height: 500px;
  display: block;
}

.hero-banner + .hero-banner {
  margin-top: 20px;
}

/* ── PAGE TITLE HERO (sub-pages) ────────────────────────────── */
.page-hero {
  position: relative;
  z-index: 1;
  padding: 60px 0 0;
  text-align: center;
}

.page-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3.5vw, 44px);
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(0,255,136,0.32));
  margin-bottom: 8px;
}

/* ── CONTENT SECTIONS ───────────────────────────────────────── */
.content-section {
  position: relative;
  z-index: 1;
  padding: 56px 0 80px;
}

.content-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 52px 60px;
  box-shadow: 0 8px 64px rgba(0,0,0,0.52), inset 0 1px 0 rgba(0,255,136,0.09);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h2 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 2.4vw, 26px);
  color: var(--neon);
  text-shadow: var(--glow-txt);
  margin: 52px 0 18px;
  padding-left: 18px;
  border-left: 3px solid var(--neon);
  line-height: 1.35;
}

h2:first-child { margin-top: 0; }

h3 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 21px);
  color: var(--teal);
  margin: 36px 0 14px;
  letter-spacing: 0.4px;
}

p {
  color: var(--txt-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  font-size: 15.5px;
}

p:last-child { margin-bottom: 0; }

/* ── LISTS ──────────────────────────────────────────────────── */
ol, ul { list-style: none; margin: 10px 0 26px; padding: 0; }
ol { counter-reset: item; }

ol > li {
  counter-increment: item;
  position: relative;
  padding: 9px 0 9px 46px;
  color: var(--txt-muted);
  line-height: 1.78;
  font-size: 15.5px;
}

ol > li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 9px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #04180a, var(--neon-dark));
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(0,255,136,0.3);
}

ul > li {
  position: relative;
  padding: 7px 0 7px 24px;
  color: var(--txt-muted);
  line-height: 1.78;
  font-size: 15.5px;
}

ul > li::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--neon);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon);
}

/* ── TABLES ─────────────────────────────────────────────────── */
.table-scroll {
  overflow-x: auto;
  margin: 26px 0;
  border-radius: var(--radius);
  border: 1px solid var(--card-bd);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  min-width: 480px;
}

thead th {
  background: rgba(0, 255, 136, 0.09);
  color: var(--neon);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--card-bd);
  white-space: nowrap;
}

tbody td {
  padding: 12px 18px;
  color: var(--txt-muted);
  border-bottom: 1px solid rgba(0, 255, 136, 0.07);
  vertical-align: top;
  line-height: 1.65;
}

tbody tr:last-child td { border-bottom: none; }

tbody tr:hover td {
  background: rgba(0, 255, 136, 0.04);
  color: var(--txt);
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { margin: 10px 0 0; }

.faq-item {
  border: 1px solid var(--card-bd);
  border-radius: 8px;
  margin-bottom: 10px;
  background: rgba(0, 8, 3, 0.55);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color .28s;
}

.faq-item:hover { border-color: rgba(0,255,136,0.42); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  color: var(--neon);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  line-height: 1.45;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--card-bd);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--teal);
  transition: transform .35s, border-color .28s;
  line-height: 1;
  padding-bottom: 1px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--neon); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .44s cubic-bezier(0.4,0,0.2,1);
}

.faq-item.open .faq-body { max-height: 600px; }

.faq-body p { padding: 0 22px 18px; margin: 0; }

/* ── MID-PAGE BANNER ────────────────────────────────────────── */
.mid-banner {
  position: relative;
  z-index: 1;
  padding: 0 0 56px;
}

/* ── DIVIDER ────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--card-bd) 50%, transparent 100%);
  margin: 44px 0;
}

/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 1;
  background: rgba(0, 5, 2, 0.92);
  border-top: 1px solid var(--card-bd);
  padding: 48px 0 32px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-bottom: 32px;
}

.footer-nav a {
  color: var(--txt-muted);
  font-size: 14px;
  transition: color .25s;
}

.footer-nav a:hover { color: var(--neon); }

.footer-disclaimer {
  font-size: 11.5px;
  color: rgba(255,255,255,0.28);
  line-height: 1.8;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .content-wrap { padding: 40px 32px; }
}

@media (max-width: 640px) {
  .content-wrap { padding: 28px 20px; }
  .hero { padding: 48px 0 36px; }
  .hero-cta { gap: 12px; }
  .header-cta .btn-outline { display: none; }
  h2 { font-size: 17px; padding-left: 13px; border-left-width: 2px; margin-top: 40px; }
  h3 { font-size: 16px; }
  p, ol > li, ul > li { font-size: 15px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}
