:root {
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --teal: #14b8a6;
  --orange: #f97316;
  --red: #ef4444;
  --slate: #0f172a;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --soft: #f8fafc;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 42%, #f8fafc 100%);
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.navbar {
  max-width: 1240px;
  height: 66px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  color: var(--slate);
  white-space: nowrap;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.28);
  font-size: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a,
.quick-nav a {
  color: #374151;
  font-size: 14px;
  font-weight: 650;
  padding: 9px 14px;
  border-radius: 12px;
  transition: 0.24s ease;
}

.nav-links a:hover,
.nav-links a.is-active,
.quick-nav a:hover {
  color: var(--blue);
  background: #eff6ff;
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-search input,
.search-tools input,
.search-tools select {
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: 0.24s ease;
}

.nav-search input {
  width: 220px;
  padding: 10px 12px;
}

.nav-search input:focus,
.search-tools input:focus,
.search-tools select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.nav-search button,
.primary-btn,
.ghost-btn,
.section-more a {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  transition: 0.24s ease;
}

.nav-search button,
.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
}

.nav-search button {
  padding: 10px 17px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
}

.primary-btn:hover,
.nav-search button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.32);
}

.ghost-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

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

.quick-nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px 12px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

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

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111827;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--blue), var(--teal));
}

.hero-stage {
  position: relative;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease, transform 1.2s ease;
  transform: scale(1.03);
}

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

.hero-slide::after,
.detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0.22));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 44px));
  min-height: 600px;
  margin: 0 auto;
  padding: 96px 0 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
}

.hero-kicker,
.page-hero span,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fef3c7;
  background: rgba(255, 255, 255, 0.14);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.hero p {
  width: min(620px, 100%);
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
}

.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;
  border-radius: 999px;
  font-weight: 700;
}

.hero-tags span,
.detail-tags span {
  padding: 7px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions,
.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-tabs {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  width: min(1180px, calc(100% - 44px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.hero-tab {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: var(--white);
  background: rgba(15, 23, 42, 0.34);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: 0.24s ease;
}

.hero-tab img {
  width: 58px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
}

.hero-tab span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 750;
  text-align: left;
}

.hero-tab.is-active,
.hero-tab:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.content-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 22px;
}

.soft-section {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 22px));
  background: linear-gradient(120deg, #fef2f2, #eff6ff);
}

.gradient-section {
  max-width: none;
  padding-left: max(22px, calc((100vw - 1240px) / 2 + 22px));
  padding-right: max(22px, calc((100vw - 1240px) / 2 + 22px));
  background: linear-gradient(120deg, #fff7ed, #eff6ff 55%, #ecfeff);
}

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

.section-heading h2 {
  margin: 10px 0 6px;
  color: var(--slate);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.15;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
}

.section-kicker {
  color: var(--blue);
  background: #eff6ff;
}

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-7px);
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow);
}

.cover-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dbeafe;
}

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

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

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

.type-pill,
.duration-pill {
  position: absolute;
  z-index: 1;
  top: 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.type-pill {
  left: 12px;
  padding: 5px 10px;
  background: var(--blue);
}

.duration-pill {
  right: 12px;
  padding: 5px 9px;
  background: rgba(15, 23, 42, 0.68);
}

.hover-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: 0.24s ease;
}

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

.card-body {
  padding: 18px;
}

.card-body h3 {
  margin: 0 0 10px;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.35;
}

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

.card-body p {
  min-height: 48px;
  margin: 0 0 12px;
  color: #4b5563;
  font-size: 14px;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: #64748b;
  font-size: 13px;
}

.tag-row span {
  padding: 5px 8px;
  color: var(--blue);
  background: #eff6ff;
  font-size: 12px;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
}

.movie-card-wide .cover-link {
  aspect-ratio: auto;
  min-height: 170px;
}

.movie-card-wide .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.section-more {
  margin-top: 30px;
  text-align: center;
}

.section-more a {
  display: inline-flex;
  padding: 12px 22px;
  color: var(--blue);
  background: #eff6ff;
}

.section-more a:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-2px);
}

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

.category-tile,
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.18);
  transition: 0.24s ease;
}

.category-tile {
  padding: 24px;
}

.category-tile::after,
.category-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.category-tile strong,
.category-card h2 {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.category-tile span,
.category-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.category-tile:hover,
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(37, 99, 235, 0.28);
}

.category-card {
  min-height: 260px;
  display: flex;
  align-items: end;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.category-card div {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
}

.page-hero {
  min-height: 320px;
  padding: 86px 22px;
  background: linear-gradient(120deg, var(--blue), var(--teal));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

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

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
  overflow-x: auto;
}

.filter-bar button {
  border: 0;
  border-radius: 999px;
  padding: 9px 15px;
  color: #374151;
  background: #eef2ff;
  cursor: pointer;
  font-weight: 750;
  white-space: nowrap;
  transition: 0.24s ease;
}

.filter-bar button:hover,
.filter-bar button.is-active {
  color: var(--white);
  background: var(--blue);
}

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

.rank-row {
  display: grid;
  grid-template-columns: 54px 76px minmax(0, 1.2fr) minmax(0, 1fr) 90px;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  transition: 0.24s ease;
}

.rank-row:hover {
  transform: translateX(5px);
  border-color: rgba(37, 99, 235, 0.28);
}

.rank-num {
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.rank-row img {
  width: 76px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
}

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

.rank-meta,
.rank-views {
  color: var(--muted);
  font-size: 14px;
}

.rank-views {
  text-align: right;
  font-weight: 800;
}

.search-panel {
  padding-top: 38px;
}

.search-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  margin-bottom: 28px;
}

.search-tools input,
.search-tools select {
  width: 100%;
  padding: 14px 16px;
}

.detail-hero {
  min-height: 560px;
  background-color: var(--slate);
}

.detail-wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  min-height: 560px;
  margin: 0 auto;
  padding: 74px 22px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

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

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
}

.detail-one-line {
  max-width: 760px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(15, 23, 42, 0.3);
}

.player-section {
  max-width: 1240px;
  margin: -58px auto 0;
  padding: 0 22px 38px;
  position: relative;
  z-index: 2;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}

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

.player-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--white);
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.26), rgba(0, 0, 0, 0.62));
  cursor: pointer;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

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

.big-play {
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
  cursor: pointer;
  font-size: 30px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
  transition: 0.24s ease;
}

.big-play:hover {
  transform: scale(1.06);
}

.player-overlay strong {
  max-width: min(680px, 90%);
  text-align: center;
  font-size: clamp(22px, 4vw, 36px);
}

.detail-content {
  padding-top: 20px;
}

.detail-article {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.detail-article h2 {
  margin: 0 0 12px;
  color: var(--slate);
  font-size: 26px;
}

.detail-article p {
  margin: 0 0 24px;
  color: #374151;
  font-size: 17px;
}

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

.detail-nav-links a {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--blue);
  background: #eff6ff;
  font-weight: 750;
}

.detail-nav-links a:hover {
  color: var(--white);
  background: var(--blue);
}

.site-footer {
  padding: 48px 22px 30px;
  color: #cbd5e1;
  background: #111827;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
}

.footer-logo {
  color: var(--white);
  margin-bottom: 12px;
}

.site-footer p {
  max-width: 620px;
  margin: 0;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 12px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.06);
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(37, 99, 235, 0.55);
}

.copyright {
  max-width: 1240px;
  margin: 26px auto 0 !important;
  color: #94a3b8;
  font-size: 14px;
}

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

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

  .nav-search input {
    width: 180px;
  }

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

@media (max-width: 860px) {
  .navbar {
    height: auto;
    min-height: 66px;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    margin-left: 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-search {
    order: 4;
    width: 100%;
    padding-bottom: 12px;
  }

  .nav-search input {
    flex: 1;
    width: auto;
  }

  .quick-nav {
    padding-top: 0;
  }

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

  .hero-copy {
    padding-bottom: 230px;
  }

  .hero-tabs {
    grid-template-columns: 1fr;
    max-height: 190px;
    overflow-y: auto;
  }

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

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

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

  .rank-meta,
  .rank-views {
    display: none;
  }

  .search-tools {
    grid-template-columns: 1fr;
  }

  .detail-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-poster {
    max-width: 270px;
  }

  .detail-nav-links,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .content-section,
  .soft-section,
  .gradient-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

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

  .hero h1,
  .detail-info h1,
  .page-hero h1 {
    letter-spacing: -0.03em;
  }

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

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

  .hero-tab img {
    width: 50px;
  }

  .detail-article {
    padding: 24px;
  }

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

  .player-shell,
  .detail-article,
  .movie-card,
  .category-tile,
  .category-card {
    border-radius: 20px;
  }
}
