:root {
  --bg: #f9fafb;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --card: #ffffff;
  --emerald: #059669;
  --emerald-dark: #047857;
  --teal: #0d9488;
  --cyan: #0891b2;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --soft-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(229, 231, 235, 0.85);
}

.site-nav {
  width: min(1180px, calc(100% - 32px));
  height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
  color: white;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.26);
}

.brand-text {
  font-size: 20px;
  letter-spacing: -0.02em;
}

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

.nav-link {
  padding: 10px 16px;
  border-radius: 12px;
  color: #374151;
  font-weight: 650;
  transition: 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--emerald-dark);
  background: #ecfdf5;
}

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

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #374151;
  border-radius: 99px;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 10px 16px 16px;
  background: white;
}

.mobile-panel.is-open {
  display: grid;
  gap: 6px;
}

.mobile-link {
  padding: 13px 14px;
  border-radius: 12px;
  font-weight: 700;
  color: #374151;
}

.mobile-link:hover {
  background: #ecfdf5;
  color: var(--emerald-dark);
}

.hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #115e59, #164e63);
}

.hero-track,
.hero-slide {
  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-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-bg.image-missing,
.card-cover img.image-missing,
.player-cover img.image-missing,
.ranking-card img.image-missing,
.side-related img.image-missing {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1180px;
}

.hero-content h1,
.hero-content h2 {
  max-width: 720px;
  margin: 0 0 20px;
  color: white;
  font-size: clamp(40px, 7vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #e5e7eb;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.22);
  border: 1px solid rgba(167, 243, 208, 0.32);
  backdrop-filter: blur(10px);
  font-weight: 800;
}

.hero-meta,
.detail-meta,
.tag-row,
.ranking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-meta span,
.detail-meta span,
.tag-row span,
.ranking-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

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

.primary-button,
.ghost-button,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: 0.22s ease;
}

.primary-button {
  color: white;
  background: var(--emerald);
  box-shadow: 0 12px 28px rgba(5, 150, 105, 0.32);
}

.primary-button:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px) scale(1.02);
}

.ghost-button {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

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

.outline-button {
  color: var(--emerald-dark);
  border: 1px solid #a7f3d0;
  background: white;
}

.outline-button:hover {
  border-color: var(--emerald);
  box-shadow: var(--soft-shadow);
}

.hero-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  color: white;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-control:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.05);
}

.hero-control.prev {
  left: 22px;
}

.hero-control.next {
  right: 22px;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: white;
}

.content-section {
  padding: 72px 0;
}

.white-section {
  background: white;
}

.soft-section {
  background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.green-section {
  background: linear-gradient(135deg, var(--emerald), var(--teal));
}

.green-section .section-heading h2,
.green-section .section-heading span {
  color: white;
}

.green-section .heading-bar {
  background: rgba(255, 255, 255, 0.6);
}

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

.heading-bar {
  width: 5px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--emerald), var(--teal));
}

.section-heading span {
  display: block;
  margin-bottom: 3px;
  color: var(--emerald-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: -0.04em;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--card);
  box-shadow: 0 1px 0 rgba(229, 231, 235, 0.9);
  transition: 0.25s ease;
}

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

.card-link {
  display: block;
  height: 100%;
}

.card-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b, #0f766e, #155e75);
}

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

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

.quality-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 9px;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--emerald);
  background: rgba(255, 255, 255, 0.94);
  transform: translate(-50%, -50%) scale(0.75);
  opacity: 0;
  transition: 0.25s ease;
  box-shadow: var(--soft-shadow);
}

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

.card-body {
  padding: 18px;
}

.card-tags {
  min-height: 24px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.card-tags span {
  padding: 4px 8px;
  border-radius: 999px;
  background: #ecfdf5;
  color: var(--emerald-dark);
  font-size: 12px;
  font-weight: 800;
}

.card-body h3 {
  margin: 0 0 9px;
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-card:hover h3 {
  color: var(--emerald-dark);
}

.card-body p {
  margin: 0 0 14px;
  color: #4b5563;
  line-height: 1.65;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  color: #6b7280;
  font-size: 13px;
  font-weight: 650;
}

.horizontal-card .card-link {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 0;
}

.horizontal-card .card-cover {
  height: 100%;
  min-height: 145px;
  aspect-ratio: auto;
}

.large-card .card-cover {
  aspect-ratio: 16 / 10;
}

.large-card .card-body {
  background: white;
}

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

.category-card,
.category-overview-card a {
  display: block;
  height: 100%;
  padding: 24px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 1px 0 rgba(229, 231, 235, 0.9);
  transition: 0.25s ease;
}

.category-card:hover,
.category-overview-card a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 15px;
  color: white;
  background: linear-gradient(135deg, var(--emerald), var(--teal));
}

.category-icon.large {
  width: 54px;
  height: 54px;
  font-size: 22px;
}

.category-card strong,
.category-overview-card h2 {
  display: block;
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.category-card p,
.category-overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--emerald-dark);
  font-weight: 900;
}

.two-column-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

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

.ranking-panel,
.side-card,
.detail-main {
  border-radius: 22px;
  background: white;
  box-shadow: var(--soft-shadow);
}

.ranking-panel {
  padding: 22px;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  color: #111827;
  font-weight: 900;
}

.panel-head a {
  color: var(--emerald-dark);
  font-size: 14px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  color: #374151;
  transition: 0.2s ease;
}

.rank-row:hover {
  color: var(--emerald-dark);
  background: #ecfdf5;
}

.rank-no {
  color: var(--emerald-dark);
  font-weight: 900;
}

.rank-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 750;
}

.rank-score {
  color: #f59e0b;
  font-weight: 900;
}

.library-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.library-head .section-heading {
  margin-bottom: 0;
}

.page-hero {
  background: linear-gradient(135deg, #064e3b, #0f766e, #155e75);
  color: white;
}

.compact-hero {
  padding: 70px 0;
}

.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(36px, 6vw, 58px);
  letter-spacing: -0.055em;
}

.page-hero p {
  max-width: 780px;
  margin: 0;
  color: #d1fae5;
  font-size: 18px;
  line-height: 1.75;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
}

.page-hero .breadcrumb {
  color: #d1fae5;
}

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

.page-hero .breadcrumb a:hover {
  color: white;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 20px;
  background: white;
  box-shadow: var(--soft-shadow);
}

.sticky-filter {
  position: sticky;
  top: 82px;
  z-index: 10;
}

.filter-panel input,
.filter-panel select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 15px;
  color: #111827;
  background: #f9fafb;
  outline: none;
  transition: 0.2s ease;
}

.filter-panel input:focus,
.filter-panel select:focus {
  border-color: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.16);
  background: white;
}

.watch-shell {
  background: #000;
  padding: 28px 0;
}

.player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 24px;
  background: #030712;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  color: white;
  background: #020617;
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

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

.big-play {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 92px;
  border-radius: 999px;
  color: var(--emerald);
  background: rgba(255, 255, 255, 0.95);
  font-size: 34px;
  box-shadow: var(--shadow);
}

.play-title {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  font-size: clamp(20px, 4vw, 34px);
  font-weight: 900;
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.detail-section {
  padding-top: 44px;
}

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

.detail-main {
  padding: 34px;
}

.detail-main h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.detail-meta span {
  color: #374151;
  background: #f3f4f6;
}

.tag-row {
  margin: 16px 0 30px;
}

.tag-row span {
  color: var(--emerald-dark);
  background: #ecfdf5;
}

.summary-block,
.review-block {
  margin-top: 30px;
}

.summary-block h2,
.review-block h2,
.side-card h2 {
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.summary-block p,
.review-block p {
  margin: 0 0 16px;
  color: #374151;
  line-height: 1.9;
  font-size: 16px;
}

.review-block {
  padding: 24px;
  border: 1px solid #a7f3d0;
  border-radius: 20px;
  background: linear-gradient(135deg, #ecfdf5, #f0fdfa);
}

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

.side-card {
  padding: 22px;
}

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

.side-related {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 14px;
  transition: 0.2s ease;
}

.side-related:hover {
  background: #f9fafb;
  color: var(--emerald-dark);
}

.side-related img {
  width: 100px;
  height: 62px;
  object-fit: cover;
  border-radius: 12px;
  background: linear-gradient(135deg, #064e3b, #0f766e);
}

.side-related span {
  font-weight: 800;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.ranking-card a {
  position: relative;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  min-height: 120px;
  padding: 14px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 1px 0 rgba(229, 231, 235, 0.95);
  transition: 0.25s ease;
}

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

.ranking-number {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  min-width: 40px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: rgba(0, 0, 0, 0.72);
  font-weight: 900;
}

.ranking-card img {
  width: 140px;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
  background: linear-gradient(135deg, #064e3b, #0f766e);
}

.ranking-card h2 {
  margin: 0 0 8px;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.ranking-card p {
  margin: 0 0 10px;
  color: #4b5563;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ranking-meta span {
  color: #374151;
  background: #f3f4f6;
}

.site-footer {
  color: #d1d5db;
  background: linear-gradient(135deg, #111827, #1f2937, #111827);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: white;
  font-size: 22px;
}

.footer-inner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #9ca3af;
  line-height: 1.75;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a:hover {
  color: white;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 26px;
  color: #6b7280;
  text-align: center;
}

[data-card].is-hidden {
  display: none;
}

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

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

  .detail-side {
    position: static;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .hero {
    height: 520px;
  }

  .hero-control {
    display: none;
  }

  .two-col-list,
  .ranking-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

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

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

  .horizontal-card .card-link,
  .ranking-card a {
    grid-template-columns: 1fr;
  }

  .horizontal-card .card-cover {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .ranking-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

@media (max-width: 560px) {
  .site-nav,
  .container,
  .wide-container,
  .footer-inner,
  .copyright {
    width: min(100% - 24px, 1180px);
  }

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

  .hero {
    height: 500px;
  }

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

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

  .content-section {
    padding: 50px 0;
  }

  .three-col,
  .four-col,
  .category-grid,
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .detail-main {
    padding: 22px;
  }

  .player-wrap {
    border-radius: 16px;
  }

  .play-title {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
