:root {
  --amber-50: #fff8ed;
  --amber-100: #ffedd1;
  --amber-200: #fed7aa;
  --amber-400: #f59e0b;
  --amber-500: #f59e0b;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --red-500: #ef4444;
  --pink-600: #db2777;
  --blue-500: #3b82f6;
  --cyan-600: #0891b2;
  --purple-600: #9333ea;
  --violet-600: #7c3aed;
  --green-500: #22c55e;
  --emerald-600: #059669;
  --slate-950: #0f172a;
  --slate-900: #111827;
  --slate-700: #374151;
  --slate-500: #6b7280;
  --white: #ffffff;
  --shadow-sm: 0 10px 24px rgba(120, 53, 15, 0.08);
  --shadow-md: 0 18px 44px rgba(120, 53, 15, 0.16);
  --shadow-lg: 0 26px 70px rgba(120, 53, 15, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--slate-900);
  background: linear-gradient(180deg, var(--amber-50), #fff7ed 42%, #fffaf2);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 235, 0.88);
  border-bottom: 1px solid rgba(251, 191, 36, 0.28);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 0 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-icon,
.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(--amber-500), var(--orange-600));
  box-shadow: 0 12px 26px rgba(234, 88, 12, 0.28);
}

.brand-text {
  display: grid;
  line-height: 1.15;
}

.brand-text strong {
  font-size: 1.16rem;
  color: transparent;
  background: linear-gradient(90deg, #92400e, var(--orange-600));
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-text em {
  margin-top: 3px;
  font-style: normal;
  font-size: 0.75rem;
  color: #b45309;
}

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

.nav-link {
  padding: 10px 13px;
  border-radius: 12px;
  color: #92400e;
  font-size: 0.95rem;
  font-weight: 650;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #7c2d12;
  background: rgba(251, 191, 36, 0.18);
  transform: translateY(-1px);
}

.header-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input {
  width: 230px;
  border: 1px solid rgba(245, 158, 11, 0.32);
  background: var(--white);
  color: var(--slate-900);
  border-radius: 999px;
  padding: 10px 16px;
  outline: 0;
}

.header-search input:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}

.header-search button,
.hero-search button,
.search-panel button {
  border: 0;
  color: var(--white);
  font-weight: 750;
  border-radius: 999px;
  padding: 10px 18px;
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 12px 28px rgba(234, 88, 12, 0.24);
  cursor: pointer;
}

.mobile-menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  border-radius: 12px;
  padding: 10px 12px;
  color: #92400e;
  background: rgba(251, 191, 36, 0.2);
}

.mobile-panel {
  border-top: 1px solid rgba(251, 191, 36, 0.25);
  padding: 10px 20px 18px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.mobile-sub-link {
  border-radius: 12px;
  padding: 10px 12px;
  color: #92400e;
  background: rgba(255, 255, 255, 0.62);
}

.hero-section,
.page-hero,
.detail-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(120deg, #b45309, var(--orange-500) 48%, #92400e);
}

.hero-section {
  min-height: 720px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 46px 46px;
}

.hero-shell,
.content-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 64px 0 56px;
}

.hero-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.1;
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.05em;
}

.hero-subtitle {
  max-width: 780px;
  margin: 18px auto 26px;
  color: #ffedd5;
  text-align: center;
  font-size: 1.17rem;
}

.hero-search,
.search-panel,
.inline-search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-search {
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(10px);
}

.hero-search input,
.search-panel input,
.inline-search input,
.inline-search select,
.filter-bar select {
  min-width: 0;
  flex: 1;
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  outline: 0;
  color: var(--slate-900);
  background: var(--white);
}

.hero-carousel {
  position: relative;
  min-height: 360px;
  margin-top: 24px;
}

.hero-slide {
  display: none;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.hero-slide.is-active {
  display: grid;
  animation: fadeIn 0.55s ease;
}

.hero-copy h1 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 680px;
  color: #ffedd5;
  font-size: 1.08rem;
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff7ed;
  font-weight: 800;
  letter-spacing: 0.04em;
}

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

.primary-button,
.ghost-button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  color: var(--white);
  background: linear-gradient(90deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 14px 34px rgba(124, 45, 18, 0.24);
}

.ghost-button {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.ghost-button.dark {
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(255, 255, 255, 0.72);
}

.primary-button:hover,
.ghost-button:hover,
.text-button:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.hero-poster {
  position: relative;
  display: block;
  overflow: hidden;
  height: 330px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 54px rgba(69, 26, 3, 0.34);
}

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

.hero-poster span,
.poster-play,
.play-circle {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 70px;
  height: 70px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 30px;
  border-radius: 999px;
  background: var(--white);
}

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

.hero-category-grid {
  margin-top: 22px;
}

.category-card {
  min-height: 124px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  border-radius: 24px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-lg);
}

.category-card strong {
  font-size: 1.15rem;
}

.category-card em {
  font-size: 0.84rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
}

.category-icon {
  font-size: 2rem;
}

.theme-one {
  background: linear-gradient(135deg, #f97316, #dc2626);
}

.theme-two {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
}

.theme-three {
  background: linear-gradient(135deg, #3b82f6, #0891b2);
}

.theme-four {
  background: linear-gradient(135deg, #22c55e, #059669);
}

.theme-five {
  background: linear-gradient(135deg, #a855f7, #7c3aed);
}

.theme-six {
  background: linear-gradient(135deg, #06b6d4, #0f766e);
}

.theme-seven {
  background: linear-gradient(135deg, #ec4899, #be185d);
}

.theme-eight {
  background: linear-gradient(135deg, #6366f1, #4338ca);
}

.theme-nine {
  background: linear-gradient(135deg, #facc15, #f97316);
}

.theme-ten {
  background: linear-gradient(135deg, #14b8a6, #2563eb);
}

.content-shell {
  padding: 54px 0 10px;
}

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

.section-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.24);
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.15;
  color: var(--slate-900);
}

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

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

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

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

.poster-link img,
.detail-poster img,
.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.poster-link img {
  transition: transform 0.3s ease;
}

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

.poster-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(8px);
}

.poster-play {
  width: 52px;
  height: 52px;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

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

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

.movie-title {
  display: block;
  color: var(--slate-900);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.35;
}

.movie-title:hover {
  color: var(--orange-600);
}

.movie-meta,
.detail-meta,
.card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  color: var(--slate-500);
  font-size: 0.86rem;
}

.movie-meta span,
.detail-meta span {
  border-radius: 999px;
  padding: 4px 8px;
  background: #fff7ed;
}

.movie-card-body p {
  min-height: 3.2em;
  margin: 12px 0 0;
  color: var(--slate-700);
  font-size: 0.92rem;
  line-height: 1.7;
}

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

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: #92400e;
  background: #ffedd5;
  font-size: 0.78rem;
  font-weight: 700;
}

.card-foot {
  justify-content: space-between;
  border-top: 1px solid #ffedd5;
  padding-top: 13px;
}

.featured-layout,
.editor-layout,
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.movie-card.is-featured .poster-link {
  aspect-ratio: 16 / 8;
}

.movie-card.is-featured .movie-title {
  font-size: clamp(1.4rem, 3vw, 2.25rem);
}

.movie-card.is-featured .movie-card-body p {
  font-size: 1rem;
}

.mini-rank-card,
.ranking-panel,
.detail-side,
.detail-article {
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.mini-rank-card h2,
.detail-side h2,
.detail-article h2 {
  margin: 0 0 12px;
  color: var(--slate-900);
}

.mini-rank-card p {
  color: var(--slate-500);
  line-height: 1.7;
}

.mini-rank-list,
.editor-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

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

.horizontal-item:hover {
  background: #fff7ed;
  transform: translateX(2px);
}

.horizontal-item img {
  width: 84px;
  height: 58px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
}

.rank-number,
.rank-dot {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-600));
}

.horizontal-text {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.horizontal-text strong {
  overflow: hidden;
  color: var(--slate-900);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.horizontal-text em,
.horizontal-like {
  color: var(--slate-500);
  font-size: 0.86rem;
  font-style: normal;
}

.text-button {
  color: #92400e;
  background: #ffedd5;
}

.horizontal-scroll {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 5px 4px 18px;
  scroll-snap-type: x mandatory;
}

.scroll-card {
  width: 318px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.all-categories {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.compact-hero {
  background: linear-gradient(120deg, #b45309, var(--orange-500), #dc2626);
}

.category-hero {
  padding: 72px 0 52px;
}

.hero-content h1 {
  margin: 12px 0 12px;
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.hero-content p {
  max-width: 820px;
  color: #ffedd5;
  font-size: 1.08rem;
  line-height: 1.8;
}

.inline-search {
  max-width: 860px;
  margin-top: 24px;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.inline-search select {
  flex: 0 0 150px;
}

.search-panel {
  max-width: 760px;
  margin-top: 24px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.filter-bar select {
  min-width: 180px;
  border: 1px solid #ffedd5;
  background: #fffaf2;
}

.detail-hero {
  padding: 34px 0 54px;
  color: var(--slate-900);
  background: linear-gradient(180deg, #fff7ed, #ffedd5);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #92400e;
  font-weight: 700;
}

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

.detail-poster {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--amber-200), var(--orange-500));
  box-shadow: var(--shadow-md);
}

.detail-info {
  min-width: 0;
}

.detail-info .eyebrow {
  color: #92400e;
}

.detail-info h1 {
  margin: 12px 0 16px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  color: var(--slate-900);
}

.lead-text {
  color: var(--slate-700);
  font-size: 1.07rem;
  line-height: 1.85;
}

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

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
}

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

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

.player-card video {
  width: 100%;
  height: 100%;
  background: #111827;
}

.player-cover {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: #111827;
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.62));
}

.player-cover.is-hidden {
  display: none;
}

.play-circle {
  z-index: 2;
  width: 86px;
  height: 86px;
  font-size: 1.8rem;
}

.article-section {
  padding-top: 40px;
}

.detail-article {
  color: var(--slate-700);
  font-size: 1.02rem;
  line-height: 1.9;
}

.detail-article h2 {
  color: var(--slate-900);
  margin-top: 14px;
}

.related-grid .movie-card.is-small .poster-link {
  aspect-ratio: 16 / 10;
}

.site-footer {
  margin-top: 70px;
  color: #fef3c7;
  background: #78350f;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding: 42px 0;
}

.footer-brand p {
  max-width: 420px;
  color: #fcd34d;
  line-height: 1.8;
}

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

.footer-links h2 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--white);
}

.footer-links a {
  color: #fcd34d;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(252, 211, 77, 0.25);
  color: #fcd34d;
  font-size: 0.9rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .featured-layout,
  .editor-layout {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .detail-side {
    grid-column: 1 / -1;
    position: static;
  }

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

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

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-topline {
    flex-wrap: wrap;
  }

  .hero-slide,
  .hero-slide.is-active {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .hero-poster {
    height: 260px;
  }

  .hero-category-grid,
  .category-grid,
  .all-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

@media (max-width: 560px) {
  .header-inner,
  .hero-shell,
  .content-shell,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 28px, 1180px);
  }

  .brand-text em {
    display: none;
  }

  .hero-search,
  .search-panel,
  .inline-search,
  .filter-bar {
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search input,
  .hero-search button,
  .search-panel input,
  .search-panel button,
  .inline-search input,
  .inline-search select,
  .filter-bar select {
    width: 100%;
  }

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

  .horizontal-item {
    grid-template-columns: auto 74px minmax(0, 1fr);
  }

  .horizontal-like {
    display: none;
  }

  .player-card {
    border-radius: 20px;
  }
}
