:root {
    --site-blue: #2563eb;
    --site-cyan: #06b6d4;
    --site-teal: #0d9488;
    --site-orange: #f97316;
    --site-red: #ef4444;
    --site-green: #22c55e;
    --text-main: #1f2937;
    --text-muted: #64748b;
    --page-bg: #f0f9ff;
    --white-soft: rgba(255, 255, 255, 0.86);
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 12px 30px rgba(30, 64, 175, 0.12);
    --radius-xl: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    color: var(--text-main);
    background: linear-gradient(180deg, #eff6ff 0%, #ecfeff 45%, #ffffff 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb 0%, #0891b2 52%, #0d9488 100%);
    box-shadow: 0 16px 40px rgba(8, 47, 73, 0.24);
}

.header-inner {
    position: relative;
    padding: 16px 0 20px;
}

.header-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: 26px;
    pointer-events: none;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.logo-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    transition: background 0.25s ease, transform 0.25s ease;
}

.logo:hover .logo-mark {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.logo-title {
    display: block;
    font-size: 25px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    display: block;
    margin-top: 3px;
    color: #dbeafe;
    font-size: 12px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 650;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.94);
    transition: color 0.2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    border-radius: 99px;
    background: #ffffff;
    transition: right 0.25s ease;
}

.main-nav a:hover {
    color: #e0f2fe;
}

.main-nav a:hover::after {
    right: 0;
}

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

.header-search {
    position: relative;
    width: 275px;
}

.header-search input {
    width: 100%;
    height: 42px;
    padding: 0 46px 0 18px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input::placeholder {
    color: rgba(219, 234, 254, 0.88);
}

.header-search input:focus {
    background: rgba(255, 255, 255, 0.26);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.header-search button {
    position: absolute;
    top: 50%;
    right: 12px;
    width: 30px;
    height: 30px;
    border: 0;
    color: #ffffff;
    background: transparent;
    transform: translateY(-50%);
}

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

.mobile-panel {
    display: none;
    padding: 12px 0 18px;
}

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

.mobile-panel .main-nav {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.mobile-panel .main-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-panel .header-search {
    width: 100%;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #020617;
}

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

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

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(8, 145, 178, 0.48), transparent 30%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.48) 46%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-copy {
    max-width: 680px;
    color: #ffffff;
}

.hero-pill,
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--site-cyan), var(--site-blue));
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.28);
}

.hero-copy h1 {
    margin: 18px 0 14px;
    font-size: clamp(40px, 7vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.hero-copy p {
    margin: 0 0 32px;
    max-width: 620px;
    color: #e5e7eb;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

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

.button-primary,
.button-secondary,
.button-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--site-cyan), var(--site-blue));
    box-shadow: 0 16px 32px rgba(14, 165, 233, 0.28);
}

.button-primary:hover,
.button-light:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 20px 38px rgba(14, 165, 233, 0.32);
}

.button-secondary {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.28);
}

.button-light {
    color: #2563eb;
    background: #ffffff;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 30px;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dots button.is-active {
    width: 36px;
    background: #ffffff;
}

.section {
    position: relative;
    padding: 64px 0;
}

.section-soft {
    background: rgba(255, 255, 255, 0.58);
}

.section-gradient {
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
}

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

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

.section-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--site-cyan), var(--site-blue));
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.section-icon.orange {
    background: linear-gradient(135deg, var(--site-orange), var(--site-red));
}

.section-icon.green {
    background: linear-gradient(135deg, var(--site-green), #10b981);
}

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

.section-title p {
    margin: 6px 0 0;
    color: var(--text-muted);
}

.section-gradient .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

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

.movie-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.movie-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #ecfeff);
}

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

.movie-card:hover .movie-cover img,
.media-link:hover img {
    transform: scale(1.08);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.64) 100%);
    opacity: 0.82;
}

.duration {
    position: absolute;
    right: 12px;
    bottom: 10px;
    z-index: 2;
    padding: 4px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
}

.card-body {
    padding: 18px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 13px;
}

.card-category {
    max-width: 68%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #2563eb;
    font-weight: 800;
}

.movie-card h3 {
    margin: 0 0 9px;
    color: #111827;
    font-size: 18px;
    line-height: 1.35;
    transition: color 0.2s ease;
}

.movie-card:hover h3 {
    color: #2563eb;
}

.card-desc {
    min-height: 46px;
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.62;
}

.line-clamp-2 {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.horizontal-scroller .movie-card {
    min-width: 320px;
    scroll-snap-align: start;
}

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

.rank-item {
    display: grid;
    grid-template-columns: 72px 1fr 140px;
    gap: 16px;
    align-items: center;
    min-height: 112px;
    padding: 16px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.rank-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.rank-number {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--site-orange), var(--site-red));
}

.rank-body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
}

.rank-body p {
    margin: 0;
    color: var(--text-muted);
    font-size: 14px;
}

.rank-thumb {
    width: 140px;
    height: 84px;
    overflow: hidden;
    border-radius: 16px;
    background: #dbeafe;
}

.rank-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.large-card .movie-cover {
    aspect-ratio: 16 / 8.4;
}

.media-list {
    display: grid;
    gap: 16px;
}

.media-link {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.media-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
}

.media-thumb {
    height: 92px;
    overflow: hidden;
    border-radius: 16px;
    background: #dbeafe;
}

.media-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.media-link h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.45;
}

.media-link p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

.cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    padding: 52px 34px;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb, #06b6d4, #0d9488);
    box-shadow: var(--shadow-soft);
}

.cta-panel h2,
.cta-panel h3 {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 46px);
}

.cta-panel p {
    margin: 0 auto 28px;
    max-width: 720px;
    color: #e0f2fe;
    font-size: 18px;
    line-height: 1.7;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 92px;
    color: #ffffff;
    background: linear-gradient(90deg, #2563eb, #06b6d4);
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 54px;
    background: #ffffff;
    clip-path: polygon(0 52%, 20% 30%, 48% 58%, 74% 25%, 100% 50%, 100% 100%, 0 100%);
}

.page-hero .site-container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(38px, 6vw, 60px);
    line-height: 1.06;
}

.page-hero p {
    margin: 0;
    max-width: 760px;
    color: #dbeafe;
    font-size: 20px;
    line-height: 1.7;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) 180px 180px 160px;
    gap: 14px;
    margin: 0 0 30px;
    padding: 18px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    height: 46px;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    padding: 0 14px;
    color: #0f172a;
    outline: none;
    background: #f8fafc;
}

.filter-panel input:focus,
.filter-panel select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.16);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 44px 0 0;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0 14px;
    border-radius: 14px;
    font-weight: 800;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
}

.pagination .current {
    color: #ffffff;
    background: #2563eb;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    padding: 26px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    box-shadow: var(--shadow-card);
    transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.category-tile:nth-child(3n + 2) {
    background: linear-gradient(135deg, #06b6d4, #0d9488);
}

.category-tile:nth-child(3n + 3) {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.category-tile h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 12px;
    font-size: 28px;
}

.category-tile p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
}

.category-tile strong {
    display: block;
    margin-top: 20px;
    font-size: 34px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(300px, 0.92fr);
    gap: 32px;
    padding: 42px 0 64px;
}

.player-card,
.detail-card,
.sidebar-card {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

.player-card {
    overflow: hidden;
    background: #020617;
}

.video-player {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.26), rgba(2, 6, 23, 0.64));
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

.player-start {
    display: inline-grid;
    place-items: center;
    width: 92px;
    height: 92px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, var(--site-cyan), var(--site-blue));
    box-shadow: 0 20px 50px rgba(14, 165, 233, 0.42);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.player-start:hover {
    transform: scale(1.06);
    box-shadow: 0 24px 64px rgba(14, 165, 233, 0.5);
}

.player-status {
    position: absolute;
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    background: rgba(15, 23, 42, 0.74);
    backdrop-filter: blur(10px);
}

.detail-card {
    margin-top: 24px;
    padding: 28px;
}

.detail-card h1 {
    margin: 14px 0 18px;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.16;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #e2e8f0;
    color: var(--text-muted);
    font-size: 14px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 20px 0;
}

.info-item {
    padding: 14px;
    border-radius: 16px;
    background: #f8fafc;
}

.info-item span {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}

.info-item strong {
    display: block;
    margin-top: 4px;
}

.prose h2 {
    margin: 26px 0 12px;
    font-size: 24px;
}

.prose p {
    margin: 0 0 14px;
    color: #475569;
    line-height: 1.85;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 12px 0 0;
}

.tags span,
.tag-link {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    background: #dbeafe;
}

.review-box {
    margin-top: 24px;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(90deg, #eff6ff, #ecfeff);
}

.sidebar-card {
    position: sticky;
    top: 108px;
    padding: 22px;
}

.sidebar-card h2 {
    margin: 0 0 18px;
    font-size: 22px;
}

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

.related-item {
    display: grid;
    grid-template-columns: 116px 1fr;
    gap: 12px;
    align-items: center;
}

.related-thumb {
    height: 72px;
    overflow: hidden;
    border-radius: 14px;
    background: #dbeafe;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-item h3 {
    margin: 0 0 6px;
    font-size: 14px;
    line-height: 1.4;
}

.related-item p {
    margin: 0;
    color: var(--text-muted);
    font-size: 12px;
}

.site-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    padding: 70px 0 28px;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.site-footer h3,
.site-footer h4 {
    margin: 0 0 16px;
}

.site-footer p,
.site-footer li,
.site-footer a {
    color: #94a3b8;
    line-height: 1.8;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(148, 163, 184, 0.28);
    color: #94a3b8;
    font-size: 14px;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 46px 20px;
    text-align: center;
    border-radius: 24px;
    color: var(--text-muted);
    background: #ffffff;
    box-shadow: var(--shadow-card);
}

@media (max-width: 1024px) {
    .main-nav,
    .header-actions > .header-search {
        display: none;
    }

    .mobile-toggle {
        display: grid;
        place-items: center;
    }

    .hero {
        height: 540px;
    }

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

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

    .sidebar-card {
        position: static;
    }

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

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

@media (max-width: 760px) {
    .site-container {
        width: min(100% - 24px, 1180px);
    }

    .header-inner {
        padding: 12px 0 18px;
    }

    .logo-title {
        font-size: 20px;
    }

    .hero {
        height: 510px;
    }

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

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

    .section {
        padding: 44px 0;
    }

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

    .grid-cards,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .rank-item {
        grid-template-columns: 56px 1fr;
    }

    .rank-thumb {
        display: none;
    }

    .rank-number {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        font-size: 20px;
    }

    .media-link,
    .related-item {
        grid-template-columns: 112px 1fr;
    }

    .media-thumb,
    .related-thumb {
        height: 74px;
    }

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

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

    .footer-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }

    .player-start {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
}
