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

/* ===== CSS VARIABLES ===== */
:root {
  --red: #E53935;
  --red-dark: #b71c1c;
  --red-glow: rgba(229, 57, 53, 0.35);
  --red-soft: rgba(229, 57, 53, 0.12);
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --bg4: #222222;
  --surface: #161616;
  --border: rgba(229, 57, 53, 0.2);
  --text: #f0f0f0;
  --text-muted: #888;
  --text-dim: #555;
  --nav-h: 68px;
  --radius: 10px;
  --transition: 0.25s ease;
}

[data-theme="light"] {
  --bg: #f4f4f4;
  --bg2: #ebebeb;
  --bg3: #e0e0e0;
  --bg4: #d5d5d5;
  --surface: #ffffff;
  --border: rgba(229, 57, 53, 0.3);
  --text: #111111;
  --text-muted: #555;
  --text-dim: #999;
}

/* ===== GLOBAL VIDEO BACKGROUND ===== */


/* ===== GLOBAL VIDEO BACKGROUND ===== */
.site-video-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.45;
  pointer-events: none;
}
.site-video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.6);
  z-index: -1;
  pointer-events: none;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

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

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  gap: 1rem;
  transition: background var(--transition);
}
[data-theme="light"] nav { background: rgba(244,244,244,0.92); }

.nav-logo {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red);
  text-shadow: 0 0 20px var(--red-glow);
  letter-spacing: 1px;
  white-space: nowrap;
  margin-right: auto;
}
.nav-logo span { color: var(--text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); background: var(--red-soft); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; margin-left: 0.5rem; }

.theme-btn {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.theme-btn:hover { border-color: var(--red); color: var(--red); }

.btn-join-nav {
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: all var(--transition);
  box-shadow: 0 0 15px var(--red-glow);
}
.btn-join-nav:hover { background: transparent; border-color: var(--red); color: var(--red); box-shadow: 0 0 25px var(--red-glow); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.3rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--red); background: var(--red-soft); }
.mobile-menu .btn-join-nav { text-align: center; margin-top: 0.5rem; }

/* ===== MAIN CONTENT ===== */
main { padding-top: var(--nav-h); position: relative; z-index: 1; }

/* ===== SECTION STYLES ===== */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-sm { padding: 3rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title span { color: var(--red); }
.section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}
.divider {
  width: 60px; height: 3px;
  background: var(--red);
  margin: 0.75rem auto 1.5rem;
  box-shadow: 0 0 10px var(--red-glow);
  border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 0 20px var(--red-glow);
}
.btn-primary:hover { background: transparent; border-color: var(--red); color: var(--red); box-shadow: 0 0 30px var(--red-glow); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--red); color: var(--red); background: var(--red-soft); transform: translateY(-2px); }

/* ===== CARDS ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}
.card:hover { border-color: var(--red); box-shadow: 0 0 30px var(--red-glow); transform: translateY(-4px); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--red);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 0 30px var(--red-glow);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
}
.badge-red { background: var(--red); color: #fff; box-shadow: 0 0 10px var(--red-glow); }
.badge-green { background: #1b5e20; color: #69f0ae; border: 1px solid #69f0ae44; }
.badge-yellow { background: #33290a; color: #ffd740; border: 1px solid #ffd74044; }
.badge-grey { background: var(--bg4); color: var(--text-muted); border: 1px solid var(--border); }
.badge-blue { background: #0d2137; color: #40c4ff; border: 1px solid #40c4ff44; }
.badge-orange { background: #2a1a00; color: #ffab40; border: 1px solid #ffab4044; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red-soft);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
}
.hero h1 { text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; }
.hero h1 span { color: var(--red); text-shadow: 0 0 30px var(--red-glow); }
.hero-tagline { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-version {
  display: inline-block;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
}
.hero-version span { color: var(--red); }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-ip {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  letter-spacing: 1px;
}
.hero-ip .ip-label { color: var(--text-muted); font-size: 0.8rem; text-transform: uppercase; }
.hero-ip .ip-addr { color: var(--text); font-weight: 700; }
.hero-ip .ip-copy {
  background: var(--red-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}
.hero-ip .ip-copy:hover { background: var(--red); color: #fff; }

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.feature-card { text-align: center; }
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  filter: drop-shadow(0 0 8px var(--red-glow));
}
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== HOW TO JOIN ===== */
.join-tabs { display: flex; gap: 0.5rem; margin-bottom: 2rem; justify-content: center; }
.join-tab {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  transition: all var(--transition);
}
.join-tab.active, .join-tab:hover { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 0 15px var(--red-glow); }
.join-panel { display: none; }
.join-panel.active { display: block; }
.steps { display: flex; flex-direction: column; gap: 1rem; max-width: 650px; margin: 0 auto; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition);
}
.step:hover { border-color: var(--red); }
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 0 12px var(--red-glow);
}
.step-content h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.step-content p { color: var(--text-muted); font-size: 0.9rem; }
.step-content code {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  font-size: 0.85rem;
  color: var(--red);
  font-family: monospace;
}

/* ===== FAQ ===== */
.faq-list { max-width: 750px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--red); }
.faq-q {
  width: 100%;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  text-align: left;
  gap: 1rem;
}
.faq-q .faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--bg3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.faq-item.open .faq-icon { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.25rem; }

/* ===== STORE ===== */
.ranks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.rank-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.rank-card:hover { border-color: var(--red); box-shadow: 0 0 30px var(--red-glow); transform: translateY(-5px); }
.rank-card.featured { border-color: var(--red); box-shadow: 0 0 25px var(--red-glow); }
.rank-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
  box-shadow: 0 0 15px var(--red-glow);
}
.rank-popular {
  position: absolute;
  top: 1rem; right: 1rem;
}
.rank-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.rank-name { font-family: 'Rajdhani', sans-serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 0.25rem; text-transform: uppercase; }
.rank-price { font-size: 2rem; font-weight: 800; color: var(--red); font-family: 'Rajdhani', sans-serif; margin-bottom: 1.25rem; }
.rank-price span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.rank-perks { flex: 1; list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.rank-perks li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.rank-perks li::before { content: '✦'; color: var(--red); flex-shrink: 0; font-size: 0.7rem; margin-top: 2px; }
.rank-btn { width: 100%; text-align: center; }

.bundles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2.5rem; }
.bundle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.bundle-card:hover { border-color: var(--red); box-shadow: 0 0 30px var(--red-glow); transform: translateY(-4px); }
.bundle-tag { font-family: 'Rajdhani', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--red); margin-bottom: 0.5rem; }
.bundle-name { font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem; }
.bundle-price-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.bundle-price-new { font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 800; color: var(--red); }
.bundle-price-old { font-size: 1.1rem; color: var(--text-dim); text-decoration: line-through; }
.bundle-save { background: #1b3a1b; color: #69f0ae; border-radius: 50px; padding: 0.2rem 0.6rem; font-size: 0.75rem; font-family: 'Rajdhani', sans-serif; font-weight: 700; }

.disclaimer-box {
  background: rgba(229,57,53,0.06);
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.disclaimer-box .dis-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ===== RULES ===== */
.warning-box {
  background: rgba(229,57,53,0.1);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 0 20px var(--red-glow);
}
.rules-categories { display: flex; flex-direction: column; gap: 2.5rem; }
.rules-cat-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.rules-list { display: flex; flex-direction: column; gap: 0.75rem; }
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.rule-item:hover { border-color: var(--red); }
.rule-num {
  flex-shrink: 0;
  background: var(--red-soft);
  color: var(--red);
  border: 1px solid var(--border);
  border-radius: 6px;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
}
.rule-text { font-size: 0.95rem; color: var(--text); line-height: 1.5; }

/* ===== ROADMAP ===== */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 2.5rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--red), var(--red), transparent);
  box-shadow: 0 0 10px var(--red-glow);
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 0.35rem;
  width: 14px; height: 14px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--red-glow);
  border: 2px solid var(--bg);
}
.timeline-date { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.timeline-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition);
}
.timeline-card:hover { border-color: var(--red); }
.timeline-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.timeline-title { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.timeline-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

/* ===== SUPPORT ===== */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--red); box-shadow: 0 0 15px var(--red-glow); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23888'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.support-info { display: flex; flex-direction: column; gap: 1.25rem; }
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all var(--transition);
}
.support-card:hover { border-color: var(--red); transform: translateX(4px); }
.support-card-icon { font-size: 2rem; flex-shrink: 0; }
.support-card h4 { font-family: 'Rajdhani', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.support-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ===== STAFF ===== */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.staff-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.staff-card:hover { border-color: var(--red); box-shadow: 0 0 25px var(--red-glow); transform: translateY(-4px); }
.staff-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--bg4);
  border: 3px solid var(--border);
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.staff-card:hover .staff-avatar { border-color: var(--red); box-shadow: 0 0 15px var(--red-glow); }
.staff-name { font-family: 'Rajdhani', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.apply-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.apply-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--red-soft) 0%, transparent 70%);
}
.apply-section > * { position: relative; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.about-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.stat-card:hover { border-color: var(--red); }
.stat-num { font-family: 'Rajdhani', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--red); text-shadow: 0 0 15px var(--red-glow); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.mission-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;
}
.mission-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--red-soft) 0%, transparent 60%);
}
.mission-box > * { position: relative; }
.mission-box h2 { color: var(--red); margin-bottom: 1rem; }
.mission-box p { color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.unique-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.unique-card { text-align: center; }
.unique-icon { font-size: 3rem; margin-bottom: 1rem; filter: drop-shadow(0 0 8px var(--red-glow)); }
.unique-card h3 { margin-bottom: 0.5rem; }
.unique-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.cta-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--red-soft) 0%, transparent 70%);
}
.cta-section > * { position: relative; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; }

/* ===== 404 ===== */
.error-page {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-code {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 800;
  color: var(--red);
  text-shadow: 0 0 40px var(--red-glow);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.error-msg { font-size: 1.3rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.error-sub { font-size: 0.95rem; color: var(--text-dim); margin-bottom: 2rem; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { font-size: 1.6rem; display: block; margin-bottom: 0.75rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 38px; height: 38px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { background: var(--red-soft); border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.footer-col h4 { font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; color: var(--text); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom span { color: var(--red); }

/* ===== FADE IN ANIMATION ===== */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--red-soft) 0%, transparent 70%);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { text-transform: uppercase; letter-spacing: 3px; margin-bottom: 0.75rem; }
.page-hero h1 span { color: var(--red); }
.page-hero p { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 1rem; }
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 1.25rem; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .fixed-socials { display: none !important; }
}

@media (max-width: 480px) {
  .ranks-grid { grid-template-columns: 1fr; }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
  html, body, *, *::before, *::after { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 8px; height: 8px;
    background: #E53935;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px #E53935, 0 0 18px rgba(229,57,53,0.6);
    will-change: left, top;
    transition: width 0.15s ease, height 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  }

  .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    width: 34px; height: 34px;
    border: 1.5px solid rgba(229,57,53,0.75);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 12px rgba(229,57,53,0.2);
    will-change: left, top;
    transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  }

  .cursor-ring.hovering {
    width: 50px; height: 50px;
    border-color: rgba(229,57,53,1);
    background: rgba(229,57,53,0.07);
    box-shadow: 0 0 22px rgba(229,57,53,0.4);
  }

  .cursor-dot.hovering {
    width: 5px; height: 5px;
    background: #fff;
    box-shadow: 0 0 8px #fff, 0 0 14px rgba(255,255,255,0.5);
  }

  .cursor-ring.clicking {
    width: 22px; height: 22px;
    background: rgba(229,57,53,0.18);
    border-color: #E53935;
    box-shadow: 0 0 25px rgba(229,57,53,0.6);
  }

  .cursor-dot.clicking {
    width: 14px; height: 14px;
    background: #E53935;
    box-shadow: 0 0 18px #E53935, 0 0 35px rgba(229,57,53,0.8);
  }
}

/* ===== STAFF GROUPED LAYOUT ===== */
.staff-role-group {
  margin-bottom: 2.5rem;
}

.staff-role-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.staff-role-header .badge {
  font-size: 0.9rem;
  padding: 0.4rem 1.1rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.staff-role-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.staff-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.staff-row .staff-card {
  flex: 0 0 160px;
  padding: 1.5rem 1.25rem;
}

@media (max-width: 480px) {
  .staff-row .staff-card { flex: 0 0 calc(50% - 0.625rem); }
}
