:root {
  --ink: #29231f;
  --muted: #746c65;
  --line: #e5d9cd;
  --soft: #f5eee7;
  --paper: #fffaf5;
  --white: #fffefa;
  --red: #c65343;
  --red-dark: #a83e32;
  --gold: #d49324;
  --green: #287766;
  --blue: #1559d6;
  --blue-soft: #e7efff;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  width: 100%;
  max-width: 100vw;
  min-height: 68px;
  padding: 0 4vw;
  border-bottom: 1px solid var(--line);
  background: #fff7ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.brand-first {
  color: var(--blue);
}

.brand-second {
  margin-left: 4px;
  color: #f05d42;
}

.header-note,
.back-link {
  color: var(--muted);
  font-size: 14px;
}

.back-link {
  flex: 0 0 auto;
  text-decoration: none;
}

.back-link:hover {
  color: var(--red);
}

.catalog-shell,
.detail-shell {
  width: min(1380px, 92vw);
  margin: 0 auto;
}

.catalog-heading {
  min-height: 178px;
  padding: 42px 0 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
}

h2 {
  margin: 0;
  font-size: 28px;
}

.catalog-summary {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-controls,
.dictionary-controls {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 12px;
}

.search-control {
  width: 290px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #d8c9bc;
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-control:focus-within,
.select-control select:focus {
  outline: 2px solid rgba(198, 83, 67, 0.24);
  border-color: var(--red);
}

.search-control span {
  color: var(--muted);
  font-size: 23px;
  line-height: 1;
}

.search-control input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
}

.select-control {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.select-control select {
  height: 42px;
  margin-left: 8px;
  padding: 0 34px 0 12px;
  border: 1px solid #d8c9bc;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  text-transform: none;
}

.select-control.compact select {
  margin-left: 0;
}

.movie-list-header,
.movie-row {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 210px 100px 100px 66px 174px;
  gap: 18px;
  align-items: center;
}

.level-filter {
  margin: 16px 0;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 5px 18px rgba(75, 54, 43, 0.08);
}

.level-option {
  min-width: 0;
  min-height: 68px;
  padding: 10px 18px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.level-option:last-child {
  border-right: 0;
}

.level-option:hover {
  background: #fff5ec;
}

.level-option.active {
  position: relative;
  background: var(--blue-soft);
  box-shadow: inset 0 0 0 2px var(--blue);
  color: var(--blue);
}

.level-option > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.level-option strong {
  font-size: 14px;
}

.level-option small {
  color: var(--muted);
  font-size: 10px;
}

.level-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 850;
}

.level-icon.all {
  background: var(--blue);
  color: var(--white);
}

.level-icon.easy {
  background: #dff3e8;
  color: var(--green);
}

.level-icon.medium {
  background: #fff0c9;
  color: #9a6410;
}

.level-icon.hard {
  background: #ffe1dc;
  color: var(--red);
}

.movie-list-header {
  min-height: 42px;
  padding: 0 20px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-shell > section {
  padding-top: 0;
}

.watch-region-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.watch-region-heading select {
  width: 78px;
  flex: 0 0 78px;
  height: 28px;
  padding: 0 20px 0 6px;
  border: 1px solid #d8c9bc;
  background: var(--white);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: none;
}

.watch-region-heading select:focus {
  outline: 2px solid rgba(198, 83, 67, 0.24);
  border-color: var(--red);
}

.cinema-hero {
  min-height: 330px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  isolation: isolate;
}

.cinema-hero::before {
  content: "";
  width: 44%;
  height: 72%;
  position: absolute;
  right: 4%;
  top: 14%;
  z-index: -2;
  border-radius: 50%;
  background: #dff3e8;
  transform: rotate(-5deg);
}

.hero-copy {
  width: min(48%, 560px);
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  color: var(--red);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 62px;
  font-weight: 850;
}

.hero-copy h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 750;
  line-height: 1.18;
}

.hero-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-posters {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.hero-poster {
  width: 160px;
  aspect-ratio: 2 / 3;
  position: absolute;
  top: 44px;
  overflow: hidden;
  border: 4px solid var(--white);
  border-radius: 6px;
  box-shadow: 0 14px 30px rgba(41, 35, 31, 0.2);
  transition: transform 160ms ease;
}

.hero-poster:hover {
  z-index: 5;
}

.hero-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-poster-1 {
  right: 330px;
  transform: rotate(-7deg);
}

.hero-poster-1:hover {
  transform: rotate(-7deg) translateY(-7px);
}

.hero-poster-2 {
  right: 178px;
  top: 28px;
  transform: rotate(2deg);
}

.hero-poster-2:hover {
  transform: rotate(2deg) translateY(-7px);
}

.hero-poster-3 {
  right: 30px;
  transform: rotate(7deg);
}

.hero-poster-3:hover {
  transform: rotate(7deg) translateY(-7px);
}

.catalog-section {
  margin-top: 28px;
}

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

.movie-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 22px;
}

.movie-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 16px rgba(75, 54, 43, 0.08);
}

.card-poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  position: relative;
  overflow: hidden;
  background: #403732;
  display: block;
}

.card-poster > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.card-rating {
  min-width: 64px;
  min-height: 42px;
  padding: 5px 9px;
  position: absolute;
  top: 12px;
  right: 0;
  background: rgba(255, 254, 250, 0.96);
  color: var(--ink);
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 0 4px;
  box-shadow: 0 3px 12px rgba(41, 35, 31, 0.18);
}

.card-rating > span {
  color: var(--gold);
}

.card-rating strong {
  font-size: 15px;
}

.card-rating small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  text-align: center;
  text-transform: uppercase;
}

.card-body {
  min-height: 260px;
  padding: 16px;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
}

.card-title-row {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.card-title-row > div {
  min-width: 0;
}

.card-title-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.15;
}

.card-title-row h3 a {
  text-decoration: none;
}

.card-title-row h3 a:hover {
  color: var(--blue);
}

.card-title-row p {
  margin: 5px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.card-title-row .difficulty {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.coverage-card {
  min-height: 62px;
  padding: 10px 12px;
  background: var(--soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.coverage-number {
  color: var(--green);
  font-size: 29px;
  font-weight: 850;
  line-height: 1;
}

.coverage-card > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coverage-card strong {
  font-size: 12px;
}

.coverage-card small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.movie-card .catalog-watch {
  min-height: 38px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 10px;
}

.movie-card .watch-offer {
  max-width: calc(50% - 5px);
}

.movie-card .primary-action {
  width: 100%;
  margin-top: auto;
}

.movie-card[data-difficulty="easy"] .difficulty-bars i.filled {
  background: var(--green);
}

.movie-card[data-difficulty="medium"] .difficulty-bars i.filled {
  background: var(--gold);
}

.movie-card[data-difficulty="hard"] .difficulty-bars i.filled {
  background: var(--red);
}

.movie-row {
  min-height: 132px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.movie-row:hover {
  background: #fff5ec;
}

.movie-identity {
  min-width: 0;
  display: grid;
  grid-template-columns: 28px 66px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.simplicity-rank {
  color: #96887c;
  font-size: 12px;
  font-weight: 800;
}

.poster {
  width: 66px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #403732;
}

.poster img,
.detail-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.poster-fallback {
  width: 100%;
  height: 100%;
  padding: 8px;
  display: grid;
  place-items: center;
  background: #403732;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.poster-fallback.large {
  font-size: 34px;
}

.movie-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.movie-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

.movie-copy > span {
  color: var(--muted);
  font-size: 13px;
}

.movie-copy .coverage-note {
  color: var(--green);
  font-weight: 650;
}

.movie-copy .difficulty {
  display: flex;
  align-items: center;
  gap: 7px;
}

.movie-copy .difficulty > strong {
  overflow: visible;
  color: var(--muted);
  font-family: inherit;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  white-space: normal;
}

.difficulty-bars {
  display: inline-grid;
  grid-template-columns: repeat(5, 10px);
  gap: 3px;
}

.difficulty-bars i {
  width: 10px;
  height: 5px;
  border-radius: 2px;
  background: var(--line);
}

.movie-row[data-difficulty="easy"] .difficulty-bars i.filled {
  background: var(--green);
}

.movie-row[data-difficulty="medium"] .difficulty-bars i.filled {
  background: var(--gold);
}

.movie-row[data-difficulty="hard"] .difficulty-bars i.filled {
  background: var(--red);
}

.catalog-watch {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.catalog-watch-status {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.catalog-watch-status.error {
  color: var(--red);
}

.watch-offer {
  max-width: 100%;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.3;
  text-decoration: none;
}

.watch-offer strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-offer small {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 10px;
}

.watch-offer:hover strong {
  text-decoration: underline;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric strong {
  font-size: 17px;
}

.metric small {
  color: var(--muted);
  font-size: 11px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating span,
.gold {
  color: var(--gold);
}

.primary-action {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 750;
}

.primary-action:hover {
  background: var(--red-dark);
}

.loading-row,
.error-state,
.empty-state {
  padding: 36px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer {
  min-height: 90px;
  margin-top: 64px;
  padding: 24px 4vw;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 700;
}

.tmdb-credit {
  padding: 4px 8px;
  background: #0d253f;
  color: #90cea1;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.watchmode-credit {
  color: var(--ink);
  font-weight: 700;
}

.movie-overview {
  min-height: 330px;
  padding: 42px 0;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.detail-poster {
  width: 156px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #403732;
  box-shadow: 0 12px 28px rgba(75, 54, 43, 0.18);
}

.overview-copy h1 {
  font-size: 42px;
}

.movie-meta {
  color: var(--muted);
}

.overview-metrics {
  width: fit-content;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(110px, 160px));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.overview-metrics > span {
  min-height: 78px;
  padding: 15px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.overview-metrics strong {
  font-size: 19px;
}

.overview-metrics small {
  color: var(--muted);
  font-size: 11px;
}

.dictionary-section {
  border-top: 1px solid var(--ink);
}

.watch-section {
  padding: 28px 0;
  border-top: 1px solid var(--ink);
}

.watch-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.watch-content {
  min-height: 64px;
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px 42px;
}

.provider-group h3 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.provider-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provider {
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.provider > span:first-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.provider small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
}

.provider:hover {
  border-color: var(--red);
}

.external-arrow {
  color: var(--red);
}

.watch-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.watch-status.error {
  color: var(--red);
}

.watch-link {
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  border: 1px solid var(--red);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.watch-attribution {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.dictionary-heading {
  padding: 28px 0 22px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.dictionary-heading p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.table-wrap {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  background: var(--white);
  overscroll-behavior-inline: contain;
}

.dictionary-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
}

.dictionary-table th {
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
}

.dictionary-table th:nth-child(1) {
  width: 12%;
}

.dictionary-table th:nth-child(2) {
  width: 16%;
}

.dictionary-table th:nth-child(3) {
  width: 36%;
}

.dictionary-table th:nth-child(4) {
  width: 9%;
}

.dictionary-table th:nth-child(5) {
  width: 27%;
}

.dictionary-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 13px;
}

.lemma {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.pos-label {
  margin-top: 4px;
  display: block;
  color: var(--muted);
  font-size: 11px;
}

.forms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.word-form {
  min-height: 30px;
  padding: 5px 8px;
  border-left: 2px solid var(--red);
  background: var(--soft);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.word-form span,
.word-form small {
  color: var(--muted);
  font-size: 10px;
}

.count-cell,
.coverage-cell {
  font-weight: 700;
}

.examples summary {
  cursor: pointer;
  color: var(--red);
  font-weight: 700;
}

.examples ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.examples li {
  margin-bottom: 8px;
  padding-left: 10px;
  border-left: 2px solid var(--line);
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .cinema-hero {
    min-height: 310px;
  }

  .hero-copy h1 {
    font-size: 52px;
  }

  .hero-poster {
    width: 138px;
  }

  .hero-poster-1 {
    right: 260px;
  }

  .hero-poster-2 {
    right: 136px;
  }

  .hero-poster-3 {
    right: 14px;
  }

  .movie-list-header {
    min-height: 48px;
    display: flex;
    justify-content: center;
  }

  .movie-list-header > span {
    display: none;
  }

  .movie-row {
    grid-template-columns: minmax(280px, 1fr) 150px 100px 78px;
  }

  .movie-row > .metric:nth-of-type(2) {
    display: none;
  }

  .primary-action {
    grid-column: 3 / -1;
  }

  .dictionary-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .watch-heading {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
  }

  .header-note {
    display: none;
  }

  .back-link {
    position: absolute;
    top: 25px;
    right: 16px;
  }

  .back-label {
    font-size: 0;
  }

  .back-label::after {
    content: "Library";
    font-size: 14px;
  }

  .catalog-shell,
  .detail-shell {
    width: min(100% - 28px, 1380px);
  }

  .cinema-hero {
    min-height: 430px;
    padding-top: 28px;
    align-items: flex-start;
  }

  .cinema-hero::before {
    width: 100%;
    height: 48%;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-posters {
    width: 100%;
    height: 235px;
    top: auto;
    bottom: 0;
  }

  .hero-poster {
    width: 116px;
    top: 25px;
  }

  .hero-poster-1 {
    left: 4px;
    right: auto;
  }

  .hero-poster-2 {
    left: calc(50% - 58px);
    right: auto;
    top: 14px;
  }

  .hero-poster-3 {
    right: 4px;
  }

  .level-filter {
    margin: 10px 0;
    grid-template-columns: repeat(4, 25%);
  }

  .level-option {
    min-height: 58px;
    padding: 8px 5px;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
  }

  .level-option > span:last-child {
    align-items: center;
  }

  .level-option small {
    display: none;
  }

  .level-icon {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
    font-size: 10px;
  }

  .level-option strong {
    font-size: 11px;
    white-space: nowrap;
  }

  .watch-region-heading {
    min-width: 220px;
    justify-content: center;
  }

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

  .catalog-section-heading .watch-region-heading {
    width: 100%;
    justify-content: flex-start;
  }

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

  .catalog-heading {
    min-height: 0;
    padding: 30px 0 22px;
    align-items: stretch;
    flex-direction: column;
  }

  h1,
  .overview-copy h1 {
    font-size: 32px;
  }

  .catalog-controls,
  .dictionary-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .search-control {
    width: 100%;
  }

  .select-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .select-control select {
    min-width: 0;
    max-width: calc(100% - 64px);
    flex: 1;
  }

  .movie-row {
    min-height: 0;
    padding: 16px 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .movie-identity {
    grid-column: 1 / -1;
    grid-template-columns: 20px 58px minmax(0, 1fr);
    gap: 10px;
  }

  .poster {
    width: 58px;
  }

  .movie-copy strong {
    white-space: normal;
    font-size: 18px;
  }

  .movie-row > .metric:nth-of-type(2) {
    display: flex;
  }

  .catalog-watch {
    grid-column: 1 / -1;
  }

  .rating {
    justify-self: start;
  }

  .primary-action {
    grid-column: 1 / -1;
  }

  .movie-overview {
    padding: 30px 0;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .overview-copy,
  .dictionary-section,
  .watch-section {
    min-width: 0;
  }

  .detail-poster {
    width: 92px;
  }

  .overview-metrics {
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
