:root {
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --teal-600: #0d9488;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --radius: 18px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 24px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 50px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--slate-900);
  background: var(--slate-50);
}

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: 100;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--slate-900);
  white-space: nowrap;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-500), var(--teal-600));
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.28);
}

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

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--slate-600);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--slate-100);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--slate-700);
}

.mobile-nav {
  display: none;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--slate-100);
  background: var(--white);
}

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

.mobile-nav-link {
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--slate-50);
  color: var(--slate-700);
  font-weight: 700;
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
  background: var(--slate-900);
}

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

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  inset: auto 0 0 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--emerald-100);
  background: rgba(16, 185, 129, 0.22);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-meta span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

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

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

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

.btn.primary {
  color: var(--white);
  background: var(--emerald-500);
}

.btn.primary:hover {
  background: var(--emerald-600);
}

.btn.glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(8px);
}

.hero-dots {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

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

.hero-dot.active {
  width: 30px;
  background: var(--emerald-500);
}

.page-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px 64px;
}

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

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

.section-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-500), var(--teal-600));
  box-shadow: 0 12px 24px rgba(16, 185, 129, 0.22);
}

.section-head h2 {
  margin: 0;
  color: var(--slate-900);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 5px 0 0;
  color: var(--slate-500);
}

.section-more {
  color: var(--emerald-600);
  font-weight: 800;
}

.section-more span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.section-more:hover span {
  transform: translateX(4px);
}

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

.compact-grid {
  gap: 20px;
}

.movie-card {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-200), var(--slate-100));
}

.poster-wide {
  aspect-ratio: 16 / 9;
}

.poster-wrap img,
.row-poster img,
.detail-poster img,
.player-poster img,
.category-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .poster-wrap img,
.movie-row:hover .row-poster img,
.category-card:hover .category-cover img {
  transform: scale(1.08);
}

.play-mask {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(0, 0, 0, 0.38);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.play-mask span,
.play-dot {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.92);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.movie-card:hover .play-mask {
  opacity: 1;
}

.year-badge,
.corner-badge {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald-500);
  font-size: 12px;
  font-weight: 800;
}

.card-body {
  padding: 14px;
}

.card-body h3,
.row-info h3,
.large-caption h3 {
  margin: 0;
  color: var(--slate-900);
  font-size: 16px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.movie-card:hover h3,
.movie-row:hover h3 {
  color: var(--emerald-600);
}

.meta-line {
  margin: 8px 0 0;
  color: var(--slate-500);
  font-size: 13px;
}

.card-desc {
  min-height: 42px;
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 13px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tag-row,
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag-row span,
.detail-tags a {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--emerald-700);
  background: var(--emerald-50);
  font-size: 12px;
  font-weight: 700;
}

.large-card {
  grid-column: span 2;
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 62%);
}

.large-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: var(--white);
}

.large-caption h3 {
  color: var(--white);
  font-size: 24px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.35);
}

.large-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.86);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

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

.movie-row {
  display: grid;
  grid-template-columns: auto 138px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.movie-row:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rank-badge {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--emerald-500), var(--teal-600));
  font-weight: 900;
}

.row-poster {
  position: relative;
  height: 82px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--slate-100);
}

.play-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.movie-row:hover .play-dot {
  opacity: 1;
}

.row-info p {
  margin: 6px 0 0;
  color: var(--slate-600);
  font-size: 14px;
  line-height: 1.55;
}

.row-score {
  color: var(--emerald-600);
  font-size: 20px;
  font-weight: 900;
}

.category-panel {
  position: sticky;
  top: 96px;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--slate-900), var(--slate-800));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.category-panel h2 {
  margin: 0 0 12px;
  font-size: 26px;
}

.category-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.category-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.category-buttons a,
.panel-link {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.panel-link {
  margin-top: 18px;
  background: var(--emerald-500);
}

.search-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto;
  gap: 12px;
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  color: var(--slate-500);
  background: var(--slate-50);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--slate-900);
  background: transparent;
}

.filter-select {
  min-height: 46px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  padding: 0 14px;
  color: var(--slate-700);
  background: var(--slate-50);
}

.empty-state {
  display: none;
  margin-bottom: 24px;
  padding: 18px;
  border-radius: 16px;
  color: var(--slate-600);
  background: var(--white);
  text-align: center;
}

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

.page-hero {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate-900), #064e3b);
  color: var(--white);
}

.small-hero {
  display: flex;
  align-items: center;
}

.category-hero {
  min-height: 420px;
}

.page-hero > img,
.detail-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.42));
}

.page-hero-inner {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
  z-index: 2;
}

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

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

.category-card {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-cover {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 170px;
  overflow: hidden;
  background: var(--slate-100);
}

.category-info {
  padding: 22px;
}

.category-info h2 {
  margin: 0;
  font-size: 24px;
}

.category-info p {
  margin: 10px 0 16px;
  color: var(--slate-600);
  line-height: 1.7;
}

.category-info span {
  color: var(--emerald-600);
  font-weight: 900;
}

.detail-top {
  position: relative;
  overflow: hidden;
  background: var(--slate-900);
  color: var(--white);
}

.detail-bg {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  filter: blur(3px);
}

.detail-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--slate-900), rgba(15, 23, 42, 0.66));
}

.detail-wrap {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 56px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

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

.detail-hero-card {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 34px;
  align-items: end;
}

.detail-poster {
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 2 / 3;
  background: var(--slate-800);
  box-shadow: var(--shadow-lg);
}

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

.detail-line {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

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

.detail-meta-grid span {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
}

.detail-meta-grid strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.detail-tags {
  margin: 20px 0 26px;
}

.detail-container {
  padding-top: 38px;
}

.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: var(--shadow-lg);
}

.video-player video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.player-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 2;
}

.player-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
}

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

.player-button {
  position: relative;
  z-index: 3;
  width: 86px;
  height: 86px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald-500);
  box-shadow: 0 18px 45px rgba(16, 185, 129, 0.35);
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.player-button:hover {
  transform: scale(1.05);
  background: var(--emerald-600);
}

.player-status {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.article-section {
  max-width: 920px;
}

.detail-article {
  padding: 26px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-article p {
  margin: 0 0 16px;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.9;
}

.detail-article p:last-child {
  margin-bottom: 0;
}

.nav-neighbor {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.nav-neighbor a {
  flex: 1;
  padding: 16px 18px;
  border-radius: 16px;
  color: var(--emerald-700);
  background: var(--emerald-50);
  font-weight: 900;
}

.full-ranking .movie-row {
  grid-template-columns: auto 150px minmax(0, 1fr) auto;
}

.site-footer {
  background: var(--slate-900);
  color: rgba(255, 255, 255, 0.72);
}

.footer-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 44px 24px 30px;
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(0, 1fr);
  gap: 30px;
}

.brand-footer {
  color: var(--white);
}

.footer-brand p {
  max-width: 560px;
  margin: 18px 0 0;
  line-height: 1.8;
}

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

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(16, 185, 129, 0.35);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

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

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

  .split-section,
  .footer-wrap {
    grid-template-columns: 1fr;
  }

  .category-panel {
    position: static;
  }
}

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

  .nav-toggle {
    display: inline-block;
  }

  .hero {
    height: 560px;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-dots {
    left: 20px;
    right: auto;
    bottom: 22px;
  }

  .page-container,
  .detail-wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .large-card {
    grid-column: span 2;
  }

  .movie-row,
  .full-ranking .movie-row {
    grid-template-columns: auto 96px minmax(0, 1fr);
  }

  .row-score {
    display: none;
  }

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

  .detail-poster {
    width: min(260px, 70vw);
  }

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

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

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

@media (max-width: 520px) {
  .nav-wrap {
    height: 64px;
    padding: 0 16px;
  }

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

  .hero h1,
  .page-hero h1,
  .detail-copy h1 {
    font-size: 34px;
  }

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

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

  .card-body {
    padding: 12px;
  }

  .card-desc,
  .tag-row {
    display: none;
  }

  .row-poster {
    width: 86px;
    height: 64px;
  }

  .movie-row,
  .full-ranking .movie-row {
    gap: 10px;
    padding: 10px;
  }

  .rank-badge {
    min-width: 28px;
    height: 28px;
  }

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

  .player-button {
    width: 68px;
    height: 68px;
  }

  .nav-neighbor {
    flex-direction: column;
  }
}
