:root {
  --primary: #10b981;
  --primary-dark: #059669;
  --teal: #0d9488;
  --cyan: #0891b2;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --soft: #f8fafc;
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: #f8fafc;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}

.site-nav {
  max-width: 1180px;
  height: 68px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.3);
  font-size: 14px;
  letter-spacing: 0.5px;
}

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

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

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

.nav-link:hover,
.mobile-link:hover {
  color: var(--primary-dark);
  background: #ecfdf5;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #f1f5f9;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #334155;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 12px 20px 20px;
  border-top: 1px solid #e2e8f0;
}

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

.page-shell {
  min-height: 60vh;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(15, 23, 42, 0.56), rgba(15, 23, 42, 0.12));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: calc((100% - 1180px) / 2 + 20px);
  width: min(640px, calc(100% - 48px));
  transform: translateY(-50%);
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #d1fae5;
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(167, 243, 208, 0.18);
  backdrop-filter: blur(8px);
  font-weight: 700;
  font-size: 14px;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 900;
}

.hero p {
  margin: 0;
  color: #e2e8f0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.85;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #d1fae5;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

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

.btn-primary,
.btn-ghost,
.more-link,
.search-form button,
.hero-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 16px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary,
.search-form button,
.hero-search button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 18px 32px rgba(16, 185, 129, 0.34);
}

.btn-primary:hover,
.search-form button:hover,
.hero-search button:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 40px rgba(16, 185, 129, 0.42);
}

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

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

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  font-size: 38px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

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

.hero-prev {
  left: 22px;
  transform: translateY(-50%);
}

.hero-next {
  right: 22px;
  transform: translateY(-50%);
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
  width: 28px;
  background: #fff;
}

.section {
  padding: 72px 20px;
}

.section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-white {
  background: #fff;
}

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

.section-emerald {
  color: #fff;
  background: linear-gradient(135deg, #059669, #0d9488);
}

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

.section-head h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  font-weight: 900;
}

.section-head p {
  margin: 8px 0 0;
  color: #64748b;
}

.section-head.light p,
.section-head.light h2 {
  color: #fff;
}

.section-bar {
  width: 6px;
  height: 40px;
  flex: 0 0 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary), var(--teal));
}

.section-head.cyan .section-bar {
  background: linear-gradient(180deg, var(--cyan), #2563eb);
}

.section-head.dark .section-bar {
  background: linear-gradient(180deg, #334155, #0f172a);
}

.section-head.light .section-bar {
  background: rgba(255, 255, 255, 0.65);
}

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

.movie-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: var(--card);
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster,
.feature-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
}

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

.movie-card:hover .movie-poster img,
.feature-card:hover .feature-image img {
  transform: scale(1.09);
}

.poster-shade,
.feature-image span,
.category-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.78));
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.82);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
}

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

.quality {
  position: absolute;
  top: 12px;
  right: 12px;
  color: #fff;
  background: rgba(15, 23, 42, 0.72);
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 800;
}

.movie-info {
  padding: 18px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.movie-title {
  color: #111827;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 850;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-title:hover {
  color: var(--primary-dark);
}

.movie-desc {
  min-height: 44px;
  margin: 0;
  color: #64748b;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: #64748b;
  font-size: 13px;
}

.movie-meta span + span::before,
.detail-meta span + span::before {
  content: "·";
  margin-right: 10px;
  color: #cbd5e1;
}

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

.feature-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.feature-image {
  height: 100%;
  aspect-ratio: auto;
}

.feature-content {
  padding: 22px;
}

.feature-title {
  display: block;
  margin-bottom: 10px;
  color: #111827;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 850;
}

.feature-title:hover {
  color: var(--primary-dark);
}

.feature-content p {
  margin: 0;
  color: #64748b;
}

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

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.12);
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.category-copy {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #fff;
}

.category-copy strong {
  font-size: 24px;
  font-weight: 900;
}

.category-copy em {
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 14px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
}

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

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

.rank-row {
  display: grid;
  grid-template-columns: 46px 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.rank-number {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

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

.rank-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.rank-copy strong {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}

.rank-copy em {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #64748b;
  font-size: 13px;
  font-style: normal;
}

.more-link {
  margin-top: 20px;
  color: #fff;
  background: #0f172a;
}

.more-link:hover {
  transform: translateY(-2px);
}

.search-panel {
  padding: 34px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, #064e3b, #0f766e);
  box-shadow: var(--shadow);
}

.search-panel h2 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.2;
}

.search-panel p {
  margin: 0 0 24px;
  color: #d1fae5;
}

.hero-search,
.search-form {
  display: flex;
  gap: 12px;
}

.hero-search input,
.search-form input,
.filter-grid input,
.filter-grid select {
  width: 100%;
  border: 1px solid #dbe4ef;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  background: #fff;
  color: #0f172a;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.hero-search input:focus,
.search-form input:focus,
.filter-grid input:focus,
.filter-grid select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}

.inner-hero {
  padding: 78px 20px;
  color: #fff;
  background: linear-gradient(135deg, #059669, #0d9488);
}

.inner-hero-content {
  max-width: 1180px;
  margin: 0 auto;
}

.inner-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1px;
}

.inner-hero p {
  max-width: 760px;
  margin: 0;
  color: #d1fae5;
  font-size: 18px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 14px;
  color: #ecfdf5;
  font-weight: 800;
}

.filter-panel,
.search-page {
  display: grid;
  gap: 28px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.filter-grid label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 750;
}

.empty-state {
  display: none;
  padding: 40px;
  text-align: center;
  color: #64748b;
  border-radius: 22px;
  background: #f8fafc;
}

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

.search-form {
  max-width: 820px;
  padding: 18px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.search-status {
  color: #64748b;
  font-weight: 700;
}

.detail-page {
  min-height: 60vh;
  background: #f8fafc;
}

.player-section {
  background: #020617;
}

.player-wrap {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
}

.main-video {
  width: 100%;
  height: 100%;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #000;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.cover-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08), rgba(2, 6, 23, 0.78));
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  color: #059669;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease;
}

.player-cover:hover .big-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.player-cover strong {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  text-align: left;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}

.player-wrap.is-playing .player-cover {
  display: none;
}

.detail-layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px 20px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 30px;
}

.detail-main,
.side-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.detail-main {
  padding: clamp(24px, 4vw, 42px);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #64748b;
  font-size: 14px;
}

.crumbs a:hover {
  color: var(--primary-dark);
}

.detail-main h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1px;
}

.detail-tags {
  margin: 18px 0 28px;
}

.detail-block {
  margin-top: 30px;
}

.detail-block h2,
.side-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.detail-block p {
  margin: 0;
  color: #334155;
  font-size: 17px;
  line-height: 1.95;
}

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

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

.detail-side {
  position: relative;
}

.side-card {
  position: sticky;
  top: 90px;
  padding: 22px;
}

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

.related-row {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.related-row:hover {
  background: #f8fafc;
}

.related-row img {
  width: 112px;
  height: 72px;
  object-fit: cover;
  border-radius: 12px;
}

.related-row span {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.related-row strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
}

.related-row em {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #64748b;
  font-size: 12px;
  font-style: normal;
}

.site-footer {
  color: #cbd5e1;
  background: linear-gradient(135deg, #0f172a, #1e293b, #111827);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  color: #fff;
  font-size: 24px;
}

.footer-brand p,
.footer-column a {
  color: #94a3b8;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #6ee7b7;
}

.footer-bottom {
  padding: 18px 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  text-align: center;
  color: #64748b;
}

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

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

  .feature-image {
    aspect-ratio: 16 / 9;
  }

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

  .side-card {
    position: static;
  }

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

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

  .menu-toggle {
    display: inline-flex;
  }

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

  .hero {
    height: 560px;
  }

  .hero-content {
    left: 20px;
    top: 52%;
  }

  .hero-arrow {
    display: none;
  }

  .section {
    padding: 52px 16px;
  }

  .movie-grid,
  .category-grid,
  .category-grid.wide,
  .feature-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .filter-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-search,
  .search-form {
    flex-direction: column;
  }

  .rank-row {
    grid-template-columns: 38px 92px 1fr;
  }

  .rank-row img {
    width: 92px;
    height: 60px;
  }

  .detail-layout {
    padding-top: 24px;
  }

  .player-wrap {
    max-width: 100%;
  }

  .big-play {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }

  .player-cover strong {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
