:root {
  color-scheme: dark;
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-soft: rgba(15, 23, 42, 0.58);
  --line: rgba(34, 211, 238, 0.16);
  --line-strong: rgba(34, 211, 238, 0.34);
  --cyan: #22d3ee;
  --cyan-soft: rgba(34, 211, 238, 0.18);
  --blue: #2563eb;
  --orange: #f97316;
  --gold: #facc15;
  --text: #f8fafc;
  --muted: #94a3b8;
  --dim: #64748b;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(8, 145, 178, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% -10%, rgba(8, 145, 178, 0.28), transparent 28rem),
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.22), transparent 30rem),
    linear-gradient(180deg, #0f172a 0%, var(--bg) 26rem, var(--bg) 100%);
  color: var(--text);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: white;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.35);
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: rgba(34, 211, 238, 0.72);
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 14px;
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: white;
  background: var(--cyan-soft);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--cyan);
}

.mobile-menu {
  display: none;
  padding: 12px 16px 20px;
  border-top: 1px solid rgba(34, 211, 238, 0.08);
}

.mobile-menu.is-open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-menu-link {
  padding: 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.88);
  color: #cbd5e1;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(34, 211, 238, 0.1);
}

.hero-stage {
  position: relative;
  min-height: 72vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition: opacity 0.75s ease, transform 1.1s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.74) 43%, rgba(2, 6, 23, 0.46) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, var(--bg), transparent 32%);
  background-size: 58px 58px, 58px 58px, auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: center;
  gap: 48px;
  padding: 60px 0 78px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid var(--line-strong);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 18px;
  font-size: clamp(38px, 6.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.hero p,
.page-hero p {
  margin: 0;
  max-width: 760px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.9;
}

.hero-tags,
.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags {
  margin: 28px 0;
}

.hero-tags span,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #cbd5e1;
  font-size: 12px;
}

.hero-actions,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.compact-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.28);
}

.btn-ghost {
  color: var(--cyan);
  border: 1px solid var(--line-strong);
  background: rgba(15, 23, 42, 0.58);
}

.full-btn {
  width: 100%;
  margin-top: 22px;
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateY(-7deg);
}

.hero-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.hero-poster span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.72);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-dots {
  display: flex;
  gap: 8px;
}

.hero-dot,
.hero-arrow {
  border: 1px solid var(--line-strong);
  background: rgba(15, 23, 42, 0.72);
  color: white;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.hero-dot {
  width: 34px;
  height: 8px;
  border-radius: 999px;
  padding: 0;
}

.hero-dot.is-active {
  background: var(--cyan);
}

.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
}

.search-strip {
  margin-top: -34px;
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(15, 23, 42, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.home-search {
  display: flex;
  gap: 12px;
}

.home-search input,
.filter-bar input,
.search-panel input,
.search-panel select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(2, 6, 23, 0.78);
  color: white;
  padding: 0 16px;
  outline: none;
}

.home-search input:focus,
.filter-bar input:focus,
.search-panel input:focus,
.search-panel select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.09);
}

.home-search button {
  border: 0;
  color: white;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.quick-links a {
  color: #cbd5e1;
  font-size: 14px;
  padding: 9px 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
}

.block-section {
  padding-top: 70px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 6px 0 0;
  color: var(--muted);
}

.heading-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 20px rgba(34, 211, 238, 0.8);
}

.section-heading i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--line-strong), transparent);
}

.movie-grid,
.featured-grid,
.category-grid {
  display: grid;
  gap: 18px;
}

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

.four-cols {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-cols {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel-soft);
  border: 1px solid rgba(34, 211, 238, 0.1);
  transition: 0.25s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  box-shadow: 0 18px 42px rgba(8, 145, 178, 0.18);
}

.poster-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #0f172a;
}

.poster-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-wrap img {
  transform: scale(1.06);
}

.poster-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 58%);
}

.quality-badge,
.type-badge,
.play-float {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.quality-badge {
  top: 10px;
  left: 10px;
  background: rgba(34, 211, 238, 0.9);
  color: #02111a;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 900;
}

.type-badge {
  right: 10px;
  top: 10px;
  padding: 5px 9px;
  color: white;
  background: rgba(249, 115, 22, 0.88);
  font-size: 12px;
}

.play-float {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.86);
  background: rgba(34, 211, 238, 0.88);
  color: white;
  opacity: 0;
  transition: 0.25s ease;
}

.movie-card:hover .play-float {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-body {
  padding: 16px;
}

.movie-body h3 {
  margin: 0 0 8px;
  min-height: 2.6em;
  color: white;
  font-size: 17px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-body p {
  color: var(--muted);
  margin: 0 0 12px;
  line-height: 1.6;
  font-size: 14px;
  min-height: 3.2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--dim);
  font-size: 12px;
  margin-top: 12px;
}

.is-compact .movie-body h3 {
  font-size: 15px;
}

.is-compact .movie-body p {
  min-height: 0;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-tile,
.category-cover {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  background-image: linear-gradient(0deg, rgba(2, 6, 23, 0.93), rgba(2, 6, 23, 0.22)), var(--tile-image);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -80px 90px rgba(2, 6, 23, 0.62);
}

.category-tile span,
.category-cover span {
  color: var(--cyan);
  font-size: 24px;
  font-weight: 900;
}

.category-tile strong {
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.6;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.rank-panel,
.story-card,
.detail-sidebar,
.category-overview-card,
.search-panel,
.ranking-list {
  border: 1px solid var(--line);
  background: var(--panel-soft);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.18);
}

.rank-panel {
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.rank-panel h2 {
  margin: 0 0 16px;
}

.rank-panel ol,
.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rank-panel li a {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.rank-panel li span,
.ranking-number {
  color: var(--cyan);
  font-weight: 900;
}

.rank-panel li strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-panel li em,
.ranking-score {
  color: var(--gold);
  font-style: normal;
  font-size: 13px;
}

.panel-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--cyan);
  font-weight: 800;
}

.page-main {
  padding-bottom: 80px;
}

.page-hero {
  margin-top: 34px;
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(8, 47, 73, 0.58)),
    radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.16), transparent 18rem);
  box-shadow: var(--shadow);
}

.small-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.category-overview-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.category-overview-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 22px;
  padding: 18px;
}

.category-overview-card h2 {
  margin: 8px 0 10px;
}

.category-overview-card p {
  color: var(--muted);
  line-height: 1.8;
}

.category-samples {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.category-samples a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.16);
  font-size: 13px;
}

.filter-bar {
  margin-bottom: 22px;
}

.search-panel {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 12px;
  padding: 18px;
  margin-bottom: 18px;
}

.search-status {
  color: var(--muted);
  margin-bottom: 18px;
}

.ranking-list {
  overflow: hidden;
}

.ranking-row a {
  display: grid;
  grid-template-columns: 58px 86px 1fr 90px;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
  transition: background 0.22s ease;
}

.ranking-row a:hover {
  background: rgba(34, 211, 238, 0.07);
}

.ranking-row img {
  width: 86px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}

.ranking-info {
  display: grid;
  gap: 5px;
}

.ranking-info strong {
  font-size: 16px;
}

.ranking-info em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  padding-top: 28px;
}

.breadcrumbs a {
  color: var(--cyan);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  margin-top: 20px;
}

.player-panel {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #020617;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  display: block;
  background: #020617;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 12px;
  border: 0;
  color: white;
  cursor: pointer;
  text-align: center;
  background-image:
    linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.48)),
    var(--player-poster);
  background-size: cover;
  background-position: center;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.player-cover.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.big-play {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 18px 42px rgba(8, 145, 178, 0.34);
  font-size: 32px;
  padding-left: 4px;
}

.player-cover strong {
  font-size: 26px;
}

.player-cover em {
  max-width: 80%;
  color: #cbd5e1;
  font-style: normal;
}

.story-card {
  padding: 24px;
  margin-top: 20px;
}

.story-card h2 {
  margin: 0 0 12px;
}

.story-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.95;
}

.detail-sidebar {
  align-self: start;
  position: sticky;
  top: 92px;
  padding: 20px;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.16);
  margin-bottom: 18px;
}

.detail-sidebar h1 {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.detail-one-line {
  color: var(--muted);
  line-height: 1.8;
}

.detail-meta {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.detail-meta div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.detail-meta dt {
  color: var(--dim);
}

.detail-meta dd {
  margin: 0;
  color: #e2e8f0;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.92);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  padding: 42px 0;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 12px;
}

.site-footer p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  color: #cbd5e1;
  padding: 7px 10px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 999px;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  color: var(--dim);
  text-align: center;
  padding: 18px 16px;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .four-cols,
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .three-cols,
  .featured-grid,
  .split-section,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .rank-panel,
  .detail-sidebar {
    position: static;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 340px;
    transform: none;
  }

  .search-strip,
  .search-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .brand-text small {
    display: none;
  }

  .hero,
  .hero-stage,
  .hero-content {
    min-height: 78vh;
  }

  .hero-content {
    padding: 44px 0 86px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero-poster {
    display: none;
  }

  .home-search {
    flex-direction: column;
  }

  .four-cols,
  .three-cols,
  .featured-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .movie-body {
    padding: 12px;
  }

  .movie-body h3 {
    font-size: 15px;
  }

  .movie-body p,
  .tag-row {
    display: none;
  }

  .page-hero {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .category-cover {
    min-height: 160px;
  }

  .ranking-row a {
    grid-template-columns: 42px 66px 1fr;
  }

  .ranking-score {
    display: none;
  }

  .ranking-row img {
    width: 66px;
    height: 48px;
  }

  .detail-sidebar h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .four-cols,
  .three-cols,
  .featured-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .mobile-menu.is-open {
    grid-template-columns: 1fr;
  }

  .hero-controls {
    width: calc(100% - 24px);
    justify-content: center;
  }
}
