@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;
  --patreon: #f96854;
  --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;
  white-space: nowrap;
  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; }

.supporters-page {
  min-height: 100vh;
  padding-top: var(--nav-height);
  background:
    radial-gradient(circle at 15% 12%, rgba(249, 104, 84, 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);
}

.supporters-hero {
  position: relative;
  min-height: 560px;
  padding: 90px 6% 60px;
  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(249, 104, 84, 0.22), transparent 68%);
  filter: blur(12px);
  z-index: 0;
}

.supporters-logo {
  position: relative;
  z-index: 1;
  width: 200px;
  margin-bottom: 26px;
  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: #ff8a7a;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.supporters-hero h1,
.section-heading 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;
}

.supporters-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;
  gap: 10px;
  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);
}

/* keep the Patreon glyph readable on the coloured buttons */
.btn .fa-patreon {
  color: inherit;
}

.tiers-section,
.support-why,
.faq-section,
.connect-banner {
  width: min(1180px, 88%);
  margin: 0 auto;
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.tiers-section,
.support-why,
.faq-section {
  padding: 40px 0 70px;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 38px 32px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(20, 20, 20, 0.82);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.38);
  transition: transform 0.28s ease, border 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.tier-featured {
  border-color: rgba(249, 104, 84, 0.45);
  background: linear-gradient(160deg, rgba(249, 104, 84, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.5), 0 0 40px rgba(249, 104, 84, 0.12);
}

.tier-featured:hover {
  border-color: rgba(249, 104, 84, 0.7);
  background: linear-gradient(160deg, rgba(249, 104, 84, 0.2), rgba(255, 255, 255, 0.05));
}

.tier-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--patreon), #ff8a7a);
  box-shadow: 0 10px 26px rgba(249, 104, 84, 0.35);
  color: #1a0d0a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-head {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.tier-name {
  display: inline-block;
  margin-bottom: 14px;
  color: #ff8a7a;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tier-amount {
  color: var(--text);
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1;
}

.tier-period {
  color: var(--muted-dark);
  font-size: 1rem;
}

.tier-summary {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.tier-perks {
  flex: 1;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.tier-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.tier-perks li:last-child {
  margin-bottom: 0;
}

.tier-perks i {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-light);
  font-size: 0.9rem;
}

.tier-featured .tier-perks i {
  color: var(--patreon);
}

.tier-btn {
  width: 100%;
}

.why-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.why-grid {
  grid-template-columns: repeat(3, 1fr);
}

.faq-grid {
  grid-template-columns: repeat(2, 1fr);
}

.why-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;
}

.why-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);
}

.why-card i {
  margin-bottom: 20px;
  color: var(--patreon);
  font-size: 2.4rem;
  filter: drop-shadow(0 0 14px rgba(249, 104, 84, 0.35));
}

.why-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.35rem;
}

.why-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.connect-banner {
  margin-bottom: 80px;
  padding: 48px 32px;
  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);
  text-align: center;
}

.connect-banner p {
  max-width: 760px;
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.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);
}

#tiers,
#connect {
  scroll-margin-top: calc(var(--nav-height) + 15px);
}

@media (max-width: 1180px) {
  .navbar-container {
    grid-template-columns: auto 1fr auto;
  }

  .navbar-social {
    gap: 14px;
  }

  .navbar-social a {
    font-size: 21px;
  }
}

@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;
  }

  .supporters-hero {
    min-height: 520px;
  }

  .tier-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  /* the flag would otherwise sit under the card above it once stacked */
  .tier-featured {
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 78px;
  }

  .navbar-container {
    gap: 12px;
  }

  .navbar-logo img {
    height: 52px;
  }

  .navbar-links {
    gap: 4px;
  }

  .navbar-link {
    font-size: 13px;
    padding: 9px 8px;
  }

  .supporters-hero {
    padding: 70px 5% 50px;
  }

  .supporters-logo {
    width: 160px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
    padding: 13px 20px;
  }

  .tiers-section,
  .support-why,
  .faq-section,
  .connect-banner {
    width: 90%;
  }

  .tier-card,
  .why-card,
  .faq-item,
  .connect-banner {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .tier-amount {
    font-size: 2.8rem;
  }
}
