:root {
  color-scheme: light;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --blue-50: #eff6ff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --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 20px 45px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--gray-800);
  background: linear-gradient(180deg, var(--sky-50) 0%, var(--white) 42%, var(--gray-50) 100%);
  min-height: 100vh;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(240, 249, 255, 0.95), rgba(239, 246, 255, 0.95));
  border-bottom: 1px solid var(--sky-200);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.site-nav {
  width: min(100% - 32px, 1280px);
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky-500), var(--sky-700));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(2, 132, 199, 0.28);
}

.logo-mark svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

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

.logo-text strong {
  font-size: 20px;
  color: var(--gray-800);
  transition: color 0.2s ease;
}

.logo-text small {
  color: var(--gray-500);
  font-size: 12px;
}

.site-logo:hover .logo-text strong {
  color: var(--sky-700);
}

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

.nav-link,
.dropdown-link {
  color: var(--gray-700);
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.dropdown-link:hover {
  color: var(--sky-600);
}

.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.dropdown-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 6px;
  width: 300px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.dropdown-link {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
}

.dropdown-link:hover {
  background: var(--sky-50);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--gray-700);
  border-radius: 999px;
}

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

.hero-carousel {
  position: relative;
  min-height: 500px;
  margin-bottom: 48px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-900);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.6s ease, transform 0.8s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.44) 48%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 6vw, 56px);
  right: clamp(24px, 6vw, 56px);
  bottom: clamp(28px, 7vw, 58px);
  max-width: 760px;
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--sky-500);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 720px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.7;
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-tags a,
.hero-tags span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.tag {
  background: var(--sky-100);
  color: var(--sky-700);
}

.hero-actions,
.detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

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

.btn-primary {
  background: var(--white);
  color: var(--sky-600);
  box-shadow: 0 16px 32px rgba(255, 255, 255, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--sky-50);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

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

.btn-ghost.light {
  color: var(--sky-700);
  border-color: var(--sky-200);
  background: var(--sky-50);
}

.hero-dots {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  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: 34px;
  background: var(--white);
}

.search-panel {
  margin-bottom: 48px;
  padding: 24px;
  border: 1px solid var(--sky-100);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

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

.search-form input {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  border: 1px solid var(--sky-200);
  border-radius: 999px;
  outline: 0;
  color: var(--gray-800);
  background: var(--white);
}

.search-form input:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.16);
}

.search-form button {
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--sky-600);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
}

.search-form button:hover {
  background: var(--sky-700);
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.quick-tags a {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--sky-50);
  color: var(--sky-700);
  font-size: 14px;
  font-weight: 700;
}

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

.highlight-section {
  padding: 32px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(90deg, var(--sky-100), var(--blue-50));
  box-shadow: var(--shadow-md);
}

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

.section-head h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--gray-800);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.section-head h2 span {
  width: 4px;
  height: 34px;
  border-radius: 999px;
  background: var(--sky-600);
}

.section-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--sky-600);
  font-weight: 800;
}

.section-more:hover {
  color: var(--sky-700);
}

.section-summary {
  margin: -12px 0 24px;
  color: var(--gray-600);
  line-height: 1.8;
}

.movie-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.movie-card {
  min-width: 0;
}

.movie-link {
  display: block;
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.movie-poster {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-100), var(--gray-100));
}

.card-small .movie-poster {
  aspect-ratio: 16 / 9;
}

.card-large .movie-poster {
  aspect-ratio: 16 / 9;
}

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

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

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.poster-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sky-600);
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.movie-link:hover .poster-shade,
.movie-link:hover .poster-play {
  opacity: 1;
}

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

.movie-info {
  padding: 16px;
}

.movie-info h3 {
  margin: 0 0 10px;
  color: var(--gray-800);
  font-size: 17px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.movie-link:hover .movie-info h3 {
  color: var(--sky-600);
}

.movie-info p {
  min-height: 44px;
  margin: 0 0 14px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--gray-500);
  font-size: 12px;
}

.movie-meta em {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--sky-100);
  color: var(--sky-700);
  font-style: normal;
  font-weight: 700;
}

.page-hero {
  margin-bottom: 32px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--sky-100), var(--white));
  box-shadow: var(--shadow-md);
}

.compact-hero {
  padding: clamp(28px, 6vw, 56px);
}

.compact-hero h1 {
  margin: 0 0 14px;
  color: var(--gray-800);
  font-size: clamp(32px, 5vw, 48px);
}

.compact-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.85;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--gray-500);
  font-size: 14px;
}

.breadcrumb a:hover {
  color: var(--sky-600);
}

.category-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.category-card a {
  display: block;
  height: 100%;
  padding: 20px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-thumbs {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 8px;
  height: 150px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--sky-100);
}

.category-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card h2 {
  margin: 0 0 10px;
  color: var(--gray-800);
}

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

.category-card span {
  color: var(--sky-600);
  font-weight: 800;
}

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

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

.rank-row,
.rank-card a {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rank-row {
  grid-template-columns: auto 1fr auto;
}

.rank-row:hover,
.rank-card a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.rank-num {
  color: var(--sky-600);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.rank-row strong {
  min-width: 0;
  color: var(--gray-800);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rank-row em {
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
}

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

.rank-card a {
  grid-template-columns: auto 110px 1fr;
}

.rank-card img {
  width: 110px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
  background: var(--sky-100);
}

.rank-content {
  min-width: 0;
}

.rank-content strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gray-800);
  font-size: 17px;
}

.rank-content em {
  display: block;
  margin-bottom: 8px;
  color: var(--gray-500);
  font-style: normal;
  font-size: 13px;
}

.rank-content p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-shell {
  max-width: 1180px;
}

.detail-hero {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: stretch;
  padding: 28px;
  margin-bottom: 36px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--gray-900), #0f172a 58%, var(--sky-700));
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.detail-cover {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.32);
  background: var(--sky-100);
}

.detail-cover img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.detail-info h1 {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.12;
}

.detail-one-line {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.8;
}

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

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

.detail-meta dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.detail-meta dd {
  margin: 4px 0 0;
  color: var(--white);
  font-weight: 800;
}

.player-section,
.detail-article {
  margin-bottom: 40px;
  padding: 28px;
  border-radius: var(--radius-2xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.player-section h2,
.detail-article h2 {
  margin: 0 0 18px;
  color: var(--gray-800);
  font-size: 26px;
}

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #000;
  aspect-ratio: 16 / 9;
}

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

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  border: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.25));
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.play-overlay span {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--sky-600);
  font-size: 28px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

.play-overlay strong {
  font-size: 20px;
}

.player-shell.is-playing .play-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.detail-article p {
  color: var(--gray-700);
  font-size: 17px;
  line-height: 2;
}

.empty-state {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--gray-600);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--gray-200);
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

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

.footer-brand p {
  max-width: 680px;
  color: var(--gray-600);
  line-height: 1.8;
}

.footer-column h2 {
  margin: 0 0 16px;
  color: var(--gray-800);
  font-size: 18px;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li + li {
  margin-top: 10px;
}

.footer-column a {
  color: var(--gray-600);
}

.footer-column a:hover {
  color: var(--sky-600);
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px;
  color: var(--gray-500);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

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

  .category-overview,
  .ranking-page .ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-header.menu-open .nav-links {
    display: flex;
  }

  .nav-link,
  .dropdown-link {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .dropdown-panel {
    position: static;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
    border-radius: 14px;
    background: var(--sky-50);
  }

  .grid-three,
  .grid-four,
  .grid-six,
  .home-ranking,
  .ranking-page .ranking-list,
  .category-overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .detail-cover img {
    min-height: 360px;
  }

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

@media (max-width: 620px) {
  .page-shell {
    width: min(100% - 24px, 1280px);
    padding-top: 20px;
  }

  .site-nav {
    width: min(100% - 24px, 1280px);
  }

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

  .hero-carousel {
    min-height: 520px;
    border-radius: 22px;
  }

  .hero-content {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 16px;
  }

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

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

  .search-form button {
    width: 100%;
  }

  .grid-three,
  .grid-four,
  .grid-six,
  .home-ranking,
  .ranking-page .ranking-list,
  .category-overview {
    grid-template-columns: 1fr;
  }

  .highlight-section,
  .player-section,
  .detail-article,
  .detail-hero {
    padding: 20px;
    border-radius: 22px;
  }

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

  .rank-card a {
    grid-template-columns: auto 88px 1fr;
  }

  .rank-card img {
    width: 88px;
    height: 62px;
  }
}
