.feature-video-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 0.85rem;
  color: #ff4444;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

.feature-video-link:hover,
.feature-video-link:focus-visible {
  color: #ff6666;
  opacity: 0.85;
}

/* FAQ and About page custom styles */
.faq-page, .about-page {
  margin-top: 7.2em;
  margin-bottom: 3em;
}

.faq-section, .about-section {
  background: var(--card);
  border: 1.5px solid var(--stroke);
  border-radius: 1.2em;
  box-shadow: var(--shadow);
  padding: 3.7em 2em 2em 2em;
  max-width: 700px;
  margin: 0 auto;
}

.plugins-intro {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 1.8em;
  text-align: center;
}

.plugin-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}

.plugin-card {
  background: var(--card);
  border: 1.5px solid var(--stroke);
  border-radius: 1em;
  padding: 1.1em 1.2em;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.plugin-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(123, 94, 32, 0.22);
}

.plugin-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5em;
  margin-bottom: 0.5em;
}

.plugin-name {
  font-family: 'IM Fell English SC', 'EB Garamond', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--tone-1);
}

.plugin-version {
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: rgba(176, 141, 87, 0.15);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.15em 0.6em;
  white-space: nowrap;
}

.plugin-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.5;
}

.faq-title,
.about-title {
  font-family: 'IM Fell English SC', 'EB Garamond', serif;
  color: var(--tone-1);
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 1.2em;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.faq-item h2 {
  color: var(--tone-2);
  font-size: 1.18rem;
  margin-bottom: 0.4em;
}

.faq-item p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 1.08rem;
}

.about-content p {
  color: var(--ink-soft);
  margin-top: 1.1em;
  font-size: 1.08rem;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.footer-socials .social-link {
  color: var(--tone-2);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.2s;
}
.footer-socials .social-link:hover {
  color: var(--tone-1);
  text-decoration: underline;
}
.map-section {
  margin-top: 3em;
  margin-bottom: 3em;
}

.map-embed-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 1.5em 0;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: var(--shadow);
}
:root {
  --bg-0: #f5ecd6; /* parchment */
  --bg-1: #e2c799; /* lighter parchment */
  --bg-2: #b08d57; /* tan */
  --tone-1: #7c3f00; /* deep brown for headers */
  --tone-2: #b08d57; /* gold/tan accent */
  --ink: #3b2c1a; /* dark brown text */
  --ink-soft: #6e4b1f; /* softer brown */
  --card: rgba(245, 236, 214, 0.92); /* parchment card */
  --stroke: #b08d57; /* gold/tan border */
  --shadow: 0 8px 32px rgba(123, 94, 32, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 207, 112, 0.22), transparent 40%),
    radial-gradient(circle at 82% 14%, rgba(89, 240, 210, 0.2), transparent 38%),
    linear-gradient(150deg, var(--bg-0), var(--bg-1) 35%, var(--bg-2));
  font-family: 'EB Garamond', 'IM Fell English SC', serif;
  line-height: 1.5;
  overflow-x: hidden;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  z-index: -1;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.18) 0.6px, transparent 0.6px),
    radial-gradient(rgba(255, 255, 255, 0.1) 0.7px, transparent 0.7px);
  background-size:
    22px 22px,
    17px 17px;
  background-position:
    0 0,
    11px 13px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
  background: rgba(9, 17, 30, 0.96);
  box-shadow: 0 2px 16px rgba(0,0,0,0.13);
  border-bottom: 1px solid rgba(168, 221, 255, 0.22);
  backdrop-filter: blur(8px);
}

.pay-to-play-info {
  background: var(--card);
  border: 1.5px solid var(--stroke);
  border-radius: 1em;
  margin-top: 2em;
  padding: 1.5em 1.2em 1.2em 1.2em;
  box-shadow: var(--shadow);
  text-align: left;
}
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(9, 17, 30, 0.62);
  border-bottom: 1px solid rgba(168, 221, 255, 0.22);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
.main, main, .container, .hero, .about, .features, .join, .map-section {
  margin-top: 4.2em;
}
}

.logo {
  text-decoration: none;
  font-family: 'IM Fell English SC', 'EB Garamond', serif !important;
  color: var(--tone-1) !important;
  letter-spacing: 0.03em;
  font-size: clamp(1rem, 0.9rem + 0.7vw, 1.45rem);
  background: none !important;
  box-shadow: none !important;
}

.main-nav {
  display: flex;
  gap: 1.2rem;
}

.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--tone-2);
}

.hero {
  padding: clamp(3.4rem, 8vw, 6.1rem) 0 clamp(2rem, 7vw, 4rem);
}

.eyebrow {
  margin: 0;
  color: var(--tone-2);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.headline {
  margin: 0.25rem 0 0;
  font-family: 'IM Fell English SC', 'EB Garamond', serif;
  font-size: clamp(2rem, 1.2rem + 4vw, 4.25rem);
  line-height: 1.05;
  max-width: 14ch;
  text-wrap: balance;
}

.subtitle {
  margin-top: 1rem;
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 0.9rem + 0.6vw, 1.34rem);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.78rem 1.35rem;
  border: 1px solid transparent;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(120deg, var(--tone-1), #fca84f);
  color: #17253b;
  box-shadow: 0 10px 24px rgba(252, 168, 79, 0.32);
}

.button.ghost {
  border-color: var(--stroke);
  color: var(--ink);
  background: rgba(26, 42, 68, 0.35);
}

.button.large {
  margin-top: 1rem;
  width: 100%;
}

.join-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.btn-branded {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 1 1 160px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-branded:hover,
.btn-branded:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-kofi {
  background: #FF5E5B;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 94, 91, 0.4);
}

.btn-discord {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.hero-panels {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.panel-value {
  margin: 0.5rem 0 0;
  font-size: 1.12rem;
  font-weight: 700;
}

.panel-meta {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.mini-button {
  margin-top: 0.8rem;
  border-radius: 10px;
  border: 1px solid var(--stroke);
  padding: 0.45rem 0.65rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  background: rgba(18, 29, 48, 0.6);
  transition: background 0.2s ease;
}

.mini-button:hover,
.mini-button:focus-visible {
  background: rgba(67, 134, 153, 0.35);
}

.about,
.features,
.join {
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.about h2,
.features h2,
.join h2 {
  margin: 0;
  font-family: 'IM Fell English SC', 'EB Garamond', serif;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.4rem);
}

.about p {
  max-width: 66ch;
  color: var(--ink-soft);
  margin-top: 1rem;
  font-size: 1.08rem;
}

.feature-grid {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: linear-gradient(160deg, rgba(20, 37, 61, 0.66), rgba(13, 21, 39, 0.84));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 1rem;
  min-height: 150px;
}

.feature-card h3 {
  margin: 0;
  color: var(--tone-1);
  font-size: 1.07rem;
}

.feature-card p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
}

.join-card {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background:
    linear-gradient(130deg, rgba(10, 24, 41, 0.92), rgba(11, 39, 57, 0.78)),
    radial-gradient(circle at 8% 7%, rgba(255, 207, 112, 0.3), transparent 38%);
  box-shadow: var(--shadow);
  padding: clamp(1.2rem, 2vw, 2rem);
}

.join-card p {
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

.join-meta {
  margin-top: 1rem;
  border: 1px solid rgba(167, 220, 255, 0.28);
  border-radius: 12px;
  background: rgba(19, 28, 44, 0.45);
  padding: 0.9rem;
}

.join-meta p {
  margin: 0.3rem 0;
}

.meta-label {
  color: var(--tone-2);
  font-weight: 700;
}

.site-footer {
  padding: 2rem 1rem 2.6rem;
  text-align: center;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-panels,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .main-nav {
    gap: 0.7rem;
  }

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

  .panel,
  .feature-card {
    border-radius: 14px;
  }
}
