:root {
  color-scheme: dark;
  --bg: #03040a;
  --panel: rgba(12, 16, 28, .72);
  --panel-strong: rgba(17, 22, 38, .9);
  --text: #f8f4e8;
  --muted: #aeb6c8;
  --gold: #f6c65b;
  --gold-soft: rgba(246, 198, 91, .18);
  --blue: #22d3ff;
  --blue-soft: rgba(34, 211, 255, .16);
  --line: rgba(255, 255, 255, .12);
  --shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 5%, rgba(34, 211, 255, .12), transparent 28rem),
    radial-gradient(circle at 85% 10%, rgba(246, 198, 91, .12), transparent 24rem),
    linear-gradient(180deg, #050712 0%, var(--bg) 42%, #070812 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .9), transparent 72%);
  z-index: -1;
}

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

button,
input {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(3, 4, 10, .68);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  gap: 1.25rem;
  inset: 0 0 auto;
  justify-content: space-between;
  min-height: 76px;
  padding: .85rem clamp(1rem, 4vw, 3.5rem);
  position: fixed;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: .75rem;
  min-width: max-content;
}

.brand-mark {
  background: linear-gradient(135deg, var(--gold), #fff0b8 48%, var(--blue));
  border-radius: 14px;
  box-shadow: 0 0 34px rgba(246, 198, 91, .32);
  color: #03040a;
  display: grid;
  font-weight: 900;
  height: 42px;
  place-items: center;
  width: 42px;
}

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  letter-spacing: .08em;
  line-height: 1;
}

.brand strong {
  font-size: .8rem;
}

.brand em {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 900;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(.6rem, 1.6vw, 1.4rem);
  justify-content: center;
}

.desktop-nav a {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  transition: color .2s ease, text-shadow .2s ease;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: white;
  text-shadow: 0 0 18px var(--blue);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: .65rem;
}

.icon-button,
.login-button,
.home-button,
.primary-button,
.secondary-button {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.icon-button {
  background: rgba(255, 255, 255, .07);
  height: 42px;
  width: 42px;
}

.login-button,
.home-button,
.secondary-button {
  background: rgba(255, 255, 255, .08);
  padding: .78rem 1.05rem;
}

.home-button {
  color: #e9f7ff;
  font-size: .86rem;
}

.primary-button {
  background: linear-gradient(135deg, #f8d776, #bf842a);
  box-shadow: 0 18px 48px rgba(246, 198, 91, .22);
  color: #080707;
  padding: .9rem 1.2rem;
}

.secondary-button {
  color: white;
}

.compact {
  padding: .72rem 1rem;
}

.icon-button:hover,
.login-button:hover,
.home-button:hover,
.primary-button:hover,
.secondary-button:hover {
  border-color: rgba(246, 198, 91, .55);
  box-shadow: 0 18px 42px rgba(34, 211, 255, .12);
  transform: translateY(-2px);
}

.hero {
  align-items: end;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 8.5rem clamp(1rem, 4vw, 4rem) 4rem;
  position: relative;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 4, 10, .96) 0%, rgba(3, 4, 10, .72) 37%, rgba(3, 4, 10, .22) 70%, rgba(3, 4, 10, .78) 100%),
    linear-gradient(0deg, rgba(3, 4, 10, .92), transparent 42%),
    url("assets/play/hub-play-hero.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.08);
  inset: 0;
  position: absolute;
  transform: scale(1.02);
  z-index: -2;
}

.hero::after {
  background: radial-gradient(circle at 72% 34%, rgba(34, 211, 255, .22), transparent 22rem), radial-gradient(circle at 52% 70%, rgba(246, 198, 91, .16), transparent 18rem);
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-copy {
  max-width: 760px;
  padding-bottom: 3rem;
}

.eyebrow {
  color: var(--gold);
  display: inline-flex;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .16em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(3.3rem, 12vw, 8.8rem);
  letter-spacing: -.04em;
  line-height: .82;
  margin-bottom: 1.25rem;
  max-width: 880px;
  text-shadow: 0 0 46px rgba(246, 198, 91, .22);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.04em;
  line-height: .92;
  margin-bottom: .75rem;
}

.hero-copy p,
.section-lead,
.about-section p,
.split-section p,
.sports-copy p,
.cinema-club-copy p,
.cinema-club-form p,
.ad-section p,
.site-footer p {
  color: var(--muted);
  font-size: clamp(1rem, 1.9vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.hero-panel {
  backdrop-filter: blur(20px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  bottom: 3rem;
  box-shadow: var(--shadow);
  max-width: 260px;
  padding: 1.2rem;
  position: absolute;
  right: clamp(1rem, 5vw, 5rem);
}

.hero-panel span,
.hero-panel small {
  color: var(--muted);
  display: block;
}

.hero-panel strong {
  color: white;
  display: block;
  font-size: 3.4rem;
  letter-spacing: -.06em;
}

.search-band,
.section,
.split-section,
.sports-section,
.cinema-club-section,
.ad-section {
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(2.7rem, 6vw, 5rem) clamp(1rem, 4vw, 2rem);
}

.search-shell {
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: clamp(1rem, 3vw, 1.6rem);
}

.search-shell label {
  color: var(--gold);
  display: block;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.search-box {
  align-items: center;
  background: rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 20px;
  display: flex;
  gap: .8rem;
  padding: .9rem 1rem;
}

.search-box input {
  background: transparent;
  border: 0;
  color: white;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  outline: 0;
  width: 100%;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.suggestions button {
  background: rgba(34, 211, 255, .1);
  border: 1px solid rgba(34, 211, 255, .22);
  border-radius: 999px;
  color: #d9f7ff;
  cursor: pointer;
  padding: .55rem .78rem;
}

.section-heading {
  margin-bottom: 1.6rem;
}

.section-heading.inline {
  align-items: end;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.legal-note {
  color: var(--muted);
  font-size: .9rem;
}

.category-grid,
.service-grid,
.favorites-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card,
.service-card,
.favorite-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
  min-height: 210px;
  padding: 1.15rem;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.category-card::before,
.service-card::before {
  background: radial-gradient(circle, var(--blue-soft), transparent 68%);
  content: "";
  height: 130px;
  position: absolute;
  right: -42px;
  top: -42px;
  width: 130px;
}

.category-card:hover,
.service-card:hover,
.favorite-card:hover {
  border-color: rgba(246, 198, 91, .45);
  box-shadow: 0 26px 80px rgba(34, 211, 255, .14);
  transform: perspective(900px) rotateX(4deg) translateY(-7px);
}

.card-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.category-card h3,
.service-card h3,
.favorite-card h3,
.poster-card h3,
.sports-grid article {
  margin: 0 0 .55rem;
}

.category-card p,
.service-card p,
.favorite-card p {
  color: var(--muted);
  line-height: 1.5;
}

.text-button,
.favorite-button {
  background: rgba(246, 198, 91, .12);
  border: 1px solid rgba(246, 198, 91, .24);
  border-radius: 999px;
  color: var(--gold);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  margin-top: .55rem;
  padding: .65rem .8rem;
}

.poster-rail {
  overflow: hidden;
  padding: .3rem 0 1.2rem;
  position: relative;
}

.poster-rail::before,
.poster-rail::after {
  content: "";
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: clamp(44px, 9vw, 120px);
  z-index: 2;
}

.poster-rail::before {
  background: linear-gradient(90deg, var(--bg), transparent);
}

.poster-rail::after {
  background: linear-gradient(270deg, var(--bg), transparent);
  left: auto;
  right: 0;
}

.poster-loop {
  animation: posterMarquee 42s linear infinite;
  display: flex;
  gap: 1rem;
  width: max-content;
}

.poster-rail:hover .poster-loop {
  animation-play-state: paused;
}

@keyframes posterMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - .5rem));
  }
}

.poster-card {
  aspect-ratio: 3 / 4.2;
  background: var(--poster-gradient);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: end;
  overflow: hidden;
  padding: 1rem;
  position: relative;
  width: clamp(170px, 18vw, 270px);
}

.poster-card::before {
  background: radial-gradient(circle at 42% 22%, rgba(255, 255, 255, .34), transparent 16%), linear-gradient(145deg, rgba(34, 211, 255, .12), rgba(246, 198, 91, .1));
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .25s ease;
}

.poster-card::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .08) 62%, rgba(0, 0, 0, .18));
  content: "";
  inset: 0;
  position: absolute;
}

.poster-card:hover::before {
  opacity: .38;
}

.poster-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.01);
  transition: transform .35s ease, filter .35s ease;
  width: 100%;
}

.poster-card:hover img {
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.08);
}

.poster-card.poster-fallback::before {
  opacity: 1;
}

.poster-card > * {
  position: relative;
  z-index: 1;
}

.poster-card span {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.poster-card small {
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  font-weight: 700;
}

.poster-card-image-only {
  padding: 0;
}

.poster-card-image-only::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 35%, rgba(0, 0, 0, .18));
}

.service-card {
  min-height: 245px;
}

.service-meta {
  color: var(--gold);
  display: block;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: .65rem;
  text-transform: uppercase;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1rem;
}

.device-strip,
.cinema-devices {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .9rem;
}

.device-pill {
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #dcecff;
  font-size: .72rem;
  font-weight: 800;
  padding: .42rem .58rem;
}

.service-warning {
  color: #d2d7e4;
  display: block;
  font-size: .78rem;
  margin-top: .85rem;
}

.split-section,
.sports-section,
.cinema-club-section,
.ad-section,
.about-section {
  background:
    linear-gradient(135deg, rgba(246, 198, 91, .13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 30px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.split-section,
.sports-section,
.cinema-club-section,
.ad-section {
  align-items: center;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}

.cinema-club-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(246, 198, 91, .25), transparent 19rem),
    radial-gradient(circle at 78% 18%, rgba(34, 211, 255, .18), transparent 18rem),
    linear-gradient(145deg, rgba(10, 12, 22, .96), rgba(3, 4, 10, .86));
  margin-top: 2rem;
  overflow: hidden;
  position: relative;
}

.cinema-club-section::before {
  background: linear-gradient(90deg, transparent, rgba(246, 198, 91, .7), transparent);
  content: "";
  height: 1px;
  left: 8%;
  position: absolute;
  right: 8%;
  top: 0;
}

.cinema-club-logo {
  border: 1px solid rgba(246, 198, 91, .35);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(246, 198, 91, .12);
  display: inline-grid;
  margin-bottom: 1.2rem;
  padding: .9rem 1rem;
  text-transform: uppercase;
}

.cinema-club-logo span {
  color: white;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .22em;
}

.cinema-club-logo strong {
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  letter-spacing: -.04em;
  line-height: .92;
}

.streaming-mockup {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 22% 15%, rgba(246, 198, 91, .18), transparent 16rem);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
  margin-top: 1.4rem;
  overflow: hidden;
  padding: 1rem;
}

.mockup-topbar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  gap: .45rem;
  margin: -1rem -1rem 1rem;
  padding: .75rem 1rem;
}

.mockup-topbar span {
  background: var(--gold);
  border-radius: 999px;
  height: 9px;
  opacity: .75;
  width: 9px;
}

.mockup-topbar strong {
  color: #dce8ff;
  font-size: .78rem;
  letter-spacing: .08em;
  margin-left: .45rem;
  text-transform: uppercase;
}

.mockup-hero-row {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.mockup-hero-row small {
  color: var(--gold);
  display: block;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.mockup-hero-row strong {
  display: block;
  font-size: clamp(1.15rem, 3vw, 1.7rem);
  line-height: 1;
}

.mockup-hero-row a {
  background: rgba(246, 198, 91, .14);
  border: 1px solid rgba(246, 198, 91, .3);
  border-radius: 999px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  padding: .65rem .8rem;
  white-space: nowrap;
}

.mockup-cover-loop {
  display: grid;
  gap: .72rem;
  grid-template-columns: repeat(6, minmax(72px, 1fr));
  margin-bottom: 1rem;
}

.mockup-cover-loop img {
  aspect-ratio: 3 / 4.2;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .32);
  height: auto;
  object-fit: cover;
  width: 100%;
}

.streaming-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.streaming-chip-row span {
  background: rgba(255, 255, 255, .085);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: #edf7ff;
  font-size: .78rem;
  font-weight: 900;
  padding: .6rem .72rem;
}

.cinema-club-form {
  background: rgba(0, 0, 0, .34);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: .9rem;
  justify-self: stretch;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.cinema-club-form h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin: 0;
}

.cinema-club-form label:not(.cinema-check) {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cinema-club-form input[type="tel"] {
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  color: white;
  outline: 0;
  padding: 1rem;
  width: 100%;
}

.cinema-club-form input[type="tel"]:focus {
  border-color: rgba(34, 211, 255, .7);
  box-shadow: 0 0 0 4px rgba(34, 211, 255, .12);
}

.cinema-check {
  align-items: start;
  color: #ecf4ff;
  display: flex;
  gap: .75rem;
  line-height: 1.45;
}

.cinema-check input {
  accent-color: var(--gold);
  margin-top: .22rem;
}

.cinema-club-form small {
  color: var(--muted);
}

.cinema-club-locked {
  background: rgba(34, 211, 255, .1);
  border: 1px solid rgba(34, 211, 255, .24);
  border-radius: 18px;
  padding: 1rem;
}

.cinema-club-locked strong {
  color: var(--gold);
}

.cinema-club-locked p {
  font-size: .95rem;
  margin: .4rem 0 0;
}

.kids-stack,
.sports-grid {
  display: grid;
  gap: .9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kids-stack span,
.sports-grid article,
.device-grid article {
  background: rgba(0, 0, 0, .32);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  color: white;
  font-weight: 900;
  padding: 1.2rem;
}

.sports-grid small {
  color: var(--muted);
  display: block;
  font-weight: 500;
  line-height: 1.45;
  margin-top: .5rem;
}

.devices-section {
  padding-top: clamp(2.7rem, 6vw, 5rem);
}

.device-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.device-grid article {
  min-height: 210px;
}

.device-grid span {
  color: var(--gold);
  display: block;
  font-size: 2rem;
  margin-bottom: .9rem;
}

.device-grid h3 {
  margin: 0 0 .6rem;
}

.device-grid p {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.cinema-modal[hidden] {
  display: none;
}

.cinema-modal {
  inset: 0;
  position: fixed;
  z-index: 80;
}

.cinema-backdrop {
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, .78);
  inset: 0;
  position: absolute;
}

.cinema-shell {
  align-items: center;
  display: grid;
  inset: 0;
  padding: clamp(1rem, 4vw, 3rem);
  place-items: center;
  position: absolute;
}

.cinema-close {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-size: 2rem;
  height: 48px;
  line-height: 1;
  position: absolute;
  right: clamp(1rem, 4vw, 2.5rem);
  top: clamp(1rem, 4vw, 2.5rem);
  width: 48px;
  z-index: 2;
}

.cinema-screen {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(120deg, rgba(3, 4, 10, .97), rgba(3, 4, 10, .45)),
    url("assets/play/hub-play-hero.png");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(246, 198, 91, .34);
  border-radius: 30px;
  box-shadow: 0 44px 140px rgba(0, 0, 0, .85), 0 0 90px rgba(34, 211, 255, .16);
  max-height: 78svh;
  max-width: 1180px;
  overflow: hidden;
  position: relative;
  width: min(100%, 1180px);
}

.cinema-glow {
  background: radial-gradient(circle at 72% 22%, rgba(34, 211, 255, .24), transparent 25rem), radial-gradient(circle at 34% 78%, rgba(246, 198, 91, .18), transparent 20rem);
  inset: 0;
  mix-blend-mode: screen;
  position: absolute;
}

.cinema-frame {
  align-content: center;
  background: linear-gradient(90deg, rgba(0, 0, 0, .86), rgba(0, 0, 0, .22));
  display: grid;
  height: 100%;
  max-width: 620px;
  padding: clamp(1.4rem, 5vw, 4rem);
  position: relative;
}

.cinema-frame h2 {
  font-size: clamp(2rem, 5vw, 4.7rem);
}

.cinema-frame p,
.cinema-frame small {
  color: var(--muted);
  line-height: 1.6;
}

.cinema-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.4rem 0 1rem;
}

.empty-state {
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 20px;
  color: var(--muted);
  grid-column: 1 / -1;
  padding: 1.3rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.2fr .8fr 1.2fr;
  margin-top: 3rem;
  padding: 2rem clamp(1rem, 4vw, 3.5rem);
}

.site-footer strong {
  color: var(--gold);
  letter-spacing: .1em;
}

.site-footer nav {
  display: grid;
  gap: .6rem;
}

.footer-warning {
  font-size: .95rem;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .category-grid,
  .service-grid,
  .favorites-grid,
  .device-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .sports-section,
  .cinema-club-section,
  .ad-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
  }

  .brand strong {
    display: none;
  }

  .login-button {
    display: none;
  }

  .home-button {
    font-size: 0;
    height: 42px;
    padding: 0;
    width: 42px;
  }

  .home-button::before {
    content: "←";
    font-size: 1.15rem;
  }

  .hero {
    align-items: end;
    min-height: 92svh;
    padding-top: 7rem;
  }

  .hero-copy {
    padding-bottom: 1.2rem;
  }

  .category-grid,
  .service-grid,
  .favorites-grid,
  .device-grid,
  .kids-stack,
  .sports-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.inline {
    align-items: start;
    flex-direction: column;
  }

  .poster-rail {
    grid-auto-columns: 74vw;
  }

  .cinema-screen {
    aspect-ratio: auto;
    min-height: 78svh;
  }

  .cinema-frame {
    background: linear-gradient(0deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .38));
    max-width: none;
  }

  .mockup-cover-loop {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mockup-hero-row {
    align-items: start;
    flex-direction: column;
  }
}
