@import url("fonts.css");

:root {
  --bg: #0f0f0f;
  --bg-deep: #080808;
  --bg-panel: #141414;
  --void: #0f0f0f;
  --void-2: #141414;
  --ink: #f5f5f5;
  --muted: #9ca3af;
  --header-h: 100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --pride: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982, #5bcefa);
  --accent: #5bcefa;
  --accent-2: #93d5ff;
  --glow: 0 0 24px rgba(91, 206, 250, 0.4), 0 0 48px rgba(36, 64, 142, 0.22);
  --hero-a: rgba(91, 206, 250, 0.2);
  --hero-b: rgba(36, 64, 142, 0.22);
  --hero-c: rgba(255, 140, 0, 0.18);
  --chip: var(--pride);
  --border: rgba(91, 206, 250, 0.22);
  --border-strong: rgba(91, 206, 250, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg-deep);
  color: var(--ink);
  font-family: var(--font-body);
}

body {
  padding-top: var(--header-h);
  transition: background 0.55s var(--ease);
}

body {
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(91, 206, 250, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 45% at 5% 45%, rgba(228, 3, 3, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 45% at 95% 55%, rgba(91, 206, 250, 0.08), transparent 50%),
    linear-gradient(165deg, #111111 0%, #0a0a0a 45%, #080808 100%);
}

body.subscribe-page {
  padding-top: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

[hidden] {
  display: none !important;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: visible;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

.header__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 28px 0 36px;
  flex-shrink: 0;
  overflow: visible;
}

.header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982, #5bcefa) 1;
  backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.45s var(--ease);
}

.header.is-mega-open::before {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
}

.header > * {
  position: relative;
  z-index: 2;
}

.header__side {
  display: flex;
  align-items: center;
  min-width: 0;
}

.header__side--left {
  flex: 0 0 auto;
  justify-content: flex-start;
  gap: 12px;
  z-index: 2;
}

.header__side--right {
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  z-index: 10;
  position: relative;
  overflow: visible;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  height: 40px;
  padding: 0 18px;
  border-radius: 10px;
  background: var(--pride);
  color: #000;
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(255, 79, 216, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.header-cta:hover {
  transform: translateY(-1px);
  color: #000;
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.38), 0 0 48px rgba(91, 206, 250, 0.22);
}

.header__side--left .brand {
  margin-left: 12px;
}

.header__center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 0;
  overflow: visible;
  z-index: 3;
  pointer-events: none;
}

.header__center > * {
  pointer-events: auto;
}

.header__center .nav * {
  pointer-events: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  overflow: visible;
}

.nav--left,
.nav--right {
  justify-content: center;
}

.nav a,
.nav-drop__btn {
  color: var(--muted);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 6px;
  white-space: nowrap;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-drop__btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav-drop__btn::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.75;
}

.nav a:hover {
  color: var(--accent);
  background: rgba(91, 206, 250, 0.22);
}

.nav-drop__btn:hover,
.nav-drop.is-open .nav-drop__btn {
  color: var(--accent);
  background: transparent;
}

.nav-drop {
  position: relative;
  flex: 0 0 auto;
  z-index: 2;
}

.nav-drop.is-open,
.nav-drop:hover,
.nav-drop:focus-within {
  z-index: 100;
}

.nav-drop__menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  min-width: 12rem;
  padding: 8px;
  border-radius: 14px;
  background: #141414;
  border: 1px solid rgba(91, 206, 250, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  isolation: isolate;
}

.nav-drop:hover .nav-drop__menu:not(.nav-drop__menu--mega),
.nav-drop:focus-within .nav-drop__menu:not(.nav-drop__menu--mega),
.nav-drop.is-open .nav-drop__menu:not(.nav-drop__menu--mega) {
  display: flex;
}

.nav-drop__menu:not(.nav-drop__menu--mega)::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: -12px;
  height: 12px;
}

.nav-drop__menu a {
  display: block;
  text-align: center;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 11px;
  border-radius: 10px;
  background: #141414;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-drop__menu a:hover {
  background: rgba(91, 206, 250, 0.18);
  color: var(--accent);
}

.header__mega {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  pointer-events: none;
  transition: grid-template-rows 0.42s var(--ease);
}

.header__mega-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  min-height: 0;
  padding: 0 36px;
  opacity: 0;
  transition: opacity 0.28s var(--ease), padding 0.42s var(--ease);
}

.header.is-mega-open .header__mega {
  grid-template-rows: 1fr;
  pointer-events: auto;
}

.header.is-mega-open .header__mega-inner {
  padding: 14px 36px 18px;
  opacity: 1;
}

.nav-drop__categories {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 12px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.nav-drop__view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 0;
  width: min(100%, 300px);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(91, 206, 250, 0.45);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-drop__view-all:hover {
  background: rgba(91, 206, 250, 0.14);
  color: var(--accent);
}

.category-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  text-decoration: none;
  border: 1px solid rgba(91, 206, 250, 0.22);
  background: #0a0a0a;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.category-card--tile {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 206, 250, 0.5);
  box-shadow: var(--glow);
}

.category-card--tile:hover {
  transform: translateY(-2px);
}

.nav-drop__categories .category-card:hover {
  box-shadow: none;
}

.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.category-card__label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 14px 12px 32px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 72%, transparent 100%);
}

.category-card--tile .category-card__label {
  padding: 10px 8px 24px;
}

.category-card__label h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}

.category-card--tile .category-card__label h3 {
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.categories-page {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.categories-page__hero {
  position: relative;
  padding: 56px 24px 48px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91, 206, 250, 0.2), transparent 60%),
    #0a0a0a;
  border-bottom: 1px solid rgba(91, 206, 250, 0.18);
}

.categories-page__hero-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.categories-page__hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  letter-spacing: 0.06em;
}

.categories-page__hero p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.categories-page__body {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.categories-page__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: 0.06em;
}

.categories-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.categories-page__more {
  display: block;
  margin: 28px auto 0;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(91, 206, 250, 0.45);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.categories-page__more:hover {
  background: rgba(91, 206, 250, 0.14);
  color: var(--accent);
}

.categories-page__more[hidden] {
  display: none;
}

.drawer-categories-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ffffff14;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 0;
  text-align: left;
}

.drawer-categories-link::after {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid currentColor;
  opacity: 0.7;
}

.mobile-drawer__panel--categories[hidden] {
  display: none !important;
}

.drawer-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 8px;
}

.drawer-categories-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(91, 206, 250, 0.35);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-drop__categories {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .categories-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .header__mega {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .categories-page__grid {
    grid-template-columns: 1fr;
  }
}

.header-search {
  display: flex;
  align-items: center;
  height: 40px;
  width: 40px;
  flex: 0 0 40px;
  position: relative;
  border-radius: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.header-search.is-open {
  width: 40px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.header-search.is-open:focus-within,
.header-search.is-open:hover {
  border-color: transparent;
  box-shadow: none;
}

.header-search__input {
  flex: 1 1 auto;
  min-width: 0;
  width: 0;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  outline: none;
  pointer-events: none;
  transition: opacity 0.2s var(--ease);
}

.header-search.is-open .header-search__input {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(320px, calc(100vw - 48px));
  height: 44px;
  opacity: 1;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, #ffffff22);
  background: rgba(20, 20, 20, 0.98);
  box-shadow: var(--glow);
  pointer-events: auto;
  z-index: 120;
}

.header-search.is-open:focus-within .header-search__input,
.header-search.is-open:hover .header-search__input {
  border-color: color-mix(in srgb, var(--accent) 55%, white);
  box-shadow: var(--glow);
}

.header-search__input::placeholder {
  color: var(--muted);
}

.header-search__btn {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.header-search__btn svg {
  width: 17px;
  height: 17px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  text-decoration: none;
  color: inherit;
}

.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  user-select: none;
}

.logo__mark {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--chip);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo__studios {
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 0.38em;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.92;
}

.logo--header {
  font-size: 22px;
}

.logo--header .logo__studios {
  margin-top: 1px;
  font-size: 7px;
  letter-spacing: 0.28em;
}

.logo--hero {
  font-size: clamp(48px, 12vw, 96px);
}

.logo--hero .logo__studios {
  margin-top: 6px;
  font-size: clamp(11px, 2.2vw, 16px);
  letter-spacing: 0.42em;
}

.logo--avatar {
  font-size: 36px;
}

.logo--avatar .logo__studios {
  font-size: 9px;
  letter-spacing: 0.3em;
}

.logo--card {
  font-size: 11px;
}

.logo--card .logo__studios {
  margin-top: 1px;
  font-size: 4px;
  letter-spacing: 0.22em;
}

.logo--social {
  font-size: 12px;
}

.logo--social .logo__studios {
  margin-top: 1px;
  font-size: 4.5px;
  letter-spacing: 0.2em;
}

.logo--gate {
  font-size: clamp(36px, 10vw, 48px);
}

.logo--gate .logo__studios {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.32em;
}

.logo--subscribe {
  font-size: 28px;
}

.logo--subscribe .logo__studios {
  font-size: 9px;
  letter-spacing: 0.32em;
}

.footer__logo .logo {
  font-size: 18px;
}

.footer__logo .logo__studios {
  font-size: 6px;
  letter-spacing: 0.26em;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 8px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
}

.menu-toggle span:nth-child(1),
.menu-toggle span:nth-child(2),
.menu-toggle span:nth-child(3) {
  transform-origin: center;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

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

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

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

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  pointer-events: none;
}

body.drawer-open .mobile-nav,
.mobile-nav.is-open {
  display: block;
  pointer-events: auto;
}

.mobile-nav__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(5, 4, 10, 0.82);
  cursor: pointer;
}

.mobile-drawer {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, #181818 0%, #0f0f0f 100%);
  border-bottom: 2px solid transparent;
  border-image: var(--pride) 1;
  padding: 8px 18px 28px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.75);
}

.mobile-drawer__panel--main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 18px;
}

.mobile-drawer__panel--live[hidden] {
  display: none !important;
}

.mobile-drawer a,
.drawer-live-link,
.drawer-live-back {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid #ffffff14;
}

.drawer-live-link,
.drawer-live-back {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #ffffff14;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.drawer-live-link::after {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid currentColor;
  opacity: 0.7;
}

.drawer-live-back::before {
  content: "";
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-right: 5px solid currentColor;
  opacity: 0.7;
}

.drawer-cta {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--pride);
  color: #000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 0;
  box-shadow: 0 0 20px rgba(255, 79, 216, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.drawer-cta:hover {
  transform: translateY(-1px);
  color: #000;
  box-shadow: 0 0 24px rgba(255, 79, 216, 0.38), 0 0 48px rgba(91, 206, 250, 0.22);
}

.mobile-drawer .drawer-cta,
.mobile-drawer .drawer-cta:hover {
  color: #000;
  border-bottom: 0;
}

.mobile-drawer__panel--live nav {
  display: flex;
  flex-direction: column;
}

.mobile-search {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  padding: env(safe-area-inset-top, 0) 0 env(safe-area-inset-bottom, 0);
}

.mobile-search[hidden] {
  display: none !important;
}

.mobile-search__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid #ffffff14;
  background: #111111;
}

.mobile-search__back {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #ffffff10;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.mobile-search__back svg {
  width: 22px;
  height: 22px;
}

.mobile-search__form {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: #ffffff10;
  border: 1px solid #ffffff18;
}

.mobile-search__input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 16px;
  outline: none;
}

.mobile-search__input::placeholder {
  color: var(--muted);
}

.mobile-search__clear {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--accent);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 0 0 8px;
}

.mobile-search__label {
  margin: 0;
  padding: 16px 18px 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-search__results {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 12px 24px;
}

.mobile-search__item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 10px;
  margin: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.mobile-search__item:active,
.mobile-search__item:hover {
  background: #ffffff0c;
}

.mobile-search__thumb {
  width: 112px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
}

.mobile-search__meta h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
}

.mobile-search__meta p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}

.mobile-search__empty {
  margin: 0;
  padding: 24px 18px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

body.search-open {
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slideshow-track {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease), transform 8s linear;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__slideshow-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.55) 0%, rgba(8, 8, 8, 0.72) 45%, rgba(8, 8, 8, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(91, 206, 250, 0.12), transparent 60%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__slideshow-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 206, 250, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.55);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero__slideshow-btn:hover {
  background: rgba(20, 20, 20, 0.85);
  border-color: rgba(91, 206, 250, 0.55);
}

.hero__slideshow-btn svg {
  width: 20px;
  height: 20px;
}

.hero__slideshow-btn--prev {
  left: 18px;
}

.hero__slideshow-btn--next {
  right: 18px;
}

.hero__slideshow-dots {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.hero__slideshow-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__slideshow-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.hero__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--pride);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__tagline {
  margin: 18px 0 0;
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--muted);
  max-width: 28rem;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue svg {
  width: 22px;
  height: 22px;
  animation: bob 1.8s var(--ease) infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.videos {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 80px;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.videos__carousel {
  position: relative;
}

.videos__carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.videos__carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.videos__carousel-track .video-card {
  flex: 0 0 calc((min(1240px, 100vw - 40px) - 40px) / 3);
  width: calc((min(1240px, 100vw - 40px) - 40px) / 3);
}

.videos__carousel-btn {
  position: absolute;
  top: 38%;
  z-index: 2;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 206, 250, 0.35);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.72);
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.videos__carousel-btn:hover {
  background: rgba(20, 20, 20, 0.92);
  border-color: rgba(91, 206, 250, 0.55);
}

.videos__carousel-btn svg {
  width: 18px;
  height: 18px;
}

.videos__carousel-btn--prev {
  left: -8px;
}

.videos__carousel-btn--next {
  right: -8px;
}

.videos__carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.videos__carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.videos__carousel-dot.is-active {
  background: var(--accent);
  transform: scale(1.2);
}

.videos__all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 4px;
  min-width: min(100%, 280px);
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(91, 206, 250, 0.45);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.videos__all:hover {
  background: rgba(91, 206, 250, 0.14);
  color: var(--accent);
}

.videos__row,
.videos-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.videos-page {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.videos-page__hero {
  position: relative;
  padding: 56px 24px 48px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91, 206, 250, 0.18), transparent 60%),
    #0a0a0a;
  border-bottom: 1px solid rgba(91, 206, 250, 0.18);
}

.videos-page__hero-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.videos-page__hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  letter-spacing: 0.06em;
}

.videos-page__hero p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.videos-page__body {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.videos-page__title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  letter-spacing: 0.06em;
}

.videos__header h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: 0.08em;
}

.videos__eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  background: var(--pride);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.videos__empty {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.video-card__stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 1px solid rgba(91, 206, 250, 0.22);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  box-shadow: 0 8px 28px rgba(91, 206, 250, 0.1);
}

.video-card__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.6s var(--ease), filter 0.45s ease, opacity 0.45s ease;
}

.video-card__stage:hover .video-card__thumb {
  transform: scale(1.04);
}

.video-card__thumb--a {
  background: linear-gradient(135deg, #e40303 0%, #ff4fd8 42%, #732982 100%);
}

.video-card__thumb--b {
  background: linear-gradient(135deg, #ff8c00 0%, #ffed00 38%, #008026 100%);
}

.video-card__thumb--c {
  background: linear-gradient(135deg, #24408e 0%, #5bcefa 45%, #732982 100%);
}

.video-card__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(91, 206, 250, 0.45);
  box-shadow: var(--glow);
  transition: transform 0.25s var(--ease);
}

.video-card__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--ink);
}

.video-card__stage:hover .video-card__play {
  transform: scale(1.06);
}

.video-card__duration,
.video-card__hd {
  position: absolute;
  bottom: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b0a10;
  background: #f4f0eaf0;
  box-shadow: 0 2px 10px #0006;
}

.video-card__duration {
  right: 14px;
}

.video-card__hd {
  left: 14px;
}

.video-card__meta {
  padding: 14px 4px 0;
}

.video-card__meta h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.3;
}

.video-card__meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.photos-page {
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.photos-page__hero {
  position: relative;
  padding: 56px 24px 48px;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.92) 100%),
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91, 206, 250, 0.18), transparent 60%),
    #0a0a0a;
  border-bottom: 1px solid rgba(91, 206, 250, 0.18);
}

.photos-page__hero-inner {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.photos-page__hero h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 48px);
  letter-spacing: 0.06em;
}

.photos-page__hero p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.photos-page__body {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.photos-page__body .photos {
  width: 100%;
  margin: 0;
}

.photos {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

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

.photos__header h2 {
  margin: 6px 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 34px);
  letter-spacing: 0.08em;
}

.photos__eyebrow {
  margin: 0;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  background: var(--pride);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.photo-card__stage {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid rgba(91, 206, 250, 0.22);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
  box-shadow: 0 8px 28px rgba(91, 206, 250, 0.1);
}

.photo-card__thumb {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease), filter 0.45s ease, opacity 0.45s ease;
}

.photo-card__stage:hover .photo-card__thumb {
  transform: scale(1.04);
}

.photo-card__thumb--a {
  background: linear-gradient(160deg, #732982 0%, #ff4fd8 48%, #24408e 100%);
}

.photo-card__thumb--b {
  background: linear-gradient(160deg, #008026 0%, #5bcefa 42%, #ff8c00 100%);
}

.photo-card__thumb--c {
  background: linear-gradient(160deg, #e40303 0%, #ffed00 38%, #5bcefa 100%);
}

.photo-card__count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #0b0a10;
  background: #f4f0eaf0;
  box-shadow: 0 2px 10px #0006;
}

.photo-card__meta {
  padding: 14px 4px 0;
}

.photo-card__meta h3 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.3;
}

.photo-card__meta p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer {
  padding: 4rem 0 2rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
  font-size: 14px;
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, #e40303, #ff8c00, #ffed00, #008026, #24408e, #732982, #5bcefa) 1;
}

.footer__inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(9rem, 1.1fr) repeat(4, minmax(0, 1fr)) auto;
  gap: 1.5rem 1.25rem;
  align-items: start;
}

.footer h5 {
  margin: 0 0 1.5rem;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.footer__brand {
  margin-bottom: 1rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer__brand p {
  margin: 0;
  color: #6d6f71;
  font-size: 12px;
  line-height: 1.55;
}

.footer__col {
  margin-bottom: 1rem;
}

.footer__col ul,
.footer__social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__col li {
  margin-bottom: 0.5rem;
}

.footer__col a {
  position: relative;
  color: #6d6f71;
  text-decoration: none;
  transition: color 0.3s ease, padding 0.3s ease;
}

.footer__col a::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: auto;
  border-radius: 1rem;
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 0;
  background: #ed1c24;
  transform: scale(0);
  transition: transform 0.5s;
}

.footer__col a:hover {
  padding-left: 0.75rem;
  color: #fff;
}

.footer__col a:hover::before {
  transform: scale(1);
}

.footer__social ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: #000;
  transition: transform 0.3s ease;
}

.footer__social-btn svg {
  width: 18px;
  height: 18px;
}

.footer__social-btn--home {
  background: #43e660;
}

.footer__social-btn--x {
  background: #1da1f2;
}

.footer__social-btn:hover {
  transform: scale(1.1);
}

.footer__tags {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__tags a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 1.5rem;
  color: #6d6f71;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  background: transparent;
}

.footer__tags a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(313deg, #793cc8, #ed1c24, #3d4042, #3d4042);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.footer__tags a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__col,
  .footer__social {
    order: 1;
  }

  .footer__tags {
    order: 2;
  }

  .footer__brand {
    order: 3;
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer__brand p br {
    display: none;
  }
}

.toast {
  position: fixed;
  z-index: 30;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  padding: 12px 18px;
  border-radius: 999px;
  background: #111111ee;
  border: 1px solid color-mix(in srgb, var(--accent) 50%, white);
  box-shadow: var(--glow);
  font-size: 13px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(16px);
}

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

html.needs-age-gate body > :not(.age-gate) {
  visibility: hidden;
  pointer-events: none;
}

html.needs-age-gate .age-gate {
  display: grid !important;
}

.age-gate__panel {
  width: min(440px, 100%);
  padding: 36px 28px;
  border: 1px solid rgba(91, 206, 250, 0.35);
  border-radius: 24px;
  background: linear-gradient(180deg, #181818, #0f0f0f);
  text-align: center;
  box-shadow: var(--glow);
}

.age-gate__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.age-gate__kicker {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  background: var(--pride);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.age-gate__panel h1 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
}

.age-gate__panel p {
  color: var(--muted);
  line-height: 1.55;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.scroll-cue:hover {
  color: var(--accent);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 46px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
}

.btn--enter {
  border: 0;
  background: var(--accent);
  color: #0a0a0a;
}

.btn--leave {
  border: 1px solid #ffffff22;
  color: var(--muted);
  background: transparent;
}

body.gated,
body.drawer-open,
body.search-open {
  overflow: hidden;
}

body.gated > :not(.age-gate) {
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 1120px) {
  .header__bar {
    padding: 0 16px 0 20px;
  }

  .nav--left,
  .nav--right {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header__center {
    display: none;
  }

  .header__side--left .brand {
    margin-left: 8px;
  }

  .header-cta {
    height: 36px;
    padding: 0 14px;
    font-size: 9px;
  }

  .header-search,
  .header-search.is-open,
  .header-search.is-open:focus-within,
  .header-search.is-open:hover {
    width: 40px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
  }

  .header-search.is-open .header-search__input {
    display: none;
  }

  .header-search__btn {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: none;
  }

  .header-search__btn:focus,
  .header-search__btn:focus-visible {
    outline: none;
  }
}

@media (max-width: 1024px) {
  .videos__carousel-track .video-card {
    flex-basis: calc((min(1240px, 100vw - 40px) - 20px) / 2);
    width: calc((min(1240px, 100vw - 40px) - 20px) / 2);
  }

  .videos-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .videos {
    padding-top: 40px;
  }

  .videos__carousel-track .video-card {
    flex-basis: calc(min(1240px, 100vw - 40px));
    width: calc(min(1240px, 100vw - 40px));
  }

  .videos__carousel-btn--prev {
    left: 4px;
  }

  .videos__carousel-btn--next {
    right: 4px;
  }

  .hero__slideshow-btn {
    width: 36px;
    height: 36px;
  }

  .hero__slideshow-btn--prev {
    left: 10px;
  }

  .hero__slideshow-btn--next {
    right: 10px;
  }

  .hero__slideshow-dots {
    bottom: 64px;
  }

  .videos__row,
  .videos-page__grid,
  .photos__row {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

body.links-page {
  padding-top: 0;
}

.links {
  position: relative;
  z-index: 1;
  width: min(420px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 56px 0 36px;
}

.links__avatar {
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  margin: 0 0 25px;
  line-height: 1;
}

.links__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-align: center;
  background: var(--chip);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.links__handle {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.links__bio {
  margin: 8px 0 0;
  max-width: 22rem;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.links__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 16px;
}

.links__social {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: #ffffff10;
  border: 1px solid rgba(91, 206, 250, 0.28);
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.links__social svg {
  width: 16px;
  height: 16px;
}

.links__social img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.links__social--brand {
  background: #0f0f0f;
}

.links__social--brand:hover {
  background: #1a1a1a;
}

.links__social--x {
  background: #ffffff;
}

.links__social--x:hover {
  background: #ffffff;
}

.links__social:hover {
  transform: translateY(-2px) scale(1.06);
}

.links__social:not(.links__social--x):not(.links__social--brand):hover {
  background: rgba(91, 206, 250, 0.14);
}

.links__stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links__card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 12px 16px 12px 12px;
  border-radius: 18px;
  color: var(--ink);
  text-decoration: none;
  background: color-mix(in srgb, #181818 88%, transparent);
  border: 1px solid rgba(91, 206, 250, 0.28);
  box-shadow: 0 10px 28px #0006;
  backdrop-filter: blur(12px);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.links__card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 55%, white);
  box-shadow: var(--glow);
}

.links__card--soon {
  cursor: default;
  opacity: 0.58;
}

.links__card--soon:hover {
  transform: none;
  border-color: color-mix(in srgb, var(--accent) 28%, #ffffff14);
  box-shadow: 0 10px 28px #0006;
}

.links__card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
}

.links__card-icon svg {
  width: 18px;
  height: 18px;
}

.links__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.links__card-icon--brand {
  background: #0f0f0f;
  padding: 4px;
}

.links__card-icon--brand img {
  object-fit: contain;
}

.links__card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.links__card-text strong {
  font-size: 15px;
  font-weight: 700;
}

.links__card-text small {
  color: var(--muted);
  font-size: 12px;
}

.links__foot {
  margin-top: auto;
  padding-top: 36px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.links__foot a {
  color: inherit;
  text-decoration: none;
}

.subscribe-page .logo--subscribe .logo__studios {
  color: var(--ink);
}

.subscribe__kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--pride);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.subscribe__title {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 10vw, 72px);
  letter-spacing: 0.14em;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.subscribe-page .plan:nth-child(1) .plan__cta {
  background: linear-gradient(90deg, #24408e, #5bcefa, #93d5ff);
  border: 0;
  color: #0a0a0a;
}

.subscribe-page .plan:nth-child(1) .plan__cta:hover {
  filter: brightness(1.06);
  background: linear-gradient(90deg, #24408e, #5bcefa, #93d5ff);
  border: 0;
}

.subscribe-page .plan:nth-child(3) .plan__cta {
  background: var(--accent);
  border: 0;
  color: #0a0a0a;
}

.subscribe-page .plan:nth-child(3) .plan__cta:hover {
  filter: brightness(1.06);
  background: var(--accent);
  border: 0;
}

.subscribe-page .plan__cta--featured {
  border: 0;
  background:
    linear-gradient(
      90deg,
      #e40303,
      #ff8c00,
      #ffed00,
      #008026,
      #24408e,
      #732982,
      #5bcefa
    );
  color: #0a0a0a;
}

.subscribe-page .plan__cta--featured:hover {
  background:
    linear-gradient(
      90deg,
      #e40303,
      #ff8c00,
      #ffed00,
      #008026,
      #24408e,
      #732982,
      #5bcefa
    );
  filter: brightness(1.04);
}

.subscribe-page .subscribe__foot a:hover {
  color: var(--accent);
}

.subscribe-page .toast {
  background: #111111ee;
  color: var(--ink);
  border: 1px solid color-mix(in srgb, var(--accent) 50%, white);
  box-shadow: var(--glow);
}

.subscribe {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subscribe__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 28px;
}

.subscribe__brand .logo {
  margin-bottom: 4px;
}

.subscribe__logo {
  font-family: var(--font-display);
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.15;
  background: none;
  color: var(--ink);
  -webkit-background-clip: initial;
  background-clip: initial;
}

.subscribe__lead {
  margin: 14px 0 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 28px 0 36px;
  padding: 4px;
  border: 1px solid #ffffff18;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.92);
}

.billing-toggle__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 16px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.billing-toggle__btn.is-active {
  color: var(--ink);
  background: #ffffff12;
}

.billing-toggle__save {
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.plans {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  text-align: left;
}

.plan {
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px;
  border: 1px solid #ffffff16;
  border-radius: 18px;
  background: linear-gradient(180deg, #161616cc, #0d0d0dee);
}

.plan--featured {
  border-color: color-mix(in srgb, var(--accent) 55%, #ffffff22);
  box-shadow: var(--glow);
  transform: translateY(-6px);
}

.plan__badge {
  margin: 0 0 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.plan__name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.plan__tag {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.plan__price {
  margin: 22px 0 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.plan__amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.plan__period {
  color: var(--muted);
  font-size: 13px;
}

.plan__billed {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.plan__perks {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}

.plan__perks li {
  position: relative;
  padding: 8px 0 8px 16px;
  color: var(--ink);
  font-size: 14px;
  border-top: 1px solid #ffffff0d;
}

.plan__perks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.plan__cta {
  margin-top: 22px;
  width: 100%;
  height: 44px;
  border: 1px solid #ffffff22;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.plan__cta:hover {
  border-color: color-mix(in srgb, var(--accent) 50%, white);
  background: #ffffff0c;
}

.plan__cta--featured {
  border: 0;
  background: var(--chip);
  color: #0b0a10;
}

.plan__cta--featured:hover {
  background: var(--chip);
  filter: brightness(1.05);
}

.subscribe__note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.subscribe__foot {
  margin: 18px 0 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.subscribe__foot a {
  color: var(--muted);
  text-decoration: none;
}

.subscribe__foot a:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .plans {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .plan--featured {
    transform: none;
  }
}

body.legal-page {
  padding-top: 0;
}

.legal {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.legal__kicker {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal__kicker a {
  color: inherit;
  text-decoration: none;
}

.legal__kicker a:hover {
  color: var(--ink);
}

.legal__title {
  margin: 12px 0 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 52px);
  letter-spacing: 0.08em;
  font-weight: 700;
  line-height: 1.1;
  background: var(--chip);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal__lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.legal__entity {
  margin: 1rem 0 1.25rem;
  padding: 14px 16px;
  border: 1px solid rgba(91, 206, 250, 0.22);
  border-radius: 12px;
  background: #141414;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.legal__entity a {
  color: var(--accent);
}

.legal__body {
  margin-top: 36px;
  text-align: left;
}

.legal__body h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body p,
.legal__body li {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal__body ul {
  margin: 0 0 12px;
  padding-left: 1.2rem;
}

.legal__body strong {
  color: var(--ink);
  font-weight: 600;
}

.legal__body a {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__body a:hover {
  color: var(--ink);
}

.legal__foot {
  margin: 40px 0 0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.legal__foot a {
  color: var(--muted);
  text-decoration: none;
}

.legal__foot a:hover {
  color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
