:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-card: #101010;
  --line: #232323;
  --line-soft: #1a1a1a;
  --text: #f2f2f2;
  --muted: #b5b5b5;
  --accent: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  --radius: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 28%),
    linear-gradient(180deg, #070707 0%, #050505 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--text);
  text-decoration: none;
}

video {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #000;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

.brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 15px;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

.hero {
  padding: 64px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section h2 {
  margin: 0 0 14px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  font-size: clamp(40px, 7vw, 78px);
}

.hero-text,
.page-subtitle {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #d9d9d9;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(255,255,255,0.12);
}

.btn-secondary {
  background: transparent;
  color: #fff;
}

.btn-secondary:hover {
  border-color: #4a4a4a;
  background: rgba(255,255,255,0.03);
}

.stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.stats li {
  min-width: 130px;
  padding: 14px 16px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.stats span {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.stats small {
  color: var(--muted);
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-art {
  overflow: hidden;
  padding: 10px;
}

.hero-art img,
.gallery-card img,
.tall-card img {
  width: 100%;
  border-radius: 14px;
}

.section {
  padding: 34px 0 68px;
}

.alt-bg {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.005));
  border-top: 1px solid rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.section-grid,
.art-grid,
.cards-2,
.cards-3,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.section-grid,
.art-grid,
.cards-2 {
  grid-template-columns: repeat(2, 1fr);
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(2, 1fr);
}

.section-head {
  margin-bottom: 26px;
}

.center-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.emblem {
  max-width: 300px;
  width: 100%;
  opacity: 0.92;
}

.game-card h3,
.card h3,
.card h2 {
  margin-top: 0;
}

.clean-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.clean-list li + li {
  margin-top: 8px;
}

.tall-card {
  overflow: hidden;
}

.page-main {
  min-height: 60vh;
}

.page-hero {
  padding: 54px 0 18px;
}

.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--line-soft);
  background: #040404;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  padding: 38px 0 18px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-top: 0;
}

.footer-grid p,
.footer-links a {
  color: var(--muted);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding: 16px 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
}

.footer-anchors {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-anchors a {
  color: var(--muted);
}

.footer-anchors a:hover,
.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .art-grid,
  .cards-2,
  .cards-3,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 38px;
  }

  .header-inner {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav {
    justify-content: center;
  }

  .hero {
    padding-top: 36px;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .stats li {
    width: 100%;
  }

  .card {
    padding: 18px;
  }
}
:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --panel: #101010;
  --panel-2: #141414;
  --line: #202020;
  --text: #f3f3f3;
  --muted: #a5a5a5;
  --accent: #ffffff;
  --accent-soft: #d9d9d9;
  --danger: #d92323;
  --shadow: 0 12px 40px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top, #101010 0%, #050505 35%, #030303 100%);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  height: 38px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #ddd;
  font-size: 14px;
  transition: .2s ease;
}

.nav a:hover,
.nav a.active {
  color: #fff;
}

.auth-trigger {
  border: 1px solid rgba(255,255,255,.12);
  background: #111;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.auth-trigger:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,.22);
}

/* PAGE INTRO */
.page-hero {
  padding: 56px 0 24px;
}

.page-hero__eyebrow {
  color: #bfbfbf;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.page-hero p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

/* PANELS / CARDS */
.panel {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section {
  padding: 22px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 28px;
}

.section-subtitle {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* MEDIA PAGE */
.media-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  padding-bottom: 50px;
}

.media-main,
.media-sidebar {
  min-width: 0;
}

.media-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: #101010;
  border: 1px solid rgba(255,255,255,.08);
  color: #ddd;
  font-size: 13px;
}

.chip.active {
  background: #fff;
  color: #000;
  font-weight: 700;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.media-card {
  overflow: hidden;
  position: relative;
}

.media-card__thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.media-card__thumb img,
.media-card__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__body {
  padding: 18px;
}

.media-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.meta-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #cfcfcf;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.media-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.media-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.media-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #c7c7c7;
  font-size: 13px;
}

.media-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.avatar-dot {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, #777);
}

/* Sidebar */
.side-box {
  padding: 20px;
}

.side-box + .side-box {
  margin-top: 18px;
}

.side-box h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.side-box p,
.side-box li {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.side-box ul {
  padding-left: 18px;
  margin: 0;
}

.fake-upload {
  display: grid;
  gap: 12px;
}

.fake-input,
.fake-textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  background: #0b0b0b;
  color: #fff;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

.fake-textarea {
  min-height: 110px;
  resize: vertical;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  transition: .2s ease;
}

.btn-primary {
  background: #fff;
  color: #000;
}

.btn-primary:hover {
  opacity: .92;
}

.btn-secondary {
  background: #121212;
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
}

.btn-secondary:hover {
  background: #181818;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 50px;
  padding: 24px 0 40px;
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-nav a {
  color: #c6c6c6;
  font-size: 14px;
}

/* MODAL AUTH */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 200;
}

.modal.is-open {
  display: block;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: min(920px, calc(100% - 28px));
  margin: 70px auto;
  background: #070707;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.auth-modal {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 580px;
}

.auth-visual {
  position: relative;
  background: #000;
  min-height: 100%;
}

.auth-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}

.auth-visual__logo {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 260px;
  max-width: calc(100% - 44px);
}

.auth-visual__copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.auth-visual__copy h3 {
  margin: 0 0 8px;
  font-size: 28px;
}

.auth-visual__copy p {
  margin: 0;
  color: #d0d0d0;
  line-height: 1.6;
}

.auth-panel {
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, #0d0d0d, #090909);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.45);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
}

.auth-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.auth-tab {
  flex: 1;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: #101010;
  color: #dcdcdc;
  cursor: pointer;
  font-weight: 700;
}

.auth-tab.active {
  background: #fff;
  color: #000;
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  margin: 0 0 8px;
  font-size: 28px;
}

.auth-form p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 14px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  color: #d0d0d0;
}

.form-input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.09);
  background: #0b0b0b;
  color: #fff;
  padding: 0 14px;
  font: inherit;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.form-note {
  margin-top: 18px;
  color: #8f8f8f;
  font-size: 12px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .media-layout {
    grid-template-columns: 1fr;
  }

  .auth-modal {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    min-height: 280px;
  }
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .nav {
    gap: 14px;
    flex-wrap: wrap;
  }

  .media-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
/* Unified header for all pages */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav a {
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

.auth-trigger {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #111111;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}

.auth-trigger:hover {
  background: #1b1b1b;
  border-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 760px) {
  .site-header__inner {
    min-height: auto;
    padding: 14px 0;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .brand,
  .nav,
  .auth-trigger {
    justify-self: center;
  }

  .nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .brand img {
    height: 34px;
  }
}
.media-card__thumb--video {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #000;
  overflow: hidden;
}

.guild-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}