:root {
  --primary-50: #f0f9ff;
  --primary-100: #e0f2fe;
  --primary-400: #38bdf8;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --primary-700: #0369a1;
  --accent-500: #d97706;
  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #1e293b;
  --secondary-900: #0f172a;
  --white: #ffffff;
  --shadow-soft: 0 2px 15px -3px rgba(0, 0, 0, 0.07), 0 10px 20px -2px rgba(0, 0, 0, 0.04);
  --shadow-strong: 0 22px 55px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--secondary-900);
  background: var(--secondary-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(16px);
}

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

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--secondary-900);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-400));
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-size: 20px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

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

.nav-link {
  color: var(--secondary-700);
  font-size: 15px;
  font-weight: 650;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-600);
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 220px;
}

.header-search input {
  width: 100%;
  height: 40px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--secondary-300);
  border-radius: 12px;
  outline: none;
  background: var(--white);
}

.header-search input:focus,
.search-panel input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.18);
}

.header-search button {
  position: absolute;
  right: 5px;
  width: 32px;
  height: 32px;
  border: 0;
  color: var(--secondary-500);
  background: transparent;
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  border: 0;
  color: var(--secondary-700);
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 18px;
  border-top: 1px solid var(--secondary-200);
}

.mobile-panel a {
  display: block;
  padding: 12px 0;
  color: var(--secondary-700);
  font-weight: 650;
}

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

.hero-carousel {
  position: relative;
  height: min(72vh, 620px);
  min-height: 500px;
  overflow: hidden;
  background: #000;
}

.hero-track,
.hero-slide,
.hero-slide > img,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-gradient {
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.05));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 82px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-content h1 {
  max-width: 860px;
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
}

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

.hero-tags span {
  padding: 6px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 14px;
}

.hero-actions {
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--primary-600);
  box-shadow: 0 14px 28px rgba(2, 132, 199, 0.28);
}

.btn-primary:hover {
  background: var(--primary-700);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.btn-light {
  color: var(--primary-700);
  background: var(--primary-50);
  border-color: var(--primary-100);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  border-radius: 999px;
  font-size: 36px;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--white);
}

.page-stack {
  display: grid;
  gap: 64px;
  padding-top: 48px;
  padding-bottom: 64px;
}

.section-title {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}

.section-title > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--primary-600);
  background: var(--primary-50);
  border-radius: 12px;
}

.section-title h2 {
  margin: 0;
  color: var(--secondary-900);
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-title p {
  margin: 4px 0 0;
  color: var(--secondary-600);
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

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

.movie-card,
.movie-row,
.category-panel,
.detail-card,
.filter-panel,
.search-panel {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.movie-card {
  display: block;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.movie-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}

.poster {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--secondary-200);
}

.poster-wide {
  aspect-ratio: 16 / 9;
}

.poster img,
.row-poster img,
.category-tile img,
.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.movie-card:hover .poster img,
.movie-row:hover .row-poster img,
.category-tile:hover img,
.category-panel:hover .category-cover img {
  transform: scale(1.08);
}

.poster-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.card-body {
  padding: 16px;
}

.card-body h3,
.movie-card-large h3 {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--secondary-900);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body p,
.movie-card-large p {
  display: -webkit-box;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--secondary-600);
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--secondary-500);
  font-size: 13px;
}

.movie-card-large {
  position: relative;
  border-radius: 20px;
}

.card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.18), transparent);
}

.movie-card-large figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px;
}

.movie-card-large h3,
.movie-card-large p {
  color: var(--white);
}

.movie-card-large figcaption span {
  display: inline-flex;
  margin: 4px 6px 0 0;
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 12px;
}

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

.category-tile {
  position: relative;
  min-height: 180px;
  padding: 20px;
  overflow: hidden;
  color: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.category-tile img,
.tile-overlay {
  position: absolute;
  inset: 0;
}

.tile-overlay {
  z-index: 1;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.26));
}

.category-tile strong,
.category-tile em {
  position: relative;
  z-index: 2;
  display: block;
}

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

.category-tile em {
  max-width: 260px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

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

.movie-row {
  display: flex;
  gap: 14px;
  padding: 12px;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

.row-poster {
  width: 154px;
  flex: 0 0 154px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--secondary-200);
  border-radius: 12px;
}

.row-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.row-body strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--secondary-900);
  font-size: 17px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.row-body em {
  display: -webkit-box;
  margin-top: 6px;
  overflow: hidden;
  color: var(--secondary-600);
  font-size: 14px;
  font-style: normal;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.row-body span {
  margin-top: 8px;
  color: var(--secondary-500);
  font-size: 13px;
}

.rank-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  color: var(--white);
  background: var(--primary-600);
  border-radius: 8px;
  font-size: 13px;
}

.more-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary-700);
  font-weight: 750;
}

.subpage {
  min-height: 70vh;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  color: var(--white);
  background: radial-gradient(circle at 10% 10%, rgba(56, 189, 248, 0.36), transparent 30%), linear-gradient(135deg, #0f172a, #0369a1);
}

.page-hero.compact {
  padding: 72px 0;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .breadcrumb {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--secondary-500);
  font-size: 14px;
}

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

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

.ranking-hero {
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  background: #000;
}

.ranking-hero > img,
.page-hero-shade {
  position: absolute;
  inset: 0;
}

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

.page-hero-shade {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.28));
}

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

.category-panel {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 20px;
  padding: 18px;
}

.category-cover {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--secondary-200);
}

.category-cover span {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent);
}

.category-panel h2 {
  margin: 4px 0 8px;
  font-size: 24px;
}

.category-panel p {
  margin: 0 0 14px;
  color: var(--secondary-600);
  line-height: 1.7;
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.preview-tags span {
  padding: 5px 9px;
  color: var(--secondary-700);
  background: var(--secondary-100);
  border-radius: 999px;
  font-size: 12px;
}

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

.filter-panel label {
  display: grid;
  gap: 8px;
  color: var(--secondary-600);
  font-size: 13px;
  font-weight: 750;
}

.filter-panel input,
.filter-panel select,
.search-panel input {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--secondary-300);
  border-radius: 12px;
  outline: none;
  background: var(--white);
}

.empty-state,
.search-status {
  display: none;
  padding: 34px;
  color: var(--secondary-600);
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.empty-state.is-visible,
.search-status.is-visible {
  display: block;
}

.search-panel {
  display: flex;
  gap: 12px;
  max-width: 680px;
  margin-top: 26px;
  padding: 12px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
  gap: 28px;
  padding-top: 32px;
  padding-bottom: 64px;
}

.detail-main {
  min-width: 0;
}

.player-shell {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
}

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

.player-start {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  color: var(--white);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.08));
  cursor: pointer;
}

.player-start span {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  padding-left: 5px;
  color: var(--primary-600);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  font-size: 32px;
  box-shadow: var(--shadow-strong);
}

.player-start strong {
  font-size: 18px;
}

.player-shell.is-playing .player-start {
  display: none;
}

.player-loading,
.player-error {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: none;
  padding: 14px 18px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.62);
  border-radius: 12px;
  transform: translate(-50%, -50%);
}

.player-shell.is-loading .player-loading,
.player-error.is-visible {
  display: block;
}

.player-tools {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  gap: 10px;
  padding: 18px;
  opacity: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82), transparent);
  transition: opacity 0.2s ease;
}

.player-shell:hover .player-tools,
.player-shell:focus-within .player-tools {
  opacity: 1;
}

.player-tools button {
  border: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 8px 12px;
  cursor: pointer;
}

.detail-card {
  margin-top: 22px;
  padding: 26px;
}

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.16;
}

.lead {
  margin: 0 0 24px;
  color: var(--primary-700);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

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

.info-grid div {
  padding: 16px;
  background: var(--secondary-50);
  border-radius: 14px;
}

.info-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--secondary-500);
  font-size: 12px;
}

.info-grid strong {
  color: var(--secondary-900);
}

.tag-cloud,
.text-section {
  margin-top: 26px;
}

.tag-cloud h2,
.text-section h2,
.sticky-box h2 {
  margin: 0 0 12px;
  color: var(--secondary-900);
  font-size: 20px;
}

.tag-cloud div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.tag-cloud span {
  padding: 7px 12px;
  color: var(--primary-700);
  background: var(--primary-50);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.text-section p {
  margin: 0;
  color: var(--secondary-700);
  font-size: 16px;
  line-height: 1.9;
}

.detail-side {
  min-width: 0;
}

.sticky-box {
  position: sticky;
  top: 90px;
}

.side-grid {
  display: grid;
  gap: 16px;
}

.site-footer {
  margin-top: 32px;
  color: var(--white);
  background: var(--secondary-900);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 48px 0;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 18px;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: var(--secondary-400);
  font-size: 14px;
  line-height: 1.8;
}

.site-footer a:hover {
  color: var(--primary-400);
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 8px;
}

.footer-brand {
  margin-bottom: 14px;
  color: var(--white);
}

.footer-bottom {
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid var(--secondary-800);
}

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

  .mobile-menu-button {
    display: block;
  }

  .header-search {
    margin-left: auto;
  }

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

  .grid-large,
  .home-split,
  .detail-layout,
  .footer-grid,
  .category-panels {
    grid-template-columns: 1fr;
  }

  .detail-side .movie-card {
    max-width: none;
  }
}

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

  .hero-carousel {
    min-height: 560px;
  }

  .hero-content {
    padding-bottom: 86px;
  }

  .hero-arrow {
    display: none;
  }

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

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

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

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

  .row-poster {
    width: 118px;
    flex-basis: 118px;
  }

  .page-hero {
    padding: 56px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1280px);
  }

  .brand-name {
    font-size: 18px;
  }

  .hero-carousel {
    min-height: 540px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .grid-cards,
  .mini-grid,
  .category-grid,
  .filter-panel,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .movie-row {
    align-items: stretch;
  }

  .row-poster {
    width: 104px;
    flex-basis: 104px;
  }

  .search-panel {
    flex-direction: column;
  }

  .detail-card {
    padding: 20px;
  }
}
