:root {
  --bg: #080808;
  --bg-2: #111111;
  --panel: #151515;
  --panel-soft: #191919;
  --line: rgba(255, 255, 255, 0.07);
  --text: #ffffff;
  --muted: #9fb0c2;
  --gold: #31a8ff;
  --gold-soft: rgba(49, 168, 255, 0.12);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Barlow", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(49, 168, 255, 0.08), transparent 22%),
    radial-gradient(circle at left center, rgba(49, 168, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #040404 0%, #0b0d10 100%);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 9, 12, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-title,
.nav-links a,
.button,
h1,
h2,
h3,
.card-icon {
  font-family: "Archivo Black", sans-serif;
}

.brand-title {
  font-size: 1.58rem;
  letter-spacing: 0.01em;
}

.brand-title span,
.section-heading span,
.cta-panel span,
.hero-gold {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: #9ca3af;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 3px;
  background: var(--gold);
}

.nav-discord {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 12px;
  background: rgba(49, 168, 255, 0.1);
  border: 1px solid rgba(49, 168, 255, 0.12);
  line-height: 1;
  transform: translateY(-1px);
}

.hero {
  padding: 112px 0 92px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  gap: 56px;
  align-items: center;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  display: grid;
  gap: 8px;
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 0.94;
}

.hero-copy p,
.section-heading p,
.card p,
.cta-panel p,
.footer-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(49, 168, 255, 0.08);
  border: 1px solid rgba(49, 168, 255, 0.14);
  color: #a7d8ff;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: 1.12rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d5e8f8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 12px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  font-size: 1rem;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #041522;
  background: linear-gradient(180deg, #42b7ff, #1e90e7);
  box-shadow: 0 14px 30px rgba(49, 168, 255, 0.2);
}

.button-secondary {
  color: #9fd8ff;
  background: rgba(49, 168, 255, 0.08);
  border: 1px solid rgba(49, 168, 255, 0.16);
}

.button-ghost {
  color: #d7ecff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.hero-logo-glow {
  position: absolute;
  inset: 10% 15%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49, 168, 255, 0.16), transparent 65%);
  filter: blur(18px);
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(400px, 92%);
  margin-inline: auto;
  filter: drop-shadow(0 18px 48px rgba(49, 168, 255, 0.16));
}

.section {
  padding: 96px 0;
}

.section-tight {
  padding-top: 28px;
  padding-bottom: 28px;
}

.section-alt {
  background: rgba(255, 255, 255, 0.015);
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.1rem);
  line-height: 0.96;
}

.section-heading p {
  margin: 18px 0 0;
  font-size: 1.12rem;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.card {
  min-height: 196px;
  padding: 30px 28px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(15, 16, 19, 0.98));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-bottom: 22px;
  border-radius: 0;
  color: var(--gold);
  background: transparent;
  font-size: 1.2rem;
}

.card h3 {
  margin: 0 0 14px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.card p {
  margin: 0;
  font-size: 1rem;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 22px;
  min-height: 104px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.2rem;
}

.quick-strip,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quick-card,
.info-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(15, 16, 19, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.quick-label,
.info-card-label {
  color: #8ebedc;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.quick-card strong,
.info-card strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.38rem;
  line-height: 1.18;
}

.quick-card span,
.info-card span {
  color: var(--muted);
  line-height: 1.7;
}

.job-blue { background: rgba(37, 99, 235, 0.12); color: #7fb1ff; }
.job-red { background: rgba(220, 38, 38, 0.12); color: #ff7f7f; }
.job-gray { background: rgba(148, 163, 184, 0.08); color: #c5ccd8; }
.job-yellow { background: rgba(14, 116, 217, 0.16); color: #70c3ff; }
.job-purple { background: rgba(168, 85, 247, 0.12); color: #d0a3ff; }
.job-green { background: rgba(34, 197, 94, 0.12); color: #78e7a5; }

.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
  padding: 68px 28px;
  text-align: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at right, rgba(49, 168, 255, 0.1), transparent 30%),
    var(--panel);
  border: 1px solid var(--line);
}

.cta-panel h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.cta-panel p {
  max-width: 760px;
  margin: 22px auto 0;
  font-size: 1.18rem;
}

.section-heading-center {
  text-align: center;
}

.section-heading-center p {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 44px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(9, 11, 14, 0.7), rgba(7, 8, 10, 0.96));
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  padding-bottom: 30px;
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.footer-grid p {
  margin: 0 0 10px;
  max-width: 42ch;
}

.footer-mini-label {
  margin-bottom: 14px;
  color: #8ebedc;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  color: #d8ebfb;
  text-decoration: none;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.94rem;
  background: rgba(49, 168, 255, 0.08);
  border: 1px solid rgba(49, 168, 255, 0.14);
  transition: transform 180ms ease, background 180ms ease;
}

.footer-action:hover {
  transform: translateY(-1px);
  background: rgba(49, 168, 255, 0.12);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #708091;
  text-align: center;
}

.rules-shell {
  padding: 96px 0 80px;
}

.rules-list,
.support-shell {
  display: grid;
  gap: 20px;
}

.status-layout {
  display: grid;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.status-hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at right top, rgba(49, 168, 255, 0.12), transparent 35%),
    #121212;
  border: 1px solid rgba(49, 168, 255, 0.16);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(49, 168, 255, 0.1);
  color: #a8dcff;
}

.status-hero-copy h3 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.status-hero-copy p,
.status-note p,
.status-card span,
.status-highlight-sub,
.status-highlight-label {
  color: var(--muted);
  line-height: 1.7;
}

.status-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.status-updated {
  margin-top: 18px;
  color: #8aa9c0;
  font-size: 0.96rem;
}

.status-highlight {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(49, 168, 255, 0.14);
}

.status-highlight-value {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
}

.highlight-copy {
  margin-top: 10px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid rgba(49, 168, 255, 0.16);
  background: rgba(49, 168, 255, 0.08);
  color: #9fd8ff;
  font: inherit;
  cursor: pointer;
}

.highlight-copy:hover {
  transform: translateY(-1px);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.status-card {
  display: grid;
  gap: 10px;
  min-height: 170px;
  padding: 26px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(15, 16, 19, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.status-card-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9fd8ff;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.status-card strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.5rem;
  line-height: 1.15;
}

.status-note {
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(49, 168, 255, 0.06);
  border: 1px solid rgba(49, 168, 255, 0.14);
}

.rules-shell .section-heading,
.support-shell .section-heading {
  max-width: 1120px;
  margin: 0 auto 42px;
}

.rules-list {
  max-width: 1024px;
  margin: 0 auto;
}

.rule-item {
  border-radius: 12px;
  background: #171717;
  border: 1px solid rgba(49, 168, 255, 0.18);
  overflow: hidden;
}

.rule-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 96px;
  padding: 24px 30px;
  cursor: pointer;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.rule-summary::-webkit-details-marker {
  display: none;
}

.rule-content {
  padding: 0 30px 28px;
  color: var(--muted);
  line-height: 1.8;
}

.rule-content p {
  margin: 0;
}

.rule-content ul {
  margin: 0;
  padding-left: 22px;
}

.rule-content li + li {
  margin-top: 12px;
}

.rule-summary span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.rule-summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold);
  font-size: 1rem;
}

.rule-item[open] .rule-summary::after {
  content: "\f077";
}

.support-box {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  text-align: center;
}

.support-mini-label {
  margin-bottom: 14px;
  color: #8ebedc;
  font-family: "Archivo Black", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-box h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
}

.support-box h3 i {
  color: var(--gold);
  margin-right: 10px;
}

.support-box p {
  margin: 18px auto 0;
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.support-hero-panel {
  display: grid;
  justify-items: center;
  gap: 26px;
  max-width: 960px;
  margin: 0 auto 18px;
  padding: 54px 40px 36px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(49, 168, 255, 0.1), transparent 36%),
    linear-gradient(180deg, rgba(19, 24, 29, 0.98), rgba(13, 15, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.support-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(49, 168, 255, 0.18), rgba(49, 168, 255, 0.08));
  color: var(--gold);
  font-size: 2.15rem;
  border: 1px solid rgba(49, 168, 255, 0.14);
  box-shadow: 0 18px 50px rgba(49, 168, 255, 0.12);
}

.support-shell .cta-actions {
  justify-content: center;
  margin-top: 6px;
}

.support-shell .button {
  min-width: 240px;
}

.support-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.support-info-grid .info-card {
  min-height: 190px;
  padding: 30px 30px 28px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(19, 21, 24, 0.98), rgba(16, 17, 20, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.support-info-grid .info-card strong {
  font-size: 1.9rem;
  word-break: break-word;
}

.support-info-grid .info-card span {
  max-width: 32ch;
}

@media (max-width: 1080px) {
  .feature-grid,
  .jobs-grid,
  .status-grid,
  .quick-strip,
  .info-grid,
  .support-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .status-hero-card {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading,
  .status-hero-copy,
  .support-shell .section-heading {
    text-align: center;
  }

  .hero-copy p,
  .section-heading p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-pills {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-discord {
    transform: none;
  }

  .nav-links a.active::after {
    bottom: -8px;
  }
}

@media (max-width: 720px) {
  .feature-grid,
  .jobs-grid,
  .footer-grid,
  .status-grid,
  .quick-strip,
  .info-grid,
  .support-info-grid {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .status-hero-actions {
    display: grid;
  }

  .hero-pills {
    display: grid;
  }

  .rule-summary {
    font-size: 1.25rem;
    padding: 22px 20px;
  }

  .rule-content {
    padding: 0 20px 22px;
  }

  .status-hero-card,
  .status-card,
  .status-note {
    padding: 22px;
  }

  .support-hero-panel {
    padding: 34px 20px 24px;
    border-radius: 22px;
  }

  .support-shell .button {
    min-width: 0;
  }
}
