:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --bg-panel: #1a1a1a;
  --surface: #1f1f1f;
  --surface-strong: #262626;
  --border: #333333;
  --text: #f3f4f6;
  --muted: #9ca3af;
  --muted-strong: #d1d5db;
  --accent: #ea580c;
  --accent-soft: #f97316;
  --accent-glow: rgba(234, 88, 12, 0.28);
  --gold: #f59e0b;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(234, 88, 12, 0.16), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(51, 78, 104, 0.22), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(20, 20, 20, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1500px, calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: #ffffff;
  box-shadow: 0 10px 36px var(--accent-glow);
}

.brand-text {
  font-size: 1.1rem;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.nav-link,
.mobile-nav-link,
.footer-links a {
  color: var(--muted-strong);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-link:hover,
.mobile-nav-link:hover,
.footer-links a:hover {
  color: #ffffff;
  background: rgba(234, 88, 12, 0.14);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-search {
  width: 250px;
  height: 42px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--muted);
}

.header-search span {
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.header-search input,
.big-search input,
.filter-bar input,
.filter-bar select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.header-search input::placeholder,
.big-search input::placeholder,
.filter-bar input::placeholder {
  color: #6b7280;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 10px;
}

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

.mobile-nav {
  display: none;
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.96);
}

.mobile-nav.is-open {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mobile-nav-link {
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.search-panel {
  position: fixed;
  top: 82px;
  left: 50%;
  z-index: 90;
  width: min(720px, calc(100% - 32px));
  transform: translate(-50%, -12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.search-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.search-panel-inner {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(20, 20, 20, 0.98);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.search-panel-title {
  padding: 16px 18px;
  color: var(--accent-soft);
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.search-results {
  max-height: 70vh;
  overflow: auto;
  padding: 8px;
}

.search-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
  transition: background 0.2s ease;
}

.search-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.search-item img {
  width: 54px;
  height: 76px;
  object-fit: cover;
  border-radius: 10px;
  background: #111111;
}

.search-item h4 {
  margin: 0 0 3px;
  font-size: 1rem;
}

.search-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

main {
  flex: 1;
}

.hero-section {
  width: min(1500px, calc(100% - 32px));
  min-height: 670px;
  margin: 26px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
}

.hero-slider {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

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

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

.hero-image,
.detail-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111111;
}

.hero-shade,
.detail-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(10, 10, 10, 0.92), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 670px;
  display: flex;
  align-items: center;
  padding: 58px;
}

.hero-copy {
  max-width: 760px;
  animation: slideUp 0.55s ease both;
}

.hero-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1,
.page-hero h1,
.detail-copy h1 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 5.5rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero-copy h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-weight: 800;
}

.hero-copy p,
.page-hero p,
.detail-one-line {
  max-width: 720px;
  margin: 0;
  color: var(--muted-strong);
  font-size: 1.08rem;
}

.hero-tags,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-tags span,
.detail-meta span,
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 999px;
  background: rgba(234, 88, 12, 0.12);
  color: #fed7aa;
  font-size: 0.86rem;
}

.hero-tags span,
.detail-meta span {
  padding: 8px 12px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #ffffff;
  box-shadow: 0 14px 36px var(--accent-glow);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.hero-dots {
  position: absolute;
  left: 58px;
  bottom: 36px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 36px;
  height: 7px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--accent-soft);
}

.hero-side-panel {
  min-height: 670px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.96), rgba(20, 20, 20, 0.96));
  box-shadow: var(--shadow);
}

.hero-side-title {
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.15rem;
}

.hero-side-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-side-card:hover {
  transform: translateX(4px);
  background: rgba(234, 88, 12, 0.12);
}

.hero-side-card img {
  width: 86px;
  height: 114px;
  object-fit: cover;
  border-radius: 14px;
  background: #111111;
}

.hero-side-card span {
  color: #ffffff;
  font-weight: 800;
}

.hero-category-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  margin-top: 18px;
  border-radius: 16px;
  background: rgba(234, 88, 12, 0.16);
  color: #fed7aa;
  font-weight: 800;
}

.content-section,
.category-preview {
  width: min(1500px, calc(100% - 32px));
  margin: 72px auto;
}

.search-stage {
  margin-top: 44px;
}

.search-stage-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 24px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(31, 31, 31, 0.96), rgba(20, 20, 20, 0.92));
}

.search-stage h2,
.section-heading h2,
.category-preview-head h2,
.detail-text h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.big-search {
  display: flex;
  align-items: center;
  height: 58px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.62);
}

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

.section-more {
  flex: none;
  color: var(--accent-soft);
  font-weight: 800;
}

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

.movie-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(31, 31, 31, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.42);
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.36);
}

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

.movie-cover {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #111111;
}

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

.movie-card:hover .movie-cover img {
  transform: scale(1.06);
  filter: brightness(1.1);
}

.play-chip,
.rank-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
}

.play-chip {
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  background: rgba(234, 88, 12, 0.9);
  font-size: 0.82rem;
}

.rank-badge {
  left: 10px;
  top: 10px;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
}

.movie-body {
  padding: 14px;
}

.movie-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
}

.movie-body h3 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 850;
}

.movie-body h3 a:hover {
  color: #fed7aa;
}

.movie-body p {
  min-height: 48px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.tag {
  padding: 5px 9px;
}

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

.compact-card .movie-body p {
  display: none;
}

.rank-grid .movie-card:nth-child(-n + 3) {
  border-color: rgba(245, 158, 11, 0.46);
}

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

.category-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(31, 31, 31, 0.78);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 115, 22, 0.42);
}

.category-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 8px;
}

.category-thumbs img {
  aspect-ratio: 2 / 3;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  background: #111111;
}

.category-card-body {
  padding: 8px 16px 18px;
}

.category-card-body h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1.2rem;
}

.category-card-body p {
  min-height: 52px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.category-card-body span {
  color: var(--accent-soft);
  font-weight: 800;
}

.page-hero,
.detail-hero {
  position: relative;
  width: min(1500px, calc(100% - 32px));
  margin: 26px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(234, 88, 12, 0.18), transparent 32rem),
    linear-gradient(135deg, rgba(31, 31, 31, 0.96), rgba(10, 10, 10, 0.94));
  box-shadow: var(--shadow);
}

.page-hero {
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 48px;
}

.detail-hero {
  min-height: 560px;
}

.detail-inner {
  position: relative;
  z-index: 2;
  padding: 30px 48px 52px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #111111;
}

.detail-copy h1 {
  max-width: 900px;
}

.detail-meta {
  margin-top: 18px;
}

.detail-tags {
  margin-top: 18px;
}

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

.player-shell {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: #000000;
  box-shadow: var(--shadow);
}

.movie-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background: radial-gradient(circle at center, rgba(234, 88, 12, 0.18), rgba(0, 0, 0, 0.66));
  color: #ffffff;
  cursor: pointer;
}

.play-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.play-circle {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 18px 46px var(--accent-glow);
  font-size: 2rem;
}

.play-title {
  max-width: 92%;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
  text-align: center;
}

.detail-text {
  max-width: 980px;
}

.detail-text p {
  margin: 14px 0 28px;
  color: var(--muted-strong);
  font-size: 1.06rem;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(31, 31, 31, 0.76);
}

.filter-bar label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-bar label span {
  color: var(--accent-soft);
  font-weight: 800;
}

.filter-bar input,
.filter-bar select {
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.55);
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(20, 20, 20, 0.95);
}

.footer-inner {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 620px);
  gap: 26px;
}

.footer-inner p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: flex-end;
}

.footer-copy {
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .mobile-toggle {
    display: block;
  }

  .hero-section {
    grid-template-columns: 1fr;
  }

  .hero-side-panel {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .hero-side-title,
  .hero-category-link {
    grid-column: 1 / -1;
  }

  .hero-side-card {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }

  .hero-side-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
  }

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

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

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

  .hero-section,
  .hero-slider {
    min-height: 620px;
  }

  .hero-content {
    min-height: 620px;
    padding: 32px;
  }

  .hero-dots {
    left: 32px;
  }

  .search-stage-inner,
  .footer-inner,
  .detail-grid,
  .filter-bar {
    grid-template-columns: 1fr;
  }

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

  .category-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .category-preview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 32px;
  }

  .detail-inner {
    padding: 24px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .header-inner {
    width: min(100% - 20px, 1500px);
  }

  .brand-text {
    font-size: 1rem;
  }

  .hero-section,
  .content-section,
  .category-preview,
  .page-hero,
  .detail-hero {
    width: min(100% - 20px, 1500px);
  }

  .hero-section,
  .hero-slider {
    min-height: 580px;
  }

  .hero-content {
    min-height: 580px;
    padding: 24px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

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

  .movie-body {
    padding: 11px;
  }

  .movie-body h3 {
    font-size: 0.96rem;
  }

  .movie-body p,
  .tag-row {
    display: none;
  }

  .play-circle {
    width: 68px;
    height: 68px;
  }
}
