:root {
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --rose-500: #f43f5e;
  --blue-500: #3b82f6;
  --green-500: #22c55e;
  --cyan-500: #06b6d4;
  --violet-500: #8b5cf6;
  --pink-500: #ec4899;
  --shadow-soft: 0 20px 55px rgba(15, 23, 42, 0.16);
  --shadow-card: 0 12px 28px rgba(15, 23, 42, 0.10);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--slate-900);
  background: linear-gradient(180deg, var(--slate-50), var(--slate-100));
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, var(--slate-950), var(--slate-800), var(--slate-950));
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.26);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--slate-950);
  background: radial-gradient(circle at 30% 30%, #fde68a, var(--amber-500));
  border-radius: 16px;
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.45);
}

.logo-text {
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
}

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

.nav-link {
  padding: 10px 16px;
  color: #cbd5e1;
  border-radius: 999px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: white;
  background: rgba(245, 158, 11, 0.18);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.10);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(115deg, var(--slate-950), #78350f, var(--slate-950));
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 34px, rgba(255, 255, 255, 0.09) 34px, rgba(255, 255, 255, 0.09) 70px);
}

.hero-slider {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  min-height: 620px;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: 44px;
  padding: 72px 0 96px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
  filter: blur(10px) saturate(1.2);
  transform: scale(1.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 36%, rgba(245, 158, 11, 0.28), transparent 38%), linear-gradient(90deg, rgba(2, 6, 23, 0.95), rgba(15, 23, 42, 0.72), rgba(2, 6, 23, 0.90));
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 13px;
  color: #fef3c7;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.38);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero h1 {
  max-width: 780px;
  margin: 22px 0 12px;
  font-size: clamp(2.2rem, 6vw, 4.8rem);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.hero h2 {
  margin: 0 0 18px;
  color: var(--amber-400);
  font-size: clamp(1.45rem, 3vw, 2.45rem);
  font-weight: 900;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: #e2e8f0;
  font-size: 1.05rem;
  line-height: 1.86;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.detail-tags span,
.card-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.btn.primary {
  color: var(--slate-950);
  background: linear-gradient(135deg, #fef3c7, var(--amber-500));
  box-shadow: 0 16px 32px rgba(245, 158, 11, 0.32);
}

.btn.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

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

.hero-poster,
.detail-cover {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.hero-poster span,
.detail-cover span {
  display: block;
  padding: 15px 18px;
  color: var(--slate-950);
  background: linear-gradient(135deg, #fef3c7, var(--amber-500));
  font-weight: 950;
  text-align: center;
}

.hero-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 32px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-prev,
.hero-next,
.hero-dot {
  border: 0;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  transition: background 0.25s ease, transform 0.25s ease;
}

.hero-prev,
.hero-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}

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

.hero-dot {
  width: 28px;
  height: 8px;
  border-radius: 99px;
}

.hero-dot.active,
.hero-prev:hover,
.hero-next:hover {
  background: var(--amber-500);
  transform: scale(1.08);
}

.quick-search,
.section-block,
.category-overview-card,
.detail-content,
.player-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.quick-search {
  transform: translateY(-28px);
  position: relative;
  z-index: 6;
}

.search-strip {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.search-strip label,
.filter-panel label span {
  font-weight: 900;
  color: var(--slate-800);
}

.search-strip input,
.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: var(--slate-900);
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: none;
}

.search-strip input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.search-strip button {
  min-height: 46px;
  padding: 0 20px;
  color: white;
  background: linear-gradient(135deg, var(--slate-900), #92400e);
  border: 0;
  border-radius: 14px;
  font-weight: 900;
}

.section-block {
  padding: 48px 0;
}

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

.section-heading > span {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  color: var(--slate-950);
  background: linear-gradient(135deg, #fde68a, var(--amber-500));
  border-radius: 16px;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.22);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--slate-600);
  line-height: 1.7;
}

.section-heading a {
  margin-left: auto;
  color: var(--amber-600);
  font-weight: 900;
}

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

.category-tile,
.category-overview-head {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 178px;
  padding: 24px;
  color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.category-tile::before,
.category-overview-card::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.30), transparent 26%), radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 28%);
  pointer-events: none;
}

.category-icon {
  font-size: 2rem;
}

.category-tile strong {
  font-size: 1.28rem;
  font-weight: 950;
}

.category-tile em {
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
  line-height: 1.7;
}

.accent-orange { background: linear-gradient(135deg, #f97316, #b91c1c); }
.accent-blue { background: linear-gradient(135deg, #3b82f6, #0891b2); }
.accent-green { background: linear-gradient(135deg, #22c55e, #047857); }
.accent-rose { background: linear-gradient(135deg, #f43f5e, #be123c); }
.accent-violet { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.accent-pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.accent-cyan { background: linear-gradient(135deg, #06b6d4, #2563eb); }
.accent-slate { background: linear-gradient(135deg, #475569, #111827); }

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

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

.movie-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 158, 11, 0.48);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
}

.card-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-800), var(--slate-950));
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, 0.72));
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  padding: 7px 10px;
  color: var(--slate-950);
  background: var(--amber-400);
  border-radius: 999px;
  font-size: 0.78rem;
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 46px;
  height: 30px;
  color: white;
  background: linear-gradient(135deg, #ef4444, #f59e0b);
  border-radius: 999px;
  font-size: 0.82rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
}

.card-body {
  padding: 16px;
}

.card-meta {
  margin: 0 0 8px;
  color: var(--amber-600);
  font-size: 0.8rem;
  font-weight: 900;
}

.card-body h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 1.04rem;
  line-height: 1.35;
  font-weight: 950;
}

.card-body h3 a:hover {
  color: var(--amber-600);
}

.card-desc {
  min-height: 48px;
  margin: 10px 0 12px;
  color: var(--slate-600);
  font-size: 0.9rem;
  line-height: 1.65;
}

.card-tags span {
  color: #475569;
  background: #f8fafc;
  border-color: #e2e8f0;
}

.movie-card.compact .card-body {
  padding: 12px;
}

.movie-card.compact .card-body h3 {
  font-size: 0.95rem;
}

.movie-card.compact .card-desc,
.movie-card.compact .card-tags {
  display: none;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
  padding: 44px;
  color: white;
  background: linear-gradient(115deg, var(--slate-950), #78350f, var(--slate-950));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.compact-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero > *,
.detail-hero > * {
  position: relative;
  z-index: 2;
}

.page-hero h1,
.detail-copy h1 {
  margin: 16px 0 12px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.page-hero p,
.detail-one-line {
  max-width: 800px;
  margin: 0;
  color: #e2e8f0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.filter-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 14px;
}

.filter-panel label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.category-overview-card {
  position: relative;
  margin-top: 34px;
  padding: 24px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.category-overview-head {
  min-height: auto;
  padding: 0 0 22px;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.category-overview-head span {
  font-size: 2rem;
}

.category-overview-head h2 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 950;
}

.category-overview-head p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.detail-page {
  padding-top: 1px;
}

.breadcrumb {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--amber-600);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 350px);
  gap: 34px;
  align-items: center;
}

.detail-tags {
  margin: 22px 0;
}

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

.detail-meta div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
}

.detail-meta dt {
  color: #fcd34d;
  font-size: 0.78rem;
  font-weight: 900;
}

.detail-meta dd {
  margin: 6px 0 0;
  color: white;
  font-weight: 800;
}

.player-section {
  margin-top: 34px;
  padding: 28px;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-800));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.dark-heading h2,
.dark-heading p {
  color: white;
}

.player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: black;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.player video,
.player-cover,
.player-cover img,
.player-cover-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.player video {
  object-fit: contain;
  z-index: 1;
  background: black;
}

.player-cover {
  z-index: 3;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: black;
}

.player-cover img {
  object-fit: cover;
  opacity: 0.78;
}

.player-cover-shade {
  background: radial-gradient(circle, rgba(245, 158, 11, 0.22), rgba(2, 6, 23, 0.62));
}

.player-start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 86px;
  height: 86px;
  display: inline-grid;
  place-items: center;
  color: var(--slate-950);
  background: linear-gradient(135deg, #fef3c7, var(--amber-500));
  border-radius: 999px;
  font-size: 2.1rem;
  font-weight: 950;
  box-shadow: 0 22px 55px rgba(245, 158, 11, 0.42);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.player-cover:hover .player-start {
  transform: translate(-50%, -50%) scale(1.08);
}

.player-cover.hidden {
  display: none;
}

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

.detail-article,
.detail-aside {
  padding: 28px;
  background: white;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.detail-article h2,
.detail-aside h2 {
  margin: 0 0 14px;
  font-size: 1.4rem;
  font-weight: 950;
}

.detail-article p {
  margin: 0 0 24px;
  color: var(--slate-700);
  line-height: 1.95;
}

.detail-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-aside li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
}

.detail-aside strong {
  color: var(--slate-500);
}

.detail-aside span,
.detail-aside a {
  color: var(--slate-900);
  font-weight: 800;
}

.site-footer {
  margin-top: 56px;
  color: #cbd5e1;
  background: linear-gradient(135deg, var(--slate-950), var(--slate-900));
}

.footer-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-brand {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

.footer-brand p {
  margin: 0;
  line-height: 1.75;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.footer-links a {
  padding: 8px 12px;
  color: #fde68a;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.footer-copy {
  margin: 0;
  color: #94a3b8;
}

.movie-card.is-hidden {
  display: none;
}

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

  .hero-poster,
  .detail-cover {
    max-width: 330px;
  }

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

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

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

@media (max-width: 760px) {
  .nav-shell {
    min-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(148, 163, 184, 0.26);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-link {
    text-align: center;
  }

  .hero-slider {
    min-height: 760px;
  }

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 44px 0 90px;
  }

  .hero h1 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .hero-poster {
    max-width: 240px;
  }

  .hero-controls {
    bottom: 22px;
  }

  .search-strip,
  .filter-grid,
  .compact-hero,
  .detail-meta {
    grid-template-columns: 1fr;
    display: grid;
  }

  .compact-hero {
    align-items: start;
  }

  .movie-grid,
  .small-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .section-block,
  .player-section {
    padding-top: 30px;
    padding-bottom: 30px;
  }

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

  .section-heading a {
    display: none;
  }

  .page-hero,
  .detail-hero {
    padding: 28px;
  }

  .detail-content {
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .logo-text {
    font-size: 1.05rem;
  }

  .movie-grid,
  .small-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.compact .card-desc,
  .movie-card.compact .card-tags {
    display: flex;
  }

  .player-start {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
  }
}
