/* ===========================
   FrogMog — Brand Stylesheet
   Neon green chaos on near-black.
   =========================== */

:root {
  /* FrogMog Brand Colors */
  --bg:        #0a0a12;
  --bg-2:      #0d0d1a;
  --bg-3:      #111120;
  --surface:   #151525;
  --surface-2: #1c1c30;
  --border:    rgba(0, 255, 65, 0.12);

  --green:      #00ff41;
  --green-mid:  #00cc41;
  --green-dark: #0b4221;
  --mint:       #55ff94;
  --pink:       #ff1493;
  --yellow:     #ffff00;
  --orange:     #ff6600;
  --purple:     #8b00ff;
  --discord:    #5865f2;

  --text:     #e8f5e8;
  --text-dim: #7a9a7a;
  --text-mid: #a8c8a8;

  /* Layout */
  --max-width:      1100px;
  --nav-height:     64px;
  --section-padding: 5rem 0;

  /* Typography */
  --font-display: 'Bangers', cursive;
  --font-body:    'Fredoka', sans-serif;
  --font-mono:    'Press Start 2P', monospace;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
}

/* ===========================
   Reset & Base
   =========================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--green);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--mint);
}

strong {
  color: var(--green);
  font-weight: 600;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===========================
   Floating Chaos Stickers
   =========================== */

.sticker {
  position: fixed;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 1px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
  user-select: none;
}

.sticker--1 {
  top: 18%;
  left: 2%;
  font-size: 1.1rem;
  color: var(--pink);
  transform: rotate(-12deg);
}

.sticker--2 {
  top: 55%;
  right: 3%;
  font-size: 1rem;
  color: var(--green);
  transform: rotate(8deg);
}

.sticker--3 {
  bottom: 30%;
  left: 5%;
  font-size: 2.5rem;
  transform: rotate(-5deg);
}

.sticker--4 {
  bottom: 15%;
  right: 2%;
  font-size: 0.75rem;
  color: var(--yellow);
  transform: rotate(6deg);
  letter-spacing: 2px;
}

/* ===========================
   Buttons
   =========================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--green);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--mint);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 255, 65, 0.4);
}

.btn--discord {
  background: var(--discord);
  color: #fff;
}

.btn--discord:hover {
  background: #4752c4;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(88, 101, 242, 0.4);
}

.btn--sponsor {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
  padding: 0.65rem 1.5rem;
  font-size: 1.1rem;
}

.btn--sponsor:hover {
  background: var(--pink);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(255, 20, 147, 0.35);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.35rem;
}

/* ===========================
   Navigation
   =========================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--green);
}

.nav__logo:hover {
  color: var(--mint);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-mid);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__discord {
  color: var(--discord) !important;
}

.nav__discord:hover {
  color: #7983f5 !important;
}

.nav__sponsor {
  color: var(--pink) !important;
}

.nav__sponsor:hover {
  color: #ff69b4 !important;
}

.nav__cta {
  background: var(--green);
  color: var(--bg) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 5px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
}

.nav__cta:hover {
  background: var(--mint);
  color: var(--bg) !important;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 255, 65, 0.07) 0%, transparent 60%),
              var(--bg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Floating blobs */
.lily-pad {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--green);
  filter: blur(2px);
}

.lily-pad--1 { width: 280px; height: 280px; top: 10%; left: -8%; animation: float-1 10s ease-in-out infinite; }
.lily-pad--2 { width: 160px; height: 160px; top: 55%; right: -4%; background: var(--purple); animation: float-2 13s ease-in-out infinite; }
.lily-pad--3 { width: 100px; height: 100px; bottom: 20%; left: 8%; animation: float-3 8s ease-in-out infinite; }
.lily-pad--4 { width: 200px; height: 200px; top: 25%; right: 12%; background: var(--pink); opacity: 0.04; animation: float-1 15s ease-in-out infinite reverse; }
.lily-pad--5 { width: 70px;  height: 70px;  bottom: 35%; left: 28%; animation: float-2 11s ease-in-out infinite; }

@keyframes float-1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(20px, -35px) rotate(5deg); }
  50%  { transform: translate(-12px, -55px) rotate(-3deg); }
  75%  { transform: translate(18px, -22px) rotate(4deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(-28px, -22px) rotate(-5deg); }
  66%  { transform: translate(18px, -45px) rotate(3deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translate(0, 0); }
  50%  { transform: translate(35px, -28px); }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  will-change: transform;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  color: var(--green);
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.hero__logo {
  max-width: 460px;
  width: 100%;
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 40px rgba(0, 255, 65, 0.25));
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  letter-spacing: 3px;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(0, 255, 65, 0.12);
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Stats ticker */
.hero__ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.7rem 0;
  z-index: 3;
}

.hero__ticker-inner {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  width: max-content;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.tick-item {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  color: var(--text-dim);
  letter-spacing: 1px;
  padding: 0 1.5rem;
}

.tick-num {
  color: var(--green);
  font-size: 0.6rem;
}

.tick-sep {
  color: var(--green);
  opacity: 0.4;
  font-size: 0.6rem;
  padding: 0 0.25rem;
}

/* ===========================
   Section Defaults
   =========================== */

.section {
  padding: var(--section-padding);
}

.section--alt {
  background: var(--bg-2);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 3px;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section__title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--green);
  margin: 0.6rem auto 0;
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
}

.section__subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ===========================
   About / The Swamp
   =========================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.about-text p {
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.mechanics-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 1.25rem;
}

.mechanic-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.85rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.mechanic-card:hover {
  border-color: rgba(0, 255, 65, 0.35);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.07);
}

.mechanic-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.mechanic-info {
  flex: 1;
}

.mechanic-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
  flex-wrap: wrap;
}

.mechanic-header strong {
  color: var(--text);
  font-size: 1.05rem;
}

.mechanic-info p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.5;
}

.mechanic-badge {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 1px;
  white-space: nowrap;
}

.mechanic-badge--kill {
  background: rgba(255, 20, 147, 0.15);
  color: var(--pink);
  border: 1px solid rgba(255, 20, 147, 0.35);
}

.mechanic-badge--dmg {
  background: rgba(255, 102, 0, 0.15);
  color: var(--orange);
  border: 1px solid rgba(255, 102, 0, 0.35);
}

/* ===========================
   Gallery Section
   =========================== */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery__item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 255, 65, 0.25);
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  cursor: zoom-in;
}

/* ===========================
   Lightbox
   =========================== */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox--open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(0, 255, 65, 0.15);
  transform: scale(0.95);
  transition: transform 0.2s ease;
}

.lightbox--open .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color var(--transition-base);
}

.lightbox__close:hover {
  color: var(--text-primary);
}

/* ===========================
   Discord CTA Section
   =========================== */

.section--discord {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.08) 0%, var(--bg) 60%);
  border-top: 1px solid rgba(88, 101, 242, 0.15);
  border-bottom: 1px solid rgba(88, 101, 242, 0.15);
}

.discord-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.discord-cta__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 3px;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.discord-cta__text p {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 420px;
}

/* ===========================
   Blog Post Section
   =========================== */

.blog-post {
  max-width: 720px;
  margin: 2rem auto 0;
  background: var(--surface);
  border-radius: 10px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.blog-post__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.blog-post__title {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 1rem;
}

.blog-post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-post__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blog-post__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 2px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: var(--font-mono);
}

.blog-post__author span {
  color: var(--text-mid);
  font-weight: 500;
}

.blog-post__date {
  color: var(--text-dim);
  font-size: 0.85rem;
}

.blog-post__body p {
  margin-bottom: 1.25rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.blog-post__body h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  color: var(--green);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-post__body strong {
  color: var(--text);
}

.blog-post__body em {
  color: var(--text-dim);
}

/* ===========================
   FAQ Section
   =========================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] {
  border-color: var(--green);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.3s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.faq-answer ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: var(--green);
  text-decoration: underline;
}

/* ===========================
   Links Section
   =========================== */

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 600px;
  margin: 2rem auto 0;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all var(--transition-base);
  text-decoration: none;
}

.link-card:hover {
  border-color: rgba(0, 255, 65, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 24px rgba(0, 255, 65, 0.08);
}

.link-card--discord:hover {
  border-color: rgba(88, 101, 242, 0.5);
  box-shadow: 0 4px 24px rgba(88, 101, 242, 0.12);
}

.link-card__icon {
  color: var(--green);
  flex-shrink: 0;
}

.link-card--discord .link-card__icon {
  color: var(--discord);
}

.link-card__text h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.link-card__text p {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ===========================
   Sponsor Section
   =========================== */

.section--sponsor {
  background: linear-gradient(135deg, rgba(255, 20, 147, 0.04) 0%, var(--bg-2) 60%);
  border-top: 1px solid rgba(255, 20, 147, 0.1);
  border-bottom: 1px solid rgba(255, 20, 147, 0.1);
}

.section--sponsor .section__title::after {
  background: var(--pink);
  box-shadow: 0 0 12px rgba(255, 20, 147, 0.5);
}

.sponsor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.sponsor-card {
  background: var(--surface);
  border: 1px solid rgba(255, 20, 147, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
}

.sponsor-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sponsor-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.sponsor-card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sponsor-perks {
  padding: 1.5rem;
}

.perks-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--pink);
  margin-bottom: 1.25rem;
}

.perks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.perks-list li {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.7rem 1rem;
  background: var(--surface);
  border-left: 3px solid rgba(255, 20, 147, 0.4);
  border-radius: 0 6px 6px 0;
}

/* ===========================
   Email Signup Section
   =========================== */

.signup-form {
  max-width: 560px;
  margin: 0 auto;
}

.signup-form__fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.signup-form__field {
  flex: 1;
  min-width: 160px;
}

.signup-form__field input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.signup-form__field input::placeholder {
  color: var(--text-dim);
}

.signup-form__field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.1);
}

.signup-form .btn {
  white-space: nowrap;
}

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green);
  color: var(--bg);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  opacity: 0;
  transition: all var(--transition-base);
  pointer-events: none;
  z-index: 200;
  box-shadow: 0 4px 24px rgba(0, 255, 65, 0.3);
}

.toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===========================
   Footer
   =========================== */

.footer {
  background: var(--bg-3);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--green);
}

.footer__copy {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.footer__updated {
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-top: 0.15rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--text-dim);
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--green);
}

/* ===========================
   Mobile — 768px
   =========================== */

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-base);
  }

  .nav__links--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 3.5rem 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .discord-cta {
    flex-direction: column;
    text-align: center;
  }

  .discord-cta__text p {
    max-width: 100%;
  }

  .blog-post {
    padding: 1.5rem;
  }

  .blog-post__title {
    font-size: 1.6rem;
  }

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

  .signup-form__fields {
    flex-direction: column;
  }

  .signup-form .btn {
    width: 100%;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }
}

/* ===========================
   Mobile — 480px
   =========================== */

@media (max-width: 480px) {
  .hero__logo {
    max-width: 300px;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

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

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

  .blog-post__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticker {
    display: none;
  }
}
