:root {
  color-scheme: dark;
  --orange: #ff820e;
  --orange-light: #ffa24d;
  --ink: #0b0b0d;
  --panel: #151519;
  --text: #f2f2f2;
  --muted: #aaa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: "Barlow", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  color: var(--orange-light);
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

@keyframes ud-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes ud-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes ud-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes ud-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}

@keyframes ud-scroll-dot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}

@keyframes ud-sheen {
  0% { transform: translateX(-120%); }
  60%, 100% { transform: translateX(220%); }
}

html {
  scroll-padding-top: 80px;
}

body.age-gate-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--orange);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

.skip-link:focus {
  color: var(--ink);
  transform: translateY(0);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow-y: auto;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 15%, rgba(255, 130, 14, .16), transparent 36%),
    rgba(8, 8, 10, .985);
  transition: opacity .35s ease, visibility .35s ease;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__glow {
  position: absolute;
  width: min(720px, 90vw);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 130, 14, .16);
  border-radius: 50%;
  box-shadow: 0 0 140px rgba(255, 130, 14, .08) inset;
  pointer-events: none;
}

.age-gate__card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(30px, 6vw, 54px);
  border: 1px solid rgba(255, 130, 14, .42);
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(29, 23, 18, .98), rgba(15, 15, 18, .98) 58%);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .75), 0 0 50px rgba(255, 130, 14, .1);
  text-align: center;
}

.age-gate__card::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: 14px;
  pointer-events: none;
}

.age-gate__logo {
  display: block;
  width: 148px;
  height: auto;
  margin: 0 auto 26px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, .5));
}

.age-gate__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffbd7d;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.age-gate__badge span {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 29px;
  border: 2px solid #ff5a52;
  border-radius: 6px;
  color: #ff7770;
  letter-spacing: 0;
}

.age-gate h1 {
  margin: 20px 0 12px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 7vw, 54px);
  font-style: italic;
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
}

.age-gate__card > p:not(.age-gate__note) {
  max-width: 440px;
  margin: 0 auto;
  color: #c7c7c7;
  font-size: 17px;
  line-height: 1.6;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

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

.button--primary {
  border: 1px solid var(--orange);
  background: var(--orange);
  box-shadow: 0 9px 28px rgba(255, 130, 14, .3);
  color: var(--ink);
}

.button--primary:hover {
  background: var(--orange-light);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .04);
  color: #eee;
}

.button--ghost:hover {
  border-color: rgba(255, 130, 14, .7);
  color: #fff;
}

.age-gate__note {
  margin: 18px 0 0 !important;
  color: #777 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.site-nav__toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 7px;
  background: rgba(11, 11, 13, .76);
  cursor: pointer;
}

.site-nav__toggle > span:not(.sr-only) {
  width: 21px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.site-nav__toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.site-nav__toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.discord-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(88, 101, 242, .55);
  border-radius: 7px;
  background: rgba(88, 101, 242, .13);
  color: #cdd2ff !important;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.discord-nav-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

.discord-nav-link:hover {
  border-color: #7781ff;
  background: #5865f2;
  color: #fff !important;
  transform: translateY(-1px);
}

.gallery-item {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: #121215;
  box-shadow: 0 16px 42px rgba(0, 0, 0, .42);
}

.season-stats {
  overflow: hidden;
  border: 1px solid rgba(255, 130, 14, .25);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(255, 130, 14, .07), rgba(255, 255, 255, .025));
}

.season-stats__header {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 16px 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.season-stats__eyebrow,
.season-stats__header strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.season-stats__eyebrow {
  margin-bottom: 2px;
  color: #777;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}

.season-stats__header strong {
  color: #fff;
  font-size: 23px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.season-stats__controls {
  display: flex;
  gap: 7px;
}

.season-stats__controls button {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: #ddd;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.season-stats__controls button:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.season-stats__controls button:first-child:hover {
  transform: translateX(-2px);
}

.season-stats__controls button:last-child:hover {
  transform: translateX(2px);
}

.season-stats__viewport {
  overflow: hidden;
}

.season-stats__track {
  display: flex;
  transform: translateX(-100%);
  transition: transform .48s cubic-bezier(.16, 1, .3, 1);
}

.season-stats__panel {
  min-width: 100%;
  padding: 20px;
}

.season-stats__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.season-stats__metrics strong,
.season-stats__metrics span {
  display: block;
}

.season-stats__metrics strong {
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(31px, 4vw, 42px);
  font-weight: 800;
  line-height: 1;
}

.season-stats__metrics span {
  margin-top: 5px;
  color: #969699;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.season-stats__panel p {
  margin: 15px 0 0;
  color: #68686b;
  font-size: 12px;
}

.gallery-item--feature {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 3;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}

.gallery-trigger {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: default;
}

.gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(1.06);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(14px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 130, 14, .12), transparent 42%),
    rgba(4, 4, 6, .94);
  backdrop-filter: blur(18px);
  cursor: default;
}

.gallery-lightbox__window {
  position: relative;
  width: min(1440px, 100%);
  max-height: 94vh;
  background: transparent;
  transform: translateY(24px) scale(.94);
  opacity: 0;
  transition: transform .42s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
}

.gallery-lightbox.is-open .gallery-lightbox__window {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.gallery-lightbox__close {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.gallery-lightbox__close:hover {
  border-color: var(--orange);
  background: rgba(255, 130, 14, .12);
  transform: rotate(90deg);
}

.gallery-lightbox__close span::before,
.gallery-lightbox__close span::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
}

.gallery-lightbox__close span::before {
  transform: rotate(45deg);
}

.gallery-lightbox__close span::after {
  transform: rotate(-45deg);
}

.gallery-lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  min-height: 0;
  padding: 0;
}

.gallery-lightbox__image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: #050506;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .75);
}

.gallery-lightbox__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: inherit;
  pointer-events: none;
}

.gallery-lightbox__image-frame img {
  display: block;
  width: 100%;
  max-height: 90vh;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  opacity: 1;
  transform: scale(1);
  transition: opacity .18s ease, transform .36s cubic-bezier(.16, 1, .3, 1);
}

.gallery-lightbox__image-frame img.is-changing {
  opacity: 0;
  transform: scale(.985);
}

.gallery-lightbox__arrow {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  cursor: pointer;
  font-size: 20px;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.gallery-lightbox__arrow:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
}

.gallery-lightbox__arrow--previous:hover {
  transform: translateX(-3px);
}

.gallery-lightbox__arrow--next:hover {
  transform: translateX(3px);
}


.legal-page {
  min-height: 100vh;
  padding: 48px 24px 80px;
  background: radial-gradient(circle at 50% 0, rgba(255, 130, 14, .12), transparent 33%), var(--ink);
}

.legal-page__inner {
  max-width: 760px;
  margin: 0 auto;
}

.legal-page__logo {
  width: 150px;
  height: auto;
}

.legal-page h1,
.legal-page h2 {
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.legal-page h1 {
  margin: 55px 0 10px;
  font-size: clamp(42px, 8vw, 68px);
  font-style: italic;
  line-height: 1;
}

.legal-page h2 {
  margin-top: 36px;
  color: var(--orange);
}

.legal-page p,
.legal-page li {
  color: #bbb;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 820px) {
  .site-nav {
    padding: 12px 18px !important;
    background: rgba(11, 11, 13, .92) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom-color: rgba(255, 255, 255, .08) !important;
  }

  .site-nav__toggle {
    display: flex;
  }

  .site-nav__links {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    display: none !important;
    flex-direction: column;
    align-items: stretch !important;
    gap: 5px !important;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    background: rgba(14, 14, 17, .985);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .55);
  }

  .site-nav__links.is-open {
    display: flex !important;
  }

  .site-nav__links a {
    justify-content: center;
    padding: 12px !important;
    text-align: center;
  }

  .patreon-nav-link {
    height: auto !important;
  }

  .hero-logo {
    width: min(86vw, 460px) !important;
    height: auto !important;
  }

  section {
    padding: 82px 22px !important;
  }

  footer {
    padding-right: 22px !important;
    padding-left: 22px !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: 190px !important;
  }

  .gallery-grid > div {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }

  .gallery-grid > div:first-child {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  .gallery-lightbox {
    padding: 10px;
  }

  .gallery-lightbox__stage {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    padding: 12px 0;
  }

  .gallery-lightbox__arrow {
    width: 38px;
    height: 38px;
  }

}

@media (max-width: 540px) {
  .age-gate {
    padding: 14px;
  }

  .age-gate__card {
    padding: 30px 22px;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }

  .age-gate__logo {
    width: 122px;
    margin-bottom: 18px;
  }

  .gallery-grid {
    display: flex !important;
    flex-direction: column;
  }

  .gallery-grid > div {
    min-height: 210px;
  }

  .season-stats__panel {
    padding: 17px;
  }

  .season-stats__metrics {
    gap: 9px;
  }

  .season-stats__metrics strong {
    font-size: 30px;
  }

  .season-stats__metrics span {
    font-size: 10px;
  }

  .gallery-lightbox__window {
    border-radius: 13px;
  }

  .gallery-lightbox__close {
    width: 38px;
    height: 38px;
  }

  .gallery-lightbox__close span::before,
  .gallery-lightbox__close span::after {
    top: 17px;
    left: 9px;
  }

  .gallery-lightbox__stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
  }

  .gallery-lightbox__image-frame {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-lightbox__arrow {
    width: 100%;
    border-radius: 8px;
  }

  .gallery-lightbox__arrow--previous {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-lightbox__arrow--next {
    grid-column: 2;
    grid-row: 2;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
