:root {
  --bg: #06080d;
  --bg-alt: #0b1017;
  --panel: rgba(10, 15, 24, 0.76);
  --panel-strong: rgba(11, 15, 23, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(240, 165, 47, 0.28);
  --text: #f7f8fb;
  --muted: #b6bfcd;
  --gold: #f0a52f;
  --gold-strong: #ffbe55;
  --gold-soft: rgba(240, 165, 47, 0.16);
  --blue: #79a9de;
  --blue-soft: rgba(121, 169, 222, 0.14);
  --green: #54d08a;
  --red: #ff7b7b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1220px, calc(100% - 40px));
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(240, 165, 47, 0.08), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(121, 169, 222, 0.07), transparent 20%),
    linear-gradient(180deg, #05070b 0%, #080b11 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: rgba(255,255,255,0.08);
  padding: 0.18rem 0.42rem;
  border-radius: 8px;
}
.container { width: var(--container); margin: 0 auto; }
.muted { color: var(--muted); line-height: 1.75; }
.eyebrow,
.hero-kicker {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  padding: 0;
  background: linear-gradient(180deg, rgba(4, 6, 10, 0.78), rgba(4, 6, 10, 0.18));
  backdrop-filter: blur(6px);
}
.header-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.status-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 12px 0;
  min-width: 180px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f1f2f5;
}
.status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(240, 165, 47, 0.14);
}
.compact-status.online .status-dot { background: var(--green); box-shadow: 0 0 0 4px rgba(84, 208, 138, 0.18); }
.compact-status.offline .status-dot { background: var(--red); box-shadow: 0 0 0 4px rgba(255, 123, 123, 0.18); }

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.header-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand-copy strong {
  font-size: 1.05rem;
  line-height: 1;
}
.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 10px;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(245, 247, 251, 0.84);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.main-nav a:hover,
.main-nav a.active {
  background: rgba(240, 165, 47, 0.14);
  color: var(--gold);
}
.menu-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}
.hero-background,
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.hero-background img,
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-background img {
  animation: bannerDrift 18s ease-in-out infinite alternate;
}
.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 5, 9, 0.76) 0%, rgba(4, 5, 9, 0.52) 24%, rgba(4, 5, 9, 0.72) 100%),
    radial-gradient(circle at center, rgba(240, 165, 47, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(6, 8, 12, 0.92) 0%, rgba(6, 8, 12, 0.28) 48%, rgba(6, 8, 12, 0.88) 100%);
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 18%, rgba(4, 5, 9, 0.38) 70%, rgba(4, 5, 9, 0.75) 100%);
}
.hero-shell,
.page-hero-content {
  position: relative;
  z-index: 1;
}
.hero-shell {
  display: grid;
  gap: 28px;
}
.hero-shell-single {
  justify-items: center;
}
.hero-clean {
  min-height: 88vh;
}
.hero-card-premium {
  width: min(720px, 100%);
}
.owners-section {
  position: relative;
}
.owners-heading {
  margin-bottom: 28px;
}
.hero-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 34px 34px 30px;
  text-align: center;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.58), rgba(10, 15, 24, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.hero-logo {
  width: min(220px, 48vw);
  margin: 0 auto 18px;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.42));
}
.hero-card h1,
.page-hero-content h1 {
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.98;
}
.hero-description,
.page-hero-content p {
  width: min(680px, 100%);
  margin: 18px auto 0;
  color: rgba(247, 248, 251, 0.86);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
  line-height: 1.8;
}
.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.compact-actions { justify-content: flex-start; }
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  overflow: hidden;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #161008;
  box-shadow: 0 18px 44px rgba(240, 165, 47, 0.24);
}
.button-secondary {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}
.button-ghost {
  background: rgba(121, 169, 222, 0.12);
  border-color: rgba(121, 169, 222, 0.16);
  color: #e3eef9;
}
.button-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.3) 48%, transparent 74%);
  transform: translateX(-130%);
  animation: shimmer 3.3s ease-in-out infinite;
}
.button-label { position: relative; z-index: 1; }
.copy-button.is-copied {
  background: linear-gradient(135deg, #74d89b, #54d08a);
  box-shadow: 0 18px 44px rgba(84, 208, 138, 0.24);
}

.hero-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.glass-card,
.card,
.owner-card,
.discord-widget-panel,
.discord-fallback,
.discord-placeholder,
.rule-section,
.intro-card {
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.88), rgba(8, 11, 18, 0.94));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.glass-card,
.card,
.owner-card,
.rule-section,
.intro-card {
  padding: 24px;
}
.card-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(240, 165, 47, 0.12);
  border: 1px solid rgba(240, 165, 47, 0.14);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.big-line {
  display: block;
  margin-top: 14px;
  font-size: clamp(1.34rem, 2vw, 1.7rem);
  font-weight: 800;
}
.status-row-large {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.status-pill.online { color: #0f1a12; background: rgba(84, 208, 138, 0.92); border-color: transparent; }
.status-pill.offline { color: #fff; background: rgba(255, 123, 123, 0.22); border-color: rgba(255, 123, 123, 0.22); }
.link-stack {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}
.link-stack a,
.footer-links a,
.section-link {
  color: rgba(245, 247, 251, 0.82);
  transition: color 0.25s ease;
}
.link-stack a:hover,
.footer-links a:hover,
.section-link:hover { color: var(--gold); }

.section {
  position: relative;
  padding: 88px 0;
}
.section-lifted { margin-top: -34px; z-index: 2; }
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}
.section-heading-split { align-items: center; }
.section-copy {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.8;
}
.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.owners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.owner-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
}
.owner-card img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 10px;
  image-rendering: pixelated;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}
.owner-card h3 {
  margin: 10px 0 8px;
  font-size: 1.45rem;
}
.owner-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.role-badge,
.badge,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.role-badge { color: var(--gold); background: rgba(240, 165, 47, 0.1); border-color: rgba(240, 165, 47, 0.14); }
.badge.featured { background: rgba(240, 165, 47, 0.14); color: var(--gold); border-color: rgba(240, 165, 47, 0.16); }
.badge.live { background: rgba(84, 208, 138, 0.16); color: #9bf0bb; border-color: rgba(84, 208, 138, 0.18); }
.badge.closed { background: rgba(255,123,123,0.14); color: #ffb2b2; border-color: rgba(255,123,123,0.16); }
.badge.soon { background: rgba(121,169,222,0.14); color: #cde0f5; border-color: rgba(121,169,222,0.16); }
.list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.list-grid-wide { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card h3,
.discord-copy-card h3,
.rule-section h2,
.intro-card h2 {
  margin: 14px 0 10px;
}
.card p,
.discord-copy-card p,
.intro-card p,
.rule-section p { line-height: 1.75; }
.meta-row,
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tags-row { margin-top: 16px; }
.price {
  margin: 10px 0 14px;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--gold);
}
.empty-state {
  grid-column: 1 / -1;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.12);
  color: var(--muted);
}


.announcement-card {
  position: relative;
}
.announcement-card-expandable {
  cursor: pointer;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.announcement-card-expandable:hover,
.announcement-card-expandable:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(240, 165, 47, 0.24);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.48);
  outline: none;
}
.announcement-preview {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.announcement-card-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.announcement-read-more {
  color: var(--gold);
  font-weight: 800;
}

body.modal-open {
  overflow: hidden;
}
.announcement-modal[hidden] {
  display: none;
}
.announcement-modal {
  position: fixed;
  inset: 0;
  z-index: 1500;
}
.announcement-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.72);
  backdrop-filter: blur(10px);
}
.announcement-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 32px));
  max-height: min(82vh, 900px);
  margin: min(10vh, 80px) auto 0;
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.98), rgba(7, 10, 16, 0.98));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.56);
  overflow: hidden;
}
.announcement-modal-scroll {
  padding: 34px;
  max-height: min(82vh, 900px);
  overflow: auto;
}
.announcement-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.24s ease, transform 0.24s ease;
}
.announcement-modal-close:hover {
  background: rgba(240, 165, 47, 0.14);
  transform: rotate(90deg);
}
.announcement-modal h2 {
  margin: 16px 0 18px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.announcement-modal-content p {
  margin: 0;
  color: var(--text);
  line-height: 1.95;
  white-space: normal;
}
.announcement-modal-tags {
  margin-top: 22px;
}

@media (max-width: 720px) {
  .announcement-modal-dialog {
    width: min(100% - 18px, 100%);
    margin-top: 18px;
    max-height: calc(100vh - 36px);
    border-radius: 22px;
  }
  .announcement-modal-scroll {
    padding: 24px 18px 22px;
    max-height: calc(100vh - 36px);
  }
  .announcement-modal-close {
    top: 12px;
    right: 12px;
  }
}


.page-hero {
  min-height: 48vh;
  display: flex;
  align-items: center;
  padding: 138px 0 82px;
}
.page-hero-content {
  text-align: center;
}
.page-hero-content p { max-width: 760px; }

.discord-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}
.discord-widget-shell,
.discord-widget-panel,
.discord-fallback {
  min-height: 420px;
}
.discord-widget-panel,
.discord-fallback {
  overflow: hidden;
}
.discord-widget-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}
.discord-fallback {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
  background:
    radial-gradient(circle at top, rgba(121,169,222,0.14), transparent 28%),
    linear-gradient(180deg, rgba(13, 18, 29, 0.95), rgba(8, 11, 18, 0.95));
}
.discord-fallback-top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.discord-fallback-top img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}
.discord-points {
  display: grid;
  gap: 12px;
  color: var(--muted);
}
.discord-points span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.discord-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(240,165,47,0.12);
}

.rules-layout {
  display: grid;
  gap: 18px;
}
.rule-section ol {
  margin: 14px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.75;
}
.rule-section li + li { margin-top: 10px; }

.site-footer {
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(5, 7, 11, 0.78);
}
.footer-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 24px;
  align-items: start;
}
.footer-shell h3 { margin: 0 0 12px; }
.footer-shell p { margin: 0; color: var(--muted); line-height: 1.7; }
.footer-links {
  display: grid;
  gap: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-130%); }
  52% { transform: translateX(125%); }
}
@keyframes bannerDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(0, -14px, 0); }
}

@media (max-width: 1100px) {
  .header-shell {
    grid-template-columns: auto 1fr auto;
    padding: 14px 0;
  }
  .status-bar { order: 3; justify-self: start; padding: 0; }
  .header-brand { order: 1; }
  .menu-toggle { order: 2; display: inline-flex; }
  .main-nav {
    order: 4;
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 0 6px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,0.04); }
  .hero-panels,
  .split-layout,
  .discord-grid,
  .footer-shell,
  .list-grid,
  .list-grid-wide,
  .owners-grid {
    grid-template-columns: 1fr;
  }
  .footer-links { gap: 8px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1220px); }
  .site-header { padding-bottom: 6px; }
  .header-shell { gap: 14px; }
  .header-brand img { width: 48px; height: 48px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 112px; min-height: auto; }
  .hero-card { padding: 26px 18px 24px; }
  .hero-actions,
  .compact-actions { justify-content: stretch; }
  .button { width: 100%; }
  .section { padding: 72px 0; }
  .section-heading,
  .section-heading-split {
    flex-direction: column;
    align-items: flex-start;
  }
  .owner-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .owner-card img { margin: 0 auto; }
  .page-hero { min-height: 42vh; padding: 126px 0 70px; }
  .status-bar { font-size: 0.78rem; min-width: 0; }
}


/* Footer refresh */
.site-footer {
  padding: 8px 0 42px;
  background: linear-gradient(180deg, rgba(5,7,11,0) 0%, rgba(5,7,11,0.75) 24%, rgba(5,7,11,0.96) 100%);
}
.footer-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.32), rgba(255,255,255,0));
  margin-bottom: 28px;
}
.footer-shell.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand-block h3 {
  margin: 0 0 8px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 900;
  letter-spacing: 0.03em;
}
.footer-brand-block p {
  margin: 0;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}
.footer-socials {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  color: #f7f8fb;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 38px rgba(0,0,0,0.22);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(240,165,47,0.3);
  background: rgba(255,255,255,0.08);
}
.social-link svg {
  width: 20px;
  height: 20px;
}
.social-link.discord svg { color: #8ea1e1; }
.social-link.youtube svg { color: #ff5f5f; }
.owner-card {
  grid-template-columns: 116px 1fr;
  min-height: 176px;
}
.owner-card img {
  width: 116px;
  height: 116px;
  padding: 12px;
  border-radius: 18px;
  image-rendering: pixelated;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 22px 36px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
  .footer-shell.footer-legal {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 640px) {
  .footer-socials {
    width: 100%;
  }
  .social-link {
    flex: 1 1 auto;
    justify-content: center;
  }
}


/* Home about section refresh */
.about-section {
  padding-top: 92px;
  padding-bottom: 28px;
}
.about-heading {
  margin-bottom: 28px;
}
.about-title-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-title-row .eyebrow {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 2rem);
  letter-spacing: 0.02em;
  color: #ffffff;
}
.about-accent {
  width: 58px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #ffcc6f);
  box-shadow: 0 0 20px rgba(240,165,47,0.28);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}
.about-video-card,
.about-copy-card {
  position: relative;
}
.video-shell {
  overflow: hidden;
  border-radius: 0;
  background: #0d1017;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}
.video-shell::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.video-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.about-copy-card {
  padding: 14px 0;
}
.about-lead {
  margin: 0 0 24px;
  color: #eef2f8;
  font-size: clamp(1.02rem, 1.32vw, 1.2rem);
  line-height: 1.85;
}
.about-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #f0f3f8;
  font-size: 1.02rem;
  text-align: center;
}
.about-subtitle::before,
.about-subtitle::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.54), rgba(255,255,255,0));
}
.about-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #d9e0ea;
}
.about-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.68;
}
.about-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}
.about-cta {
  margin: 22px 0 0;
  color: #ffffff;
  font-weight: 700;
}

/* Footer v2 */
.site-footer {
  padding: 26px 0 42px;
  border-top: 0;
  background: linear-gradient(180deg, rgba(5,7,11,0.78) 0%, rgba(5,7,11,0.96) 100%);
}
.footer-top-shell {
  padding-top: 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) minmax(220px, 1fr) minmax(200px, 0.9fr);
  align-items: center;
  gap: 0;
}
.footer-logo-panel,
.footer-column {
  min-height: 286px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 30px;
}
.footer-column {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-column + .footer-column,
.footer-logo-panel + .footer-column {
  border-left: 1px solid rgba(255,255,255,0.28);
}
.footer-logo-panel img {
  width: min(220px, 100%);
  object-fit: contain;
  filter: drop-shadow(0 16px 34px rgba(0,0,0,0.35));
}
.footer-column h3 {
  margin: 0 0 28px;
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #f7f8fb;
}
.footer-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 26px 34px;
}
.footer-icon-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #dfe4ec;
  transition: transform 0.24s ease, color 0.24s ease;
}
.footer-icon-link:hover {
  transform: translateY(-3px);
  color: #ffffff;
}
.footer-icon-link svg {
  width: 42px;
  height: 42px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}
.footer-icon-link.discord svg { color: #9baeff; }
.footer-icon-link.youtube svg { color: #ff6c6c; }
.footer-nav {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.footer-nav a {
  color: #d6dde8;
  font-size: 1.05rem;
  transition: color 0.22s ease, transform 0.22s ease;
}
.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.footer-divider {
  height: 1px;
  width: 100%;
  background: rgba(255,255,255,0.26);
  margin: 6px 0 26px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-brand-block h3 {
  margin: 0 0 8px;
  font-size: clamp(1rem, 1.34vw, 1.14rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}
.footer-brand-block p {
  margin: 0;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
}
.footer-bottom-meta {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-logo-panel,
  .footer-column {
    min-height: auto;
    padding: 26px 0;
  }
  .footer-column + .footer-column,
  .footer-logo-panel + .footer-column {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,0.16);
  }
}

@media (max-width: 720px) {
  .about-section {
    padding-top: 72px;
  }
  .about-title-row {
    gap: 12px;
  }
  .about-title-row .eyebrow {
    font-size: 1.15rem;
  }
  .about-grid {
    gap: 26px;
  }
  .footer-social-grid {
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-nav {
    justify-items: center;
  }
}
