:root {
  --bg: #07111f;
  --bg-2: #0b1729;
  --bg-3: #12213a;
  --card: rgba(10, 18, 34, 0.84);
  --card-2: rgba(15, 26, 47, 0.88);
  --line: rgba(56, 189, 248, 0.18);
  --line-strong: rgba(56, 189, 248, 0.38);
  --text: #f8fbff;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --cyan-2: #0ea5e9;
  --blue: #2563eb;
  --green: #34d399;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.16), transparent 26%),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.16), transparent 24%),
    linear-gradient(135deg, #08111f 0%, #0b1324 40%, #08101d 100%);
  background-attachment: fixed;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7, 17, 31, 0.9);
  border-bottom: 1px solid rgba(34, 211, 238, 0.14);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(34, 211, 238, 0.92), rgba(37, 99, 235, 0.92));
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.18);
  color: white;
  font-size: 18px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-size: 1.08rem;
  line-height: 1.1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

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

.nav a,
.nav button {
  border: 0;
  cursor: pointer;
  background: transparent;
  color: #d7e2f0;
  padding: 10px 14px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav a:hover,
.nav button:hover,
.nav a.is-active {
  color: #fff;
  background: rgba(34, 211, 238, 0.1);
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.2);
}

.nav-cta {
  padding: 10px 16px !important;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.18), rgba(37, 99, 235, 0.18)) !important;
  box-shadow: inset 0 0 0 1px rgba(34, 211, 238, 0.24);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 16px;
}

.hero-panel {
  position: relative;
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(10, 18, 34, 0.84), rgba(10, 18, 34, 0.62)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.34), transparent 30%),
    radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.22), transparent 32%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.82) 42%, rgba(7, 17, 31, 0.45) 100%),
    linear-gradient(180deg, rgba(7, 17, 31, 0.18) 0%, rgba(7, 17, 31, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  padding: 34px;
  min-height: 620px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 211, 238, 0.1);
  color: #9ef2ff;
  border: 1px solid rgba(34, 211, 238, 0.2);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-title {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-title span {
  background: linear-gradient(135deg, #fff, #a5f3fc 45%, #60a5fa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 0;
  max-width: 40rem;
  color: #d7e2f0;
  font-size: 1.02rem;
  line-height: 1.8;
}

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

.btn {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 999px;
  transition: 0.25s ease;
  font-weight: 700;
}

.btn-primary {
  color: #041019;
  background: linear-gradient(135deg, #67e8f9, #38bdf8 45%, #3b82f6);
  box-shadow: 0 14px 30px rgba(34, 211, 238, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.btn-secondary {
  color: #ecfbff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-search {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hero-search form {
  display: flex;
  flex: 1 1 420px;
  gap: 10px;
}

.search-input {
  width: 100%;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(9, 16, 30, 0.88);
  color: #fff;
  padding: 14px 16px;
  border-radius: 999px;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.15);
}

.search-input::placeholder {
  color: #7c8ca3;
}

.search-input:focus {
  border-color: rgba(34, 211, 238, 0.48);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(15, 26, 47, 0.72);
  color: #d6faff;
  transition: 0.25s ease;
  font-weight: 600;
  font-size: 0.93rem;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.36);
  background: rgba(15, 26, 47, 0.95);
}

.hero-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-feature {
  position: relative;
  min-height: 330px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  background: rgba(10, 18, 34, 0.62);
}

.hero-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-feature .feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,17,31,0.05), rgba(7,17,31,0.92));
}

.hero-feature .feature-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  display: grid;
  gap: 10px;
}

.hero-feature h3 {
  margin: 0;
  font-size: 1.35rem;
}

.hero-feature p {
  margin: 0;
  color: #d0e2f2;
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-mini-list {
  display: grid;
  gap: 12px;
}

.hero-mini-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(34, 211, 238, 0.15);
  background: rgba(10, 18, 34, 0.66);
  transition: 0.25s ease;
}

.hero-mini-item:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.35);
  background: rgba(14, 22, 41, 0.86);
}

.hero-mini-item.is-active {
  border-color: rgba(34, 211, 238, 0.42);
  background: rgba(14, 22, 41, 0.96);
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.12);
}

.hero-mini-item img {
  width: 88px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-mini-item h4 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-mini-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-mini-item .mini-arrow {
  color: #8edffa;
  font-weight: 700;
  padding-right: 4px;
}

.section {
  padding: 24px 0;
}

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

.section-title {
  margin: 0;
  font-size: 1.65rem;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: "";
  width: 4px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cyan), var(--blue));
  display: inline-block;
}

.section-subtitle {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 52rem;
}

.section-link {
  color: #9ef2ff;
  font-weight: 700;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 21, 38, 0.94), rgba(8, 14, 24, 0.98));
  border: 1px solid rgba(34, 211, 238, 0.14);
  box-shadow: var(--shadow);
  transition: 0.28s ease;
  min-height: 100%;
}

.movie-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.38);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.42);
}

.movie-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.88);
}

.movie-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.32s ease;
}

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

.movie-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #a5f3fc;
  background: rgba(8, 15, 28, 0.78);
  border: 1px solid rgba(34, 211, 238, 0.24);
  backdrop-filter: blur(12px);
}

.movie-body {
  padding: 14px 14px 16px;
  display: grid;
  gap: 10px;
}

.movie-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.84rem;
}

.movie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.movie-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 600;
  background: rgba(34, 211, 238, 0.08);
  color: #d4fbff;
  border: 1px solid rgba(34, 211, 238, 0.14);
}

.movie-summary {
  margin: 0;
  color: #cbd8e6;
  font-size: 0.88rem;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.card-actions .btn {
  padding: 10px 14px;
  font-size: 0.9rem;
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero {
  margin: 24px 0 8px;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.72)),
    radial-gradient(circle at top right, rgba(34, 211, 238, 0.18), transparent 30%);
  border: 1px solid rgba(34, 211, 238, 0.14);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.page-hero p {
  margin: 12px 0 0;
  color: #d4ddeb;
  line-height: 1.75;
}

.page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-layout.with-aside {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.aside-panel,
.soft-panel {
  background: rgba(10, 18, 34, 0.84);
  border: 1px solid rgba(34, 211, 238, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel-title {
  margin: 0 0 14px;
  font-size: 1.18rem;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(34, 211, 238, 0.1);
}

.rank-index {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #041019;
  background: linear-gradient(135deg, #67e8f9, #38bdf8);
}

.rank-item h4 {
  margin: 0 0 4px;
  font-size: 0.94rem;
}

.rank-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.category-card {
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(34, 211, 238, 0.14);
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(12, 20, 35, 0.9));
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 211, 238, 0.3);
}

.category-card h3 {
  margin: 14px 0 8px;
  font-size: 1.15rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.category-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.08);
}

.detail-hero {
  margin-top: 22px;
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(34, 211, 238, 0.14);
  background:
    linear-gradient(135deg, rgba(10, 18, 34, 0.94), rgba(10, 18, 34, 0.7)),
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 26%);
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #9ef2ff;
}

.detail-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
}

.detail-poster {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: rgba(8, 14, 24, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34);
}

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

.detail-summary {
  display: grid;
  gap: 16px;
}

.detail-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.detail-sub {
  color: #d6e3f0;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

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

.stat-box {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(34, 211, 238, 0.12);
}

.stat-box .label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 6px;
}

.stat-box .value {
  font-size: 1.02rem;
  font-weight: 700;
}

.detail-block {
  margin-top: 18px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid rgba(34, 211, 238, 0.12);
  background: rgba(10, 18, 34, 0.82);
  box-shadow: var(--shadow);
}

.detail-block h2 {
  margin: 0 0 14px;
  font-size: 1.25rem;
}

.detail-text {
  margin: 0;
  color: #d7e2f0;
  line-height: 1.82;
  white-space: pre-wrap;
}

.player-wrap {
  display: grid;
  gap: 14px;
}

.player-stage {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #020814;
  border: 1px solid rgba(34, 211, 238, 0.18);
  box-shadow: var(--shadow);
}

.player-stage video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020814;
}

.player-hint {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 18, 34, 0.68);
  border: 1px solid rgba(34, 211, 238, 0.18);
  color: #c7f7ff;
  backdrop-filter: blur(16px);
}

.player-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.player-source {
  border: 1px solid rgba(34, 211, 238, 0.16);
  background: rgba(255,255,255,0.03);
  color: #eaf8ff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s ease;
}

.player-source.is-active,
.player-source:hover {
  background: rgba(34, 211, 238, 0.12);
  border-color: rgba(34, 211, 238, 0.34);
  color: #fff;
}

.detail-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.related-list {
  display: grid;
  gap: 12px;
}

.related-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(34, 211, 238, 0.1);
  transition: 0.25s ease;
}

.related-item:hover {
  transform: translateY(-1px);
  border-color: rgba(34, 211, 238, 0.28);
}

.related-item img {
  width: 86px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
}

.related-item h4 {
  margin: 0 0 4px;
  font-size: 0.94rem;
  line-height: 1.35;
}

.related-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.search-section {
  padding: 26px 0 12px;
}

.search-head {
  display: grid;
  gap: 14px;
}

.search-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.search-form .search-input {
  flex: 1 1 480px;
}

.search-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  margin: 18px 0 12px;
}

.empty-state {
  padding: 34px;
  border-radius: 28px;
  border: 1px dashed rgba(34, 211, 238, 0.24);
  background: rgba(255,255,255,0.03);
  text-align: center;
  color: var(--muted);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(34, 211, 238, 0.14);
  background: rgba(4, 10, 19, 0.92);
}

.footer-inner {
  padding: 30px 0;
  display: grid;
  gap: 14px;
  color: #c7d4e3;
}

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

.footer-grid h4 {
  margin: 0 0 10px;
  color: #fff;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin: 8px 0;
}

.footer-grid a:hover {
  color: #9ef2ff;
}

.footer-note {
  color: var(--muted);
  font-size: 0.92rem;
}

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

  .detail-grid,
  .page-layout.with-aside,
  .detail-columns {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 20px));
  }

  .header-inner {
    height: 68px;
  }

  .nav {
    position: fixed;
    left: 10px;
    right: 10px;
    top: 80px;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(8, 15, 28, 0.98);
    border: 1px solid rgba(34, 211, 238, 0.18);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-content {
    padding: 18px;
    min-height: 0;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.8rem);
  }

  .hero-feature {
    min-height: 280px;
  }

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

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

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

  .detail-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-mini-item {
    grid-template-columns: 70px 1fr;
  }

  .hero-mini-item .mini-arrow {
    display: none;
  }
}

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

  .detail-stats {
    grid-template-columns: 1fr;
  }

  .hero-search form {
    flex-direction: column;
  }
}

.movie-card > a,
.hero-feature {
  display: block;
  height: 100%;
}

.hero-mini-item {
  color: inherit;
}
