:root {
  --amber: #d97706;
  --orange: #ea580c;
  --rose: #e11d48;
  --pink: #db2777;
  --ink: #1f2937;
  --muted: #6b7280;
  --paper: #ffffff;
  --soft: #fff7ed;
  --line: rgba(251, 146, 60, 0.24);
  --shadow: 0 18px 45px rgba(120, 53, 15, 0.13);
  --deep-shadow: 0 26px 70px rgba(127, 29, 29, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #fffbeb 0%, #fff7ed 48%, #fff1f2 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(251, 146, 60, 0.22);
}

.nav-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 21px;
  color: #9a3412;
  white-space: nowrap;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange), var(--rose));
  box-shadow: 0 12px 26px rgba(234, 88, 12, 0.32);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.nav-link {
  padding: 10px 13px;
  border-radius: 999px;
  color: #4b5563;
  font-size: 15px;
  font-weight: 700;
  transition: 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 12px 24px rgba(234, 88, 12, 0.24);
}

.nav-search,
.mobile-panel form {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
  box-shadow: 0 12px 28px rgba(251, 146, 60, 0.12);
}

.nav-search input,
.mobile-panel input,
.hero-search input,
.page-search {
  border: 0;
  outline: 0;
  background: transparent;
  color: #374151;
}

.nav-search input {
  width: 210px;
  padding: 8px 10px;
}

.nav-search button,
.mobile-panel button[type="submit"],
.hero-search button,
.primary-btn,
.secondary-btn,
.ghost-btn,
.hero-small-link {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: 0.24s ease;
}

.nav-search button,
.mobile-panel button[type="submit"],
.hero-search button,
.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange), var(--rose));
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.3);
}

.nav-search button {
  padding: 8px 14px;
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--rose));
}

.mobile-panel {
  display: none;
  padding: 0 20px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
}

.mobile-panel nav {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber), var(--orange), var(--rose));
}

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

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

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(1.08);
  transform: scale(1.06);
  opacity: 0.58;
}

.hero-shade {
  background:
    radial-gradient(circle at 78% 40%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(120, 53, 15, 0.96) 0%, rgba(194, 65, 12, 0.82) 48%, rgba(159, 18, 57, 0.76) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 68px 20px 92px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 360px;
  align-items: center;
  gap: 46px;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.17);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.hero h1 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.hero p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #ffedd5;
  font-size: clamp(18px, 2.5vw, 25px);
  line-height: 1.75;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.96), rgba(234, 88, 12, 0.96));
  font-size: 12px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.primary-btn,
.secondary-btn,
.ghost-btn,
.hero-small-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
}

.primary-btn:hover,
.secondary-btn:hover,
.hero-search button:hover,
.nav-search button:hover {
  transform: translateY(-2px) scale(1.02);
}

.ghost-btn {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.ghost-btn:hover {
  color: #c2410c;
  background: #ffffff;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--deep-shadow);
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.38);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

.hero-poster span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(12px);
  font-weight: 800;
}

.hero-control-panel {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
}

.hero-control-panel button {
  border: 0;
  color: #ffffff;
  background: transparent;
}

.hero-control-panel > button {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 28px;
  line-height: 1;
}

.hero-control-panel > button:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42) !important;
}

.hero-dot.active {
  width: 30px;
  background: #ffffff !important;
}

.quick-search-section {
  max-width: 1280px;
  margin: -38px auto 0;
  padding: 0 20px 34px;
  position: relative;
  z-index: 6;
}

.hero-search {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(251, 146, 60, 0.25);
  box-shadow: var(--shadow);
}

.hero-search input {
  flex: 1;
  padding: 13px 16px;
  font-size: 16px;
}

.hero-search button {
  padding: 0 24px;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.section-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 54px 20px;
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading h2 {
  display: inline-block;
  margin: 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  color: #1f2937;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.spark {
  color: #f59e0b;
  font-size: 28px;
}

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

.all-grid,
.rank-page-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.movie-card {
  min-width: 0;
}

.movie-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(120, 53, 15, 0.2);
}

.poster-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #fed7aa, #fecdd3);
}

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

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

.year-badge,
.score-badge,
.rank-no {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.year-badge {
  left: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(194, 65, 12, 0.92);
  font-size: 12px;
}

.score-badge {
  right: 12px;
  top: 12px;
  padding: 6px 10px;
  background: rgba(225, 29, 72, 0.92);
  font-size: 12px;
}

.rank-no {
  left: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #f59e0b, #e11d48);
  font-size: 16px;
}

.movie-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 16px;
}

.movie-info h3 {
  margin: 0;
  color: #1f2937;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.movie-info p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #9a3412;
  font-size: 13px;
  font-weight: 800;
}

.tag-row span {
  color: #9a3412;
  background: #ffedd5;
}

.center-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.left-actions {
  justify-content: flex-start;
}

.secondary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  box-shadow: 0 16px 32px rgba(234, 88, 12, 0.26);
}

.secondary-btn.muted {
  color: #9a3412;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.soft-panel {
  max-width: 1220px;
  margin-top: 20px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

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

.category-tile {
  min-height: 145px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange), var(--rose));
  box-shadow: 0 18px 40px rgba(234, 88, 12, 0.2);
  transition: transform 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-6px);
}

.category-tile strong {
  font-size: 22px;
}

.category-tile span {
  color: #ffedd5;
  line-height: 1.65;
  font-size: 14px;
}

.page-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 68px 20px;
  text-align: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange), var(--rose));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.24), transparent 34%), rgba(0, 0, 0, 0.18);
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.page-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
}

.page-hero p {
  margin: 0 auto;
  color: #ffedd5;
  font-size: 20px;
  line-height: 1.8;
}

.orange-hero {
  background: linear-gradient(135deg, #ea580c, #e11d48);
}

.rose-hero {
  background: linear-gradient(135deg, #be123c, #db2777);
}

.category-hero {
  background: linear-gradient(135deg, #d97706, #ea580c, #be123c);
}

.hero-small-link {
  margin-top: 24px;
  color: #c2410c;
  background: #ffffff;
}

.toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 26px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.page-search {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
}

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

.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: #9a3412;
  background: #ffffff;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--orange));
}

.empty-state {
  display: none;
  padding: 48px;
  text-align: center;
  color: #9a3412;
  font-weight: 800;
}

.empty-state.show {
  display: block;
}

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

.category-card-large {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  overflow: hidden;
  min-height: 220px;
  padding: 18px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card-large:hover {
  transform: translateY(-6px);
  box-shadow: var(--deep-shadow);
}

.category-card-large img {
  width: 170px;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
}

.category-card-large h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.category-card-large p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

.category-card-large span {
  color: #ea580c;
  font-weight: 900;
}

.detail-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 20px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: #92400e;
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #e11d48;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 30px;
  align-items: start;
}

.player-area {
  display: grid;
  gap: 18px;
}

.player-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #111827;
  box-shadow: var(--deep-shadow);
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.player-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111827;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 0;
  color: #ffffff;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.64));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.play-icon {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding-left: 5px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  box-shadow: 0 18px 38px rgba(225, 29, 72, 0.35);
  font-size: 34px;
}

.play-overlay span:last-child {
  font-size: 18px;
  font-weight: 900;
}

.info-card,
.detail-content,
.content-card {
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.info-card {
  padding: 22px;
}

.info-card h2,
.detail-content h2,
.content-card h2 {
  margin: 0 0 16px;
  color: #1f2937;
}

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

.info-grid div {
  padding: 13px;
  border-radius: 16px;
  background: #fff7ed;
}

.info-grid span {
  color: var(--muted);
}

.info-grid strong {
  color: #9a3412;
}

.detail-content {
  padding: 30px;
}

.detail-content h1 {
  margin: 18px 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.lead-text {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.8;
}

.detail-score {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 24px;
}

.detail-score span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #9a3412;
  background: #ffedd5;
  font-weight: 900;
}

.detail-content p,
.content-card p {
  color: #4b5563;
  line-height: 1.9;
  font-size: 16px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.related-section {
  padding-top: 30px;
}

.text-panel {
  max-width: 980px;
}

.content-card {
  padding: 34px;
}

.site-footer {
  margin-top: 50px;
  color: #ffedd5;
  background: linear-gradient(135deg, #7c2d12, #9f1239);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 38px 20px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-inner p {
  max-width: 520px;
  color: #fed7aa;
  line-height: 1.8;
}

.footer-logo {
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 12px;
}

.footer-links a {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.footer-bottom {
  padding: 16px 20px;
  text-align: center;
  color: #fed7aa;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.hero-copy,
.section-wrap,
.detail-grid {
  animation: fadeIn 0.55s ease both;
}

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

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

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-panel.open {
    display: block;
  }

  .hero {
    height: auto;
    min-height: 720px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    padding-top: 54px;
    gap: 28px;
  }

  .hero-poster {
    width: min(320px, 80vw);
    margin: 0 auto;
  }

  .hero-mini-grid,
  .movie-grid,
  .all-grid,
  .rank-page-grid,
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-large-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding: 12px 14px;
  }

  .logo {
    font-size: 18px;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 760px;
  }

  .hero h1 {
    font-size: 40px;
  }

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

  .hero-actions,
  .hero-search,
  .footer-inner,
  .detail-actions,
  .center-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search button {
    min-height: 46px;
  }

  .section-wrap {
    padding: 38px 14px;
  }

  .quick-search-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-mini-grid,
  .movie-grid,
  .all-grid,
  .rank-page-grid,
  .category-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

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

  .category-card-large img {
    width: 100%;
    height: 230px;
  }

  .detail-wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .detail-content,
  .content-card {
    padding: 22px;
  }
}
