:root {
  color-scheme: dark;
  --bg: #09090b;
  --panel: rgba(24, 24, 27, 0.72);
  --panel-strong: #18181b;
  --muted: #a1a1aa;
  --soft: #d4d4d8;
  --text: #fafafa;
  --line: #27272a;
  --line-soft: rgba(63, 63, 70, 0.7);
  --cyan: #06b6d4;
  --cyan-soft: rgba(6, 182, 212, 0.2);
  --blue: #2563eb;
  --yellow: #facc15;
  --radius: 18px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(24, 24, 27, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  font-size: 17px;
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.24);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-text em {
  margin-top: 3px;
  color: #71717a;
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.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: 12px;
  color: #d4d4d8;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(39, 39, 42, 0.86);
  color: #22d3ee;
}

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

.nav-search input,
.mobile-search input,
.filter-input,
.search-large input,
.filter-select {
  width: 100%;
  border: 1px solid #3f3f46;
  border-radius: 13px;
  background: #27272a;
  color: #f4f4f5;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  width: 260px;
  padding: 10px 14px;
  font-size: 14px;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-input:focus,
.search-large input:focus,
.filter-select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.12);
}

.nav-search button,
.mobile-search button,
.search-large button {
  border: 0;
  border-radius: 13px;
  background: var(--cyan);
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-search button:hover,
.mobile-search button:hover,
.search-large button:hover {
  background: #0891b2;
  transform: translateY(-1px);
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(39, 39, 42, 0.75);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #e4e4e7;
}

.mobile-nav {
  display: none;
  padding: 0 0 16px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav .nav-link {
  display: flex;
  width: 100%;
  margin-bottom: 6px;
}

.mobile-category-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.mobile-category-links a {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: #d4d4d8;
  background: rgba(39, 39, 42, 0.55);
}

.hero {
  position: relative;
  height: 650px;
  overflow: hidden;
  background: #000;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shade-left {
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.76) 38%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-shade-bottom {
  background: linear-gradient(0deg, var(--bg) 0%, rgba(9, 9, 11, 0.1) 42%, rgba(9, 9, 11, 0) 100%);
}

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

.hero-content > * {
  max-width: 690px;
}

.hero-badge,
.eyebrow {
  display: inline-flex;
  width: max-content;
  align-items: center;
  border: 1px solid rgba(6, 182, 212, 0.45);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.18);
  color: #22d3ee;
  padding: 6px 13px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero p {
  margin: 0;
  color: #d4d4d8;
  font-size: 19px;
  max-width: 650px;
}

.hero-meta,
.movie-meta,
.detail-meta,
.page-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #a1a1aa;
}

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

.hero-meta span,
.detail-meta span,
.page-meta span {
  border: 1px solid rgba(63, 63, 70, 0.86);
  border-radius: 999px;
  background: rgba(24, 24, 27, 0.72);
  padding: 5px 11px;
}

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

.tag-row span {
  border-radius: 999px;
  background: rgba(39, 39, 42, 0.9);
  color: #d4d4d8;
  padding: 4px 10px;
  font-size: 12px;
}

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

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

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

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

.btn-primary {
  background: var(--cyan);
  color: #fff;
  box-shadow: 0 18px 42px rgba(6, 182, 212, 0.22);
}

.btn-primary:hover {
  background: #0891b2;
}

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

.hero-thumbs {
  position: absolute;
  right: max(24px, calc((100% - 1280px) / 2));
  bottom: 44px;
  z-index: 4;
  display: grid;
  width: min(460px, calc(100% - 48px));
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hero-thumb {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(24, 24, 27, 0.64);
  padding: 0;
  cursor: pointer;
  opacity: 0.76;
  transition: opacity 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

.hero-thumb:hover,
.hero-thumb.active {
  border-color: rgba(6, 182, 212, 0.9);
  opacity: 1;
  transform: translateY(-2px);
}

.hero-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-thumb span {
  display: block;
  overflow: hidden;
  padding: 8px;
  color: #e4e4e7;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero,
.content-section,
.feature-band,
.player-section {
  padding: 72px 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 18%, rgba(6, 182, 212, 0.22), transparent 32%),
    radial-gradient(circle at 78% 14%, rgba(37, 99, 235, 0.22), transparent 28%),
    linear-gradient(180deg, #18181b 0%, var(--bg) 100%);
}

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

.page-title {
  max-width: 860px;
}

.page-title h1 {
  margin: 16px 0;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.page-title p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.section-heading h2 {
  margin: 0 0 6px;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
}

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

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #22d3ee;
  font-weight: 700;
}

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

.movie-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.14);
  transition: border 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(6, 182, 212, 0.55);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(6, 182, 212, 0.12);
}

.movie-poster {
  position: relative;
  display: block;
  overflow: hidden;
  background: #27272a;
}

.movie-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.movie-card:hover .movie-poster img {
  transform: scale(1.06);
}

.movie-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.06));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .movie-poster::after {
  opacity: 1;
}

.poster-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.92);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.poster-label {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  border: 1px solid rgba(6, 182, 212, 0.42);
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.2);
  color: #a5f3fc;
  padding: 4px 9px;
  font-size: 12px;
}

.movie-card-body {
  padding: 18px;
}

.movie-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.3;
}

.movie-card h3 a:hover {
  color: #22d3ee;
}

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

.movie-meta {
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 13px;
}

.feature-band {
  border-top: 1px solid rgba(6, 182, 212, 0.18);
  border-bottom: 1px solid rgba(6, 182, 212, 0.18);
  background: linear-gradient(135deg, rgba(8, 47, 73, 0.38), rgba(30, 64, 175, 0.22));
}

.feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.feature-media {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(6, 182, 212, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-media span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 54px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.feature-media:hover span {
  opacity: 1;
}

.feature-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.feature-copy p {
  color: #d4d4d8;
  font-size: 17px;
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel-strong);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.category-card:hover img {
  opacity: 0.66;
  transform: scale(1.06);
}

.category-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent);
}

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

.category-card p {
  margin: 0;
  color: #d4d4d8;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px 180px;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-input,
.filter-select {
  padding: 13px 15px;
}

.search-large {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 12px;
  width: min(760px, 100%);
  margin-top: 26px;
}

.search-large input {
  padding: 15px 17px;
}

.search-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 30px;
}

.result-empty {
  display: none;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

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

.rank-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 48px 86px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  padding: 10px;
  transition: border 0.2s ease, transform 0.2s ease;
}

.rank-row:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateX(3px);
}

.rank-num {
  color: var(--yellow);
  font-size: 21px;
  font-weight: 900;
  text-align: center;
}

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

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

.rank-info strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-info em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.player-page-bg {
  background:
    radial-gradient(circle at 22% 0%, rgba(6, 182, 212, 0.18), transparent 28%),
    radial-gradient(circle at 86% 4%, rgba(37, 99, 235, 0.2), transparent 28%),
    var(--bg);
}

.detail-hero {
  padding: 54px 0 34px;
}

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

.detail-head h1 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.detail-head p {
  margin: 0;
  color: #d4d4d8;
  font-size: 18px;
}

.detail-poster {
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.24);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 182, 212, 0.26);
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
}

.player-shell video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
  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.42;
}

.play-button {
  position: relative;
  z-index: 2;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 182, 212, 0.94);
  color: #fff;
  font-size: 34px;
  box-shadow: 0 18px 48px rgba(6, 182, 212, 0.32);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

.play-button:hover {
  background: #0891b2;
  transform: scale(1.05);
}

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

.detail-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 28px;
}

.detail-panel + .detail-panel {
  margin-top: 22px;
}

.detail-panel h2,
.sidebar-panel h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.detail-panel p {
  margin: 0;
  color: #d4d4d8;
  white-space: pre-line;
}

.sidebar-panel {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 20px;
}

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

.related-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-radius: 16px;
  padding: 8px;
  transition: background 0.2s ease;
}

.related-item:hover {
  background: rgba(39, 39, 42, 0.82);
}

.related-item img {
  width: 96px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.related-item strong {
  display: block;
  overflow: hidden;
  color: #f4f4f5;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.related-item span {
  color: var(--muted);
  font-size: 13px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #18181b;
}

.footer-inner {
  display: grid;
  width: min(1280px, calc(100% - 32px));
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
  padding: 46px 0;
}

.footer-brand p {
  max-width: 580px;
  margin: 18px 0 0;
  color: var(--muted);
}

.footer-block h2 {
  margin: 0 0 14px;
  color: #e4e4e7;
  font-size: 16px;
}

.footer-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-block a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-block a:hover {
  color: #22d3ee;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #71717a;
  padding: 20px 16px;
  text-align: center;
}

.hidden-card {
  display: none !important;
}

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

  .nav-search {
    display: none;
  }

  .rank-layout,
  .detail-layout,
  .detail-head,
  .feature-card {
    grid-template-columns: 1fr;
  }
}

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

  .mobile-menu-button {
    display: block;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .hero {
    height: 720px;
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 88px;
  }

  .hero-thumbs {
    right: 16px;
    bottom: 24px;
    left: 16px;
    width: auto;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hero-thumb span {
    display: none;
  }

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

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

  .movie-card-body {
    padding: 14px;
  }

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

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

  .detail-panel,
  .sidebar-panel {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .nav-shell,
  .shell,
  .hero-content,
  .footer-inner {
    width: min(100% - 24px, 1280px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p,
  .page-title p,
  .detail-head p {
    font-size: 16px;
  }

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

  .hero-thumbs {
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
  }

  .play-button {
    width: 72px;
    height: 72px;
  }
}
