:root {
  --toffee-primary: #C87941;
  --toffee-secondary: #E5A76B;
  --toffee-light: #F5E6D3;
  --toffee-cream: #FFF8F0;
  --toffee-caramel: #B8784F;
  --toffee-brown: #8B5A3C;
  --toffee-dark: #6B4423;
  --cloud-white: #FFFFFF;
  --cloud-soft: #F9F9F9;
  --ink: #2F1A0E;
  --line: rgba(200, 121, 65, 0.18);
  --glass: rgba(255, 255, 255, 0.78);
  --shadow-cloud: 0 18px 45px rgba(139, 90, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--toffee-dark);
  font-family: "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 15% 5%, rgba(229, 167, 107, 0.28), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(245, 230, 211, 0.88), transparent 28rem),
    linear-gradient(135deg, var(--toffee-cream), var(--cloud-white) 48%, rgba(245, 230, 211, 0.46));
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1280px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--toffee-primary);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.site-logo::before,
.footer-logo::before {
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: 0 10px 24px rgba(200, 121, 65, 0.28);
  content: "";
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.main-nav a,
.nav-drop-button {
  border: 0;
  color: var(--toffee-brown);
  background: transparent;
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.nav-drop-button:hover {
  color: var(--toffee-primary);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-panel {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  width: 180px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-cloud);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.22s ease;
}

.nav-dropdown:hover .nav-drop-panel,
.nav-dropdown:focus-within .nav-drop-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-panel a {
  display: block;
  padding: 9px 10px;
  border-radius: 14px;
}

.nav-drop-panel a:hover {
  background: var(--toffee-cream);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--glass);
}

.header-search input {
  width: 180px;
  border: 0;
  outline: none;
  color: var(--toffee-dark);
  background: transparent;
}

.header-search button,
.large-search button,
.toolbar button {
  border: 0;
  border-radius: 999px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--toffee-primary);
  background: #fff;
}

.hero-carousel {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}

.hero-stage,
.hero-slide {
  min-height: 720px;
}

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

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(47, 26, 14, 0.95) 0%, rgba(47, 26, 14, 0.72) 42%, rgba(47, 26, 14, 0.22) 100%),
    linear-gradient(0deg, rgba(47, 26, 14, 0.92), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 32px));
  min-height: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 128px 0 96px;
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(36px, 6vw, 74px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-copy h2 + h2 {
  margin-top: 14px;
  color: var(--toffee-secondary);
  font-size: clamp(28px, 4vw, 52px);
}

.hero-copy p {
  max-width: 660px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 6px 14px;
  color: var(--toffee-caramel);
  background: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

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

.toffee-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: 0 14px 28px rgba(200, 121, 65, 0.26);
}

.toffee-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.hero-card {
  position: absolute;
  right: max(32px, calc((100% - 1280px) / 2));
  bottom: 90px;
  z-index: 3;
  width: min(280px, 26vw);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

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

.hero-card span {
  display: block;
  padding: 16px;
  font-weight: 800;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.is-active {
  width: 34px;
  background: var(--toffee-secondary);
}

.section-wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.section-wrap + .section-wrap {
  padding-top: 20px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-title {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--toffee-dark);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
}

.section-title::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--toffee-secondary), transparent);
  content: "";
}

.text-link {
  color: var(--toffee-primary);
  font-weight: 800;
}

.toffee-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--glass);
  box-shadow: var(--shadow-cloud);
  backdrop-filter: blur(14px);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.search-panel h2 {
  margin: 0;
  color: var(--toffee-dark);
  font-size: clamp(26px, 3vw, 40px);
}

.large-search {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.large-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: none;
  padding: 0 14px;
  color: var(--toffee-dark);
  background: transparent;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

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

.category-chip {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  color: var(--toffee-dark);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 230, 211, 0.7));
  box-shadow: var(--shadow-cloud);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-chip:hover,
.movie-card:hover,
.compact-card:hover,
.rank-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(139, 90, 60, 0.16);
}

.category-chip span {
  font-size: 22px;
  font-weight: 800;
}

.category-chip small {
  color: rgba(107, 68, 35, 0.72);
}

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

.movie-grid.compact-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-cloud);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--toffee-light);
}

.poster-link img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-link img,
.compact-card:hover img,
.rank-item:hover img {
  transform: scale(1.04);
}

.poster-year {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  background: rgba(47, 26, 14, 0.68);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.movie-card-body {
  padding: 18px;
}

.movie-title {
  display: block;
  color: var(--toffee-dark);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.movie-meta,
.rank-meta {
  margin-top: 7px;
  color: rgba(107, 68, 35, 0.68);
  font-size: 13px;
}

.movie-card-body p,
.rank-info p,
.detail-one-line,
.page-hero p,
.side-feature p,
.footer-inner p {
  color: rgba(107, 68, 35, 0.76);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--toffee-primary);
  background: rgba(245, 230, 211, 0.86);
  font-size: 12px;
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.62fr);
  gap: 28px;
  align-items: start;
}

.rank-list {
  display: grid;
  gap: 14px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 54px 78px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(139, 90, 60, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-number {
  color: var(--toffee-primary);
  font-size: 26px;
  font-weight: 900;
  text-align: center;
}

.rank-cover {
  overflow: hidden;
  border-radius: 16px;
}

.rank-cover img {
  width: 78px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.rank-title {
  color: var(--toffee-dark);
  font-size: 17px;
  font-weight: 900;
}

.side-feature {
  position: sticky;
  top: 104px;
  padding: 28px;
}

.side-feature h2 {
  margin: 0 0 14px;
  color: var(--toffee-dark);
  font-size: 32px;
  line-height: 1.18;
}

.side-feature .toffee-btn {
  margin-top: 24px;
}

.page-hero,
.detail-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 34px auto 0;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 0%, rgba(229, 167, 107, 0.34), transparent 28rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 230, 211, 0.72));
  box-shadow: var(--shadow-cloud);
}

.page-hero {
  padding: 58px;
}

.page-hero.slim {
  padding: 46px 58px;
}

.page-hero h1 {
  margin: 0;
  color: var(--toffee-dark);
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.1;
}

.page-hero p {
  max-width: 780px;
  margin: 18px 0 0;
  font-size: 18px;
}

.toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px;
}

.toolbar input,
.toolbar select {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 16px;
  color: var(--toffee-dark);
  background: #fff;
  outline: none;
}

.toolbar input {
  min-width: 0;
  flex: 1;
}

.empty-state {
  padding: 46px;
  border: 1px dashed var(--line);
  border-radius: 28px;
  color: var(--toffee-brown);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 32px 0;
  color: rgba(107, 68, 35, 0.7);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--toffee-primary);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 30px 32px 42px;
}

.detail-poster {
  overflow: hidden;
}

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

.detail-info h1 {
  margin: 0;
  color: var(--toffee-dark);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: 18px;
}

.detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta-list a,
.detail-meta-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--toffee-primary);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.player-wrap {
  padding-top: 36px;
}

.video-shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #140b06;
  box-shadow: 0 30px 90px rgba(47, 26, 14, 0.34);
}

.movie-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.play-mask {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: #140b06;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-mask img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52);
}

.play-round {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--toffee-primary), var(--toffee-secondary));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  font-size: 34px;
  transform: translateX(3px);
}

.video-shell.is-playing .play-mask {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-content-wrap {
  padding-top: 0;
}

.detail-content {
  padding: 34px;
}

.detail-content h2 {
  margin: 0 0 12px;
  color: var(--toffee-dark);
  font-size: 28px;
}

.detail-content h2:not(:first-child) {
  margin-top: 30px;
}

.detail-content p {
  margin: 0;
  color: rgba(47, 26, 14, 0.78);
  font-size: 17px;
}

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

.info-grid div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 248, 240, 0.72);
}

.info-grid dt {
  color: rgba(107, 68, 35, 0.58);
  font-size: 13px;
}

.info-grid dd {
  margin: 4px 0 0;
  color: var(--toffee-dark);
  font-weight: 800;
}

.compact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.compact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-cloud);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.compact-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.compact-card span,
.compact-card small {
  display: block;
  padding: 0 16px;
}

.compact-card span {
  padding-top: 14px;
  color: var(--toffee-dark);
  font-weight: 900;
}

.compact-card small {
  padding-bottom: 16px;
  color: rgba(107, 68, 35, 0.68);
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.9);
}

.footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
  padding: 46px 0;
}

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

.footer-links strong {
  color: var(--toffee-dark);
}

.footer-links a {
  color: rgba(107, 68, 35, 0.76);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 18px;
  color: rgba(107, 68, 35, 0.68);
  text-align: center;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.movie-card,
.category-chip,
.rank-item,
.toffee-card {
  animation: fadeInUp 0.45s ease both;
}

@media (max-width: 1120px) {
  .header-search {
    display: none;
  }

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

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

  .rank-list.wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 66px;
  }

  .main-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-cloud);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a,
  .nav-drop-button {
    padding: 12px 8px;
    text-align: left;
  }

  .nav-dropdown:hover .nav-drop-panel,
  .nav-dropdown:focus-within .nav-drop-panel,
  .nav-drop-panel {
    position: static;
    width: 100%;
    margin-top: 4px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    margin-left: auto;
  }

  .hero-carousel,
  .hero-stage,
  .hero-slide,
  .hero-copy {
    min-height: 640px;
  }

  .hero-copy {
    padding-top: 110px;
  }

  .hero-card {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(47, 26, 14, 0.92), rgba(47, 26, 14, 0.62)),
      linear-gradient(0deg, rgba(47, 26, 14, 0.9), transparent 42%);
  }

  .search-panel,
  .two-column,
  .detail-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .side-feature {
    position: static;
  }

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .movie-grid.compact-grid,
  .compact-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero,
  .page-hero.slim,
  .detail-hero {
    border-radius: 26px;
  }

  .page-hero,
  .page-hero.slim {
    padding: 34px 24px;
  }

  .detail-layout,
  .breadcrumb {
    padding-left: 22px;
    padding-right: 22px;
  }

  .detail-poster {
    max-width: 260px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-logo,
  .footer-logo {
    font-size: 21px;
  }

  .hero-copy h1,
  .hero-copy h2 {
    font-size: 36px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .section-wrap {
    width: min(100% - 24px, 1280px);
    padding: 46px 0;
  }

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

  .large-search,
  .toolbar {
    align-items: stretch;
    flex-direction: column;
    border-radius: 24px;
  }

  .category-grid,
  .category-grid.large,
  .movie-grid,
  .movie-grid.compact-grid,
  .compact-card-grid {
    grid-template-columns: 1fr;
  }

  .rank-item {
    grid-template-columns: 44px 68px minmax(0, 1fr);
    gap: 10px;
  }

  .rank-cover img {
    width: 68px;
  }

  .play-round {
    width: 76px;
    height: 76px;
    font-size: 28px;
  }
}
