@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #080808;
  --bg-soft: #111111;
  --panel: rgba(20, 20, 20, 0.82);
  --panel-solid: #151515;
  --border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: #c9c9c9;
  --muted-dark: #8f8f8f;
  --red: #ff1b1b;
  --green: #2ea043;
  --green-light: #38c172;
  --blue: #3b5bff;
  --nav-height: 96px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 1px;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  font-family: 'Orbitron', sans-serif;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button {
  font-family: inherit;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.navbar-container {
  max-width: 1420px;
  height: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.navbar-logo img {
  height: 72px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.navbar-logo:hover img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
}

.navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.navbar-link {
  position: relative;
  padding: 12px 20px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.navbar-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.navbar-link::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: 8px;
  width: 56%;
  height: 2px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.navbar-link:hover::after,
.navbar-link.active::after {
  transform: scaleX(1);
}

.navbar-link.active {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.15);
}

.navbar-social {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.navbar-social a {
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.navbar-social a:hover {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, 0.45));
}

.fa-youtube { color: #ff0000; }
.fa-instagram { color: #e4405f; }
.fa-patreon { color: #f96854; }
.fa-bluesky { color: #0091ff; }
.fa-x-twitter { color: #1da1f2; }
.fa-twitch { color: #9146ff; }
.fa-discord { color: #7289da; }

.about-page {
  min-height: 100vh;
  padding-top: var(--nav-height);
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 27, 27, 0.18), transparent 28%),
    radial-gradient(circle at 85% 30%, rgba(59, 91, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #070707, #111111 45%, #080808);
}

.about-hero {
  position: relative;
  min-height: 620px;
  padding: 90px 6% 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 27, 27, 0.22), transparent 68%);
  filter: blur(12px);
  z-index: 0;
}

.about-logo {
  position: relative;
  z-index: 1;
  width: 230px;
  margin-bottom: 28px;
  filter: drop-shadow(0 22px 45px rgba(0, 0, 0, 0.8));
}

.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  color: #ff4c4c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.about-hero h1,
.section-heading h2,
.intro-card h2,
.connect-banner h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.1;
}

.about-hero p {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 22px auto 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.8;
}

.hero-buttons {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--text);
  text-decoration: none;
  font-size: 17px;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, #2ea043, #32b857);
  box-shadow: 0 12px 30px rgba(46, 160, 67, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #38c172, #2ea043);
  box-shadow: 0 16px 38px rgba(46, 160, 67, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.about-intro,
.mission-section,
.team-section,
.faq-section,
.connect-banner {
  width: min(1180px, 88%);
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 40px 0 80px;
}

.intro-card,
.connect-banner {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
}

.intro-card {
  padding: 38px;
}

.intro-card p,
.section-heading p,
.focus-card p,
.team-card p,
.faq-item p,
.connect-banner p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.intro-card p {
  margin: 22px 0 0;
}

.intro-stats {
  display: grid;
  gap: 18px;
}

.stat-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.8);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 2.2rem;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p {
  margin: 16px auto 0;
}

.mission-section,
.team-section,
.faq-section {
  padding: 40px 0 70px;
}

.focus-grid,
.team-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.focus-grid {
  grid-template-columns: repeat(3, 1fr);
}

.team-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.focus-card,
.team-card,
.faq-item {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(20, 20, 20, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  transition: transform 0.28s ease, border 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.focus-card:hover,
.team-card:hover,
.faq-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.5);
}

.focus-card i {
  margin-bottom: 20px;
  color: var(--red);
  font-size: 2.4rem;
  filter: drop-shadow(0 0 14px rgba(255, 27, 27, 0.35));
}

.focus-card h3,
.team-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.35rem;
}

.focus-card p,
.team-card p,
.faq-item p {
  margin: 0;
}

.team-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: #ff4c4c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.connect-banner {
  margin-bottom: 80px;
  padding: 48px 32px;
  text-align: center;
}

.connect-banner p {
  max-width: 760px;
  margin: 18px auto 28px;
}

.connect-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.connect-icons a {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.7rem;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.connect-icons a:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.45);
}

.site-footer {
  padding: 22px;
  text-align: center;
  color: var(--muted-dark);
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.reveal > * {
  transform: translateY(36px);
  transition: transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
}

.reveal.active > * {
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .navbar-container {
    grid-template-columns: auto 1fr auto;
  }

  .navbar-social {
    gap: 14px;
  }

  .navbar-social a {
    font-size: 21px;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-height: 84px;
  }

  .navbar-container {
    padding: 0 18px;
  }

  .navbar-logo img {
    height: 58px;
  }

  .navbar-social {
    display: none;
  }

  .navbar-links {
    justify-content: flex-end;
  }

  .navbar-link {
    font-size: 15px;
    padding: 10px 14px;
  }

  .about-hero {
    min-height: 560px;
  }

  .focus-grid,
  .team-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 78px;
  }

  .navbar-container {
    gap: 12px;
  }

  .navbar-logo img {
    height: 52px;
  }

  .navbar-link {
    font-size: 13px;
    padding: 9px 10px;
  }

  .about-page {
    padding-top: var(--nav-height);
  }

  .about-hero {
    padding: 70px 5% 50px;
  }

  .about-logo {
    width: 180px;
  }

  .hero-buttons {
    width: 100%;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
    padding: 13px 20px;
  }

  .about-intro,
  .mission-section,
  .team-section,
  .faq-section,
  .connect-banner {
    width: 90%;
  }

  .intro-card,
  .connect-banner,
  .focus-card,
  .team-card,
  .faq-item {
    padding: 24px 18px;
    border-radius: 20px;
  }

}

#team {
  scroll-margin-top: calc(var(--nav-height) + 15px);
}

#connect {
  scroll-margin-top: calc(var(--nav-height) + 15px);
}

@media (max-width: 1600px) and (max-height: 950px) {

  .team-section {
    min-height: 100vh;
    padding: 10px 5% 30px;
  }

  .team-section .section-heading {
    margin-bottom: 8px;
  }

  .team-section .section-heading h2 {
    font-size: 2.6rem;
    margin-bottom: 2px;
  }

  .team-section .section-heading p {
    font-size: 0.9rem;
    line-height: 1.3;
    max-width: 750px;
  }

  .team-grid {
    gap: 8px;
  }

  .team-card {
    padding: 13px 15px;
    min-height: 130px;
  }

  .team-card span {
    font-size: 0.62rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .team-card h3 {
    font-size: 0.95rem;
    margin: 4px 0;
  }

  .team-card p {
    font-size: 0.78rem;
    line-height: 1.3;
  }
}
