
:root {
  color-scheme: light;
  --orange: #f97316;
  --orange-deep: #ea580c;
  --rose: #f43f5e;
  --amber: #f59e0b;
  --gray-950: #111827;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --paper: #fff7ed;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(17, 24, 39, 0.12);
  --soft-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 44%, #fff7ed 100%);
  color: var(--gray-900);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(249, 115, 22, 0.18);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(17, 24, 39, 0.06);
}

.header-inner {
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--rose), var(--amber));
  box-shadow: 0 8px 22px rgba(249, 115, 22, 0.34);
  font-size: 15px;
}

.brand-text {
  font-size: 22px;
  background: linear-gradient(90deg, var(--orange), var(--rose), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link,
.mobile-link {
  font-weight: 700;
  color: var(--gray-700);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
  color: var(--orange);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: #fff3e6;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gray-700);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  padding: 10px 24px 18px;
  border-top: 1px solid rgba(249, 115, 22, 0.14);
}

.mobile-nav.is-open {
  display: grid;
  gap: 8px;
}

.mobile-link {
  padding: 10px 14px;
  border-radius: 12px;
}

.mobile-link:hover,
.mobile-link.is-active {
  background: #fff3e6;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: #111827;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.6s ease, transform 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 44%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
  position: absolute;
  z-index: 4;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  top: 50%;
  width: min(690px, calc(100% - 48px));
  transform: translateY(-50%);
  color: white;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fed7aa;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-subtitle {
  margin: 0 0 14px;
  color: #ffedd5;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-summary {
  max-width: 620px;
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: 17px;
  line-height: 1.75;
}

.hero-tags,
.movie-tags,
.tag-cloud,
.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span,
.movie-tags span,
.tag-cloud span,
.footer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button,
.section-more,
.rank-action,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.primary-button {
  min-height: 46px;
  padding: 0 22px;
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--rose));
  box-shadow: 0 12px 28px rgba(244, 63, 94, 0.28);
}

.primary-button:hover,
.section-more:hover,
.rank-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(244, 63, 94, 0.32);
}

.ghost-button {
  min-height: 46px;
  padding: 0 20px;
  color: white;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.ghost-button:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}

.hero-search-panel {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  width: min(1232px, calc(100% - 48px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 18px;
  align-items: center;
}

.hero-search {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

.hero-search input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
}

.hero-search input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.hero-search button {
  border: 0;
  padding: 0 22px;
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--rose));
  font-weight: 800;
}

.hero-category-links,
.side-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-category-links a,
.side-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.side-links a {
  color: var(--gray-700);
  background: #fff3e6;
}

.hero-dots {
  position: absolute;
  z-index: 6;
  right: max(24px, calc((100vw - 1280px) / 2 + 24px));
  bottom: 116px;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
}

.hero-dot.is-active {
  width: 34px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--rose));
}

.section-wrap,
.page-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 24px;
}

.page-main {
  padding-top: 34px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 28px;
}

.section-heading > span {
  width: 6px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--rose), var(--amber));
}

.section-heading h2 {
  margin: 0 0 6px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.2;
}

.section-heading p,
.side-panel p,
.category-body p,
.detail-card p,
.side-cover-card p,
.rank-content p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.72;
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 22px;
  background: white;
  box-shadow: var(--soft-shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111827;
}

.movie-card.compact .poster-link {
  aspect-ratio: 16 / 10;
}

.poster-link img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.poster-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.74) 100%);
}

.duration,
.rank-badge,
.play-mark {
  position: absolute;
  z-index: 3;
}

.duration {
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 8px;
  color: white;
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.rank-badge {
  top: 10px;
  left: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(244, 63, 94, 0.28);
}

.play-mark {
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.24);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  backdrop-filter: blur(8px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.movie-info {
  padding: 18px;
}

.movie-info h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.32;
}

.movie-card.compact .movie-info h3 {
  font-size: 16px;
}

.movie-info h3 a:hover,
.rank-content h3 a:hover,
.category-body h2 a:hover {
  color: var(--orange);
}

.movie-meta,
.movie-desc {
  margin: 0 0 10px;
  color: var(--gray-600);
  font-size: 13px;
  line-height: 1.6;
}

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.side-panel,
.detail-card,
.side-cover-card,
.side-info-card,
.category-card,
.toolbar {
  border-radius: 26px;
  background: white;
  box-shadow: var(--soft-shadow);
}

.side-panel {
  position: sticky;
  top: 96px;
  padding: 28px;
}

.side-panel h2,
.side-info-card h2,
.side-cover-card h2,
.category-body h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.side-panel .side-links {
  margin: 22px 0;
}

.wide {
  width: 100%;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 96px 54px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--soft-shadow);
}

.rank-cover {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 16px;
  background: #111827;
}

.rank-cover img {
  height: 100%;
  object-fit: cover;
}

.rank-number {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  font-weight: 900;
}

.rank-content h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.rank-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.rank-meta span {
  color: var(--gray-500);
  font-size: 12px;
}

.rank-action,
.section-more,
.text-link {
  min-height: 40px;
  padding: 0 16px;
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--rose));
  white-space: nowrap;
}

.section-more {
  margin-top: 22px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 36px;
  padding: 54px;
  border-radius: 34px;
  color: white;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 30%), linear-gradient(135deg, var(--orange), var(--rose), var(--amber));
  box-shadow: var(--shadow);
}

.page-hero p {
  margin: 0 0 12px;
  color: #ffedd5;
  font-weight: 900;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
}

.page-hero span {
  display: block;
  max-width: 760px;
  color: #fff7ed;
  font-size: 18px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 22px;
  color: var(--gray-600);
  font-size: 14px;
}

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

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

.category-card {
  overflow: hidden;
}

.category-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111827;
}

.category-cover img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.category-cover:hover img {
  transform: scale(1.08);
}

.category-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78));
}

.category-cover span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  color: white;
  font-size: 24px;
  font-weight: 900;
}

.category-body {
  padding: 22px;
}

.category-samples {
  display: grid;
  gap: 8px;
  margin: 18px 0;
}

.category-samples a {
  color: var(--gray-600);
  font-size: 14px;
}

.category-samples a:hover {
  color: var(--orange);
}

.toolbar {
  display: grid;
  gap: 18px;
  margin-bottom: 26px;
  padding: 22px;
}

.filter-search {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.filter-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 16px;
  outline: 0;
  background: #fffaf5;
}

.filter-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.filter-pills button {
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  color: var(--gray-700);
  background: #fff3e6;
  font-weight: 800;
}

.filter-pills button:hover,
.filter-pills button.is-active {
  color: white;
  background: linear-gradient(90deg, var(--orange), var(--rose));
}

.filter-group {
  display: grid;
  gap: 10px;
}

.empty-state {
  display: none;
  margin: 30px 0 0;
  padding: 26px;
  border-radius: 20px;
  background: white;
  color: var(--gray-600);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 26px;
  background: #000;
  box-shadow: var(--shadow);
}

.movie-video {
  height: 100%;
  object-fit: cover;
}

.player-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.55));
  color: white;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.player-play span {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  font-size: 32px;
}

.player-play:hover span {
  background: linear-gradient(135deg, var(--orange), var(--rose));
}

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

.detail-card,
.side-cover-card,
.side-info-card {
  padding: 28px;
}

.detail-card {
  margin-top: 24px;
}

.detail-card h1 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.16;
}

.detail-card h2 {
  margin: 28px 0 12px;
  font-size: 24px;
}

.detail-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.detail-meta span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--gray-700);
  background: #fff3e6;
  font-size: 13px;
  font-weight: 800;
}

.lead-text {
  padding: 18px;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  background: #fff7ed;
  font-weight: 700;
}

.tag-cloud {
  margin-top: 18px;
}

.detail-side {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 96px;
}

.side-cover-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
  background: #111827;
}

.side-info-card dl {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  margin: 0;
}

.side-info-card dt {
  color: var(--gray-500);
}

.side-info-card dd {
  margin: 0;
  color: var(--gray-900);
  font-weight: 800;
}

.related-section {
  padding-left: 0;
  padding-right: 0;
}

.site-footer {
  margin-top: 40px;
  color: white;
  background: linear-gradient(135deg, #111827, #7c2d12, #881337);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 24px 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 34px;
}

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

.footer-grid p,
.footer-grid a {
  display: block;
  margin: 8px 0;
  color: #d1d5db;
  line-height: 1.7;
  font-size: 14px;
}

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

.footer-tags span {
  background: rgba(255, 255, 255, 0.12);
  color: #fed7aa;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1d5db;
  font-size: 14px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a:hover {
  color: #fed7aa;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--rose));
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .movie-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .side-panel,
  .detail-side {
    position: static;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 720px;
  }

  .hero-content {
    top: 42%;
  }

  .hero-search-panel {
    grid-template-columns: 1fr;
    bottom: 26px;
  }

  .hero-dots {
    left: 24px;
    right: auto;
    bottom: 176px;
  }

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

  .rank-row {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .rank-number,
  .rank-action {
    display: none;
  }

  .page-hero {
    padding: 34px 24px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-wrap,
  .page-main,
  .footer-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hero {
    height: 760px;
  }

  .hero-content {
    width: calc(100% - 32px);
    left: 16px;
  }

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

  .hero-actions {
    gap: 9px;
  }

  .ghost-button,
  .primary-button {
    min-height: 42px;
    padding: 0 15px;
  }

  .movie-grid,
  .compact-grid,
  .category-grid {
    gap: 14px;
  }

  .movie-info {
    padding: 13px;
  }

  .movie-info h3 {
    font-size: 15px;
  }

  .movie-desc {
    display: none;
  }

  .detail-card,
  .side-cover-card,
  .side-info-card,
  .toolbar {
    padding: 20px;
    border-radius: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
