:root {
  --paper-50: #fafaf9;
  --paper-100: #f5f3ef;
  --paper-200: #e7e5e4;
  --paper-300: #d6d3d1;
  --paper-500: #78716c;
  --ink-400: #888888;
  --ink-500: #6d6d6d;
  --ink-600: #5d5d5d;
  --ink-700: #4f4f4f;
  --ink-900: #3d3d3d;
  --primary-50: #f0f9f4;
  --primary-100: #dcf2e4;
  --primary-600: #267f56;
  --primary-700: #1f6546;
  --accent-50: #fef9ee;
  --accent-100: #fcefd0;
  --accent-500: #ea8b1c;
  --accent-600: #cf6913;
  --accent-700: #ac4a12;
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family: "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink-900);
  background: var(--paper-50);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper-50);
  color: var(--ink-900);
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 229, 228, 0.9);
  backdrop-filter: blur(18px);
}

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

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.logo-text {
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
}

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

.nav-link {
  position: relative;
  padding: 25px 0;
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--primary-600);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  display: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink-700);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  padding: 0 24px 18px;
  border-top: 1px solid rgba(231, 229, 228, 0.9);
  background: #ffffff;
}

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

.mobile-link {
  padding: 12px 0;
  color: var(--ink-700);
  font-size: 15px;
  font-weight: 600;
}

.mobile-link.active,
.mobile-link:hover {
  color: var(--primary-700);
}

.hero {
  background: var(--ink-900);
}

.hero-stage {
  position: relative;
  height: 70vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 1.2s ease;
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-content {
  width: min(720px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  color: #ffffff;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(38, 127, 86, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.hero h1,
.hero h2 {
  margin: 0 0 16px;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero h3 {
  margin: 0 0 18px;
  color: var(--paper-200);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 300;
}

.hero p {
  max-width: 680px;
  margin: 0 0 30px;
  color: var(--paper-300);
  font-size: 18px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-button,
.ghost-button,
.small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.primary-button {
  color: #ffffff;
  background: var(--primary-600);
  box-shadow: 0 16px 24px rgba(31, 101, 70, 0.24);
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--primary-700);
}

.ghost-button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
}

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

.small-button {
  min-height: 38px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--primary-600);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 36px;
  line-height: 42px;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 34px;
  background: #ffffff;
}

.hero-thumbs {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.hero-thumb {
  position: relative;
  min-height: 92px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ink-900);
  box-shadow: var(--shadow-lg);
}

.hero-thumb img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-thumb span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-thumb:hover img {
  opacity: 0.9;
  transform: scale(1.06);
}

.page-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}

.inner-page {
  padding-top: 42px;
}

.content-section {
  margin-bottom: 76px;
}

.section-head,
.category-block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2,
.category-block-head h2 {
  margin: 0 0 8px;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--ink-900);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
}

.section-head p,
.category-block-head p {
  margin: 0;
  color: var(--ink-600);
  font-size: 16px;
  line-height: 1.7;
}

.section-head a {
  color: var(--primary-700);
  font-weight: 700;
}

.search-panel {
  margin: 0 0 24px;
}

.movie-search {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--paper-200);
  border-radius: 18px;
  color: var(--ink-900);
  background: #ffffff;
  outline: none;
  box-shadow: var(--shadow-md);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.movie-search:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 4px rgba(38, 127, 86, 0.12), var(--shadow-md);
}

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

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

.movie-poster {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-900), var(--primary-700));
}

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

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

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.02));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-poster::after {
  opacity: 1;
}

.duration-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 8px;
  color: #ffffff;
  background: rgba(61, 61, 61, 0.84);
  font-size: 12px;
  font-weight: 700;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary-600);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-body {
  padding: 18px;
}

.movie-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.movie-kicker span,
.tag-list span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--primary-700);
  background: var(--primary-100);
  font-size: 12px;
  font-weight: 700;
}

.movie-kicker span:nth-child(2n) {
  color: var(--accent-700);
  background: #fcefd0;
}

.movie-body h3 {
  margin: 0 0 8px;
  color: var(--ink-900);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  line-height: 1.25;
}

.movie-body h3 a:hover {
  color: var(--primary-700);
}

.movie-body p {
  min-height: 48px;
  margin: 0 0 16px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta,
.featured-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-500);
  font-size: 13px;
  font-weight: 700;
}

.movie-meta span:first-child,
.featured-stats span:first-child {
  color: var(--accent-600);
}

.featured-card {
  position: relative;
  min-height: 420px;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  color: #ffffff;
  background: var(--ink-900);
  box-shadow: var(--shadow-lg);
}

.featured-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover img {
  transform: scale(1.05);
}

.featured-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08));
}

.featured-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  max-width: 720px;
}

.featured-content h3 {
  margin: 0 0 10px;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(28px, 4vw, 44px);
}

.featured-content p {
  margin: 0 0 18px;
  color: var(--paper-200);
  line-height: 1.8;
}

.featured-stats {
  justify-content: flex-start;
  color: var(--paper-300);
}

.soft-panel {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--primary-50), var(--accent-50));
}

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

.category-tile {
  padding: 20px;
  border: 1px solid rgba(220, 242, 228, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.category-tile strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--ink-900);
  font-size: 20px;
}

.category-tile p {
  min-height: 72px;
  margin: 0 0 12px;
  color: var(--ink-600);
  font-size: 14px;
  line-height: 1.7;
}

.category-tile div {
  display: grid;
  gap: 4px;
  color: var(--primary-700);
  font-size: 13px;
  font-weight: 700;
}

.category-tile span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-preview {
  padding: 34px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.rank-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
}

.rank-list a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--paper-50);
  transition: background 0.2s ease, transform 0.2s ease;
}

.rank-list a:hover {
  background: var(--primary-50);
  transform: translateX(4px);
}

.rank-number {
  color: var(--accent-600);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 20px;
  font-weight: 700;
}

.rank-title {
  color: var(--ink-900);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rank-score {
  color: var(--primary-700);
  font-weight: 700;
}

.page-title {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.page-title.align-left {
  max-width: 880px;
  margin-left: 0;
  text-align: left;
}

.page-title > p:first-child,
.eyebrow {
  margin: 0 0 10px;
  color: var(--primary-700);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-title h1,
.detail-main h1 {
  margin: 0;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  color: var(--ink-900);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.12;
}

.page-title p:last-child {
  margin: 16px 0 0;
  color: var(--ink-600);
  font-size: 17px;
  line-height: 1.8;
}

.title-line {
  width: 74px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-600), var(--accent-600));
}

.align-left .title-line {
  margin-left: 0;
}

.category-overview {
  display: grid;
  gap: 38px;
}

.category-block {
  padding: 30px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

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

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

.watch-stage {
  margin-bottom: 34px;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  background: #000000;
  box-shadow: var(--shadow-2xl);
}

.video-player video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.player-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.18));
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-player.is-playing .player-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.player-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary-600);
  font-size: 34px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.player-title {
  max-width: min(760px, calc(100% - 48px));
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
  margin-bottom: 70px;
}

.detail-side {
  position: sticky;
  top: 100px;
}

.detail-cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--ink-900), var(--primary-700));
  box-shadow: var(--shadow-lg);
}

.detail-meta {
  margin-top: 18px;
  padding: 20px;
  display: grid;
  gap: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.detail-meta div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--ink-500);
  font-size: 14px;
}

.detail-meta strong {
  color: var(--ink-900);
  text-align: right;
}

.detail-main {
  padding: 34px;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.detail-one-line {
  margin: 18px 0 22px;
  color: var(--ink-700);
  font-size: 20px;
  line-height: 1.75;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.detail-main h2 {
  margin: 30px 0 12px;
  color: var(--ink-900);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 28px;
}

.detail-main p {
  color: var(--ink-600);
  font-size: 16px;
  line-height: 2;
}

.site-footer {
  background: var(--ink-900);
  color: var(--paper-300);
}

.footer-inner {
  width: min(1280px, calc(100% - 48px));
  min-height: 150px;
  margin: 0 auto;
  padding: 34px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner strong {
  color: #ffffff;
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  font-size: 22px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--paper-300);
  line-height: 1.7;
}

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

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

  .detail-layout {
    grid-template-columns: 260px minmax(0, 1fr);
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero-stage {
    height: auto;
    min-height: 620px;
  }

  .hero-content {
    width: calc(100% - 48px);
    margin: 0 24px;
  }

  .hero-arrow {
    display: none;
  }

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

  .page-shell {
    width: min(100% - 32px, 1280px);
    padding: 48px 0;
  }

  .section-head,
  .category-block-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

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

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

  .detail-side {
    position: static;
  }

  .detail-cover {
    max-width: 320px;
  }
}

@media (max-width: 560px) {
  .header-inner {
    min-height: 64px;
    padding: 0 16px;
  }

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

  .hero-stage {
    min-height: 590px;
  }

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

  .hero h3 {
    font-size: 22px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-thumbs,
  .movie-grid,
  .compact-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .soft-panel,
  .rank-preview,
  .category-block,
  .detail-main {
    padding: 22px;
    border-radius: 20px;
  }

  .featured-card,
  .featured-card img {
    min-height: 360px;
  }

  .featured-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .player-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}
