* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    color: #111827;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    line-height: 1.6;
}

img {
    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: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

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

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand span:last-child,
.footer-brand span:last-child {
    background: linear-gradient(90deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111827;
    background: linear-gradient(135deg, #fbbf24, #f97316);
    box-shadow: 0 10px 24px rgba(251, 191, 36, 0.26);
    font-size: 14px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 600;
}

.nav-links a {
    color: #e5e7eb;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: #fbbf24;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 9px 12px;
    color: #ffffff;
    background: rgba(148, 163, 184, 0.16);
    cursor: pointer;
}

.hero {
    position: relative;
    height: min(760px, 72vh);
    min-height: 520px;
    overflow: hidden;
    background: #000000;
}

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 72% 25%, rgba(251, 191, 36, 0.2), transparent 26%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(15, 23, 42, 0.68) 45%, rgba(15, 23, 42, 0.18) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.98) 0%, rgba(2, 6, 23, 0.18) 55%, rgba(2, 6, 23, 0.4) 100%);
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1280px) / 2));
    bottom: 86px;
    width: min(680px, calc(100% - 48px));
    color: #ffffff;
}

.hero-kicker,
.detail-kicker,
.page-hero span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    border-radius: 999px;
    padding: 6px 14px;
    background: #f59e0b;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.hero h1,
.hero h2 {
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.03;
    font-weight: 900;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.36);
}

.hero p {
    margin: 0 0 22px;
    max-width: 660px;
    color: #e5e7eb;
    font-size: clamp(17px, 2.2vw, 23px);
}

.hero-tags,
.detail-tags,
.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hero-tags {
    margin-bottom: 26px;
}

.hero-tags span,
.detail-tags span,
.tag-row span {
    border-radius: 999px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    font-size: 13px;
    backdrop-filter: blur(8px);
}

.tag-row span {
    background: #f1f5f9;
    color: #475569;
}

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

.primary-button,
.ghost-button,
.rank-action,
.more-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    padding: 12px 22px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button,
.rank-action {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #ffffff;
    box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.primary-button:hover,
.rank-action:hover,
.more-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(249, 115, 22, 0.32);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: rgba(15, 23, 42, 0.36);
    backdrop-filter: blur(10px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
    cursor: pointer;
    font-size: 38px;
    line-height: 1;
    transform: translateY(-50%);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

.hero-dot.is-active {
    width: 36px;
    background: #f59e0b;
}

.search-band {
    margin-top: -38px;
    position: relative;
    z-index: 10;
    padding: 0 18px;
}

.home-search {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    border-radius: 22px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(18px);
}

.home-search input,
.filter-input,
.filter-select {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 13px 16px;
    color: #111827;
    background: #ffffff;
    outline: none;
}

.home-search input:focus,
.filter-input:focus,
.filter-select:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.home-search button {
    border: 0;
    border-radius: 14px;
    padding: 0 26px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    cursor: pointer;
    font-weight: 800;
}

.content-section,
.filter-section,
.page-hero,
.breadcrumb,
.detail-hero,
.player-section,
.detail-content {
    width: min(1280px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    padding: 58px 0 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    color: #111827;
}

.section-heading p {
    flex-basis: 100%;
    margin: 4px 0 0 48px;
    color: #64748b;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: #fffbeb;
    box-shadow: inset 0 0 0 1px #fde68a;
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.15);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0f172a;
}

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

.movie-card:hover .movie-poster img {
    transform: scale(1.08);
    opacity: 0.86;
}

.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    background: #f59e0b;
    font-size: 12px;
    font-weight: 800;
}

.play-mark {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.72);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.88);
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(8px);
}

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

.movie-info {
    padding: 16px;
}

.movie-title {
    display: -webkit-box;
    min-height: 52px;
    margin-bottom: 8px;
    overflow: hidden;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: #d97706;
}

.movie-info p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: #64748b;
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 12px;
    color: #64748b;
    font-size: 13px;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 220px 1fr;
}

.movie-card-horizontal .movie-poster {
    height: 100%;
    min-height: 158px;
    aspect-ratio: auto;
}

.movie-card-horizontal .movie-title {
    min-height: auto;
    font-size: 21px;
}

.movie-card-compact .movie-title {
    min-height: auto;
    font-size: 16px;
}

.content-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: start;
}

.horizontal-list {
    display: grid;
    gap: 18px;
}

.rank-panel {
    position: sticky;
    top: 88px;
    border-radius: 24px;
    padding: 24px;
    background: linear-gradient(180deg, #111827, #0f172a);
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.rank-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.rank-title h2 {
    margin: 0;
    font-size: 24px;
}

.rank-panel ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-panel li {
    display: grid;
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.18);
    padding: 11px 0;
}

.rank-panel li span {
    color: #fbbf24;
    font-weight: 900;
}

.rank-panel li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-panel li em {
    color: #94a3b8;
    font-size: 12px;
    font-style: normal;
}

.more-link {
    width: 100%;
    margin-top: 18px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.92);
}

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

.category-tile {
    min-height: 160px;
    border-radius: 22px;
    padding: 20px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(251, 191, 36, 0.32), transparent 38%),
        linear-gradient(135deg, #1e293b, #0f172a);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.2);
}

.category-tile strong {
    display: block;
    margin-bottom: 10px;
    font-size: 22px;
}

.category-tile span {
    color: #cbd5e1;
    font-size: 14px;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
}

.page-main,
.detail-main {
    padding-bottom: 72px;
}

.page-hero {
    min-height: 300px;
    margin-top: 28px;
    border-radius: 30px;
    padding: 50px;
    display: flex;
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 22%, rgba(251, 191, 36, 0.32), transparent 32%),
        linear-gradient(135deg, #0f172a, #1e293b 58%, #111827);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

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

.filter-section {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 14px;
    padding-top: 28px;
}

.advanced-filter {
    grid-template-columns: 1fr 220px 220px;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    align-items: center;
    border-radius: 24px;
    padding: 18px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.category-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 18px;
    background: #0f172a;
}

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

.category-cover span {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.36);
    transform: translate(-50%, -50%);
}

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

.category-overview-card p {
    margin: 0 0 14px;
    color: #64748b;
}

.inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inline-links a {
    border-radius: 999px;
    padding: 5px 10px;
    color: #92400e;
    background: #fffbeb;
    font-size: 13px;
}

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

.rank-card {
    display: grid;
    grid-template-columns: 56px 160px 1fr auto;
    gap: 18px;
    align-items: center;
    border-radius: 22px;
    padding: 14px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    font-size: 20px;
    font-weight: 900;
}

.rank-cover {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    background: #0f172a;
}

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

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.rank-info p {
    margin: 0 0 10px;
    color: #64748b;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    padding: 24px 0 0;
    color: #64748b;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #d97706;
}

.detail-hero {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 34px;
    align-items: center;
    margin-top: 22px;
    border-radius: 30px;
    padding: 32px;
    color: #ffffff;
    background:
        radial-gradient(circle at 72% 20%, rgba(245, 158, 11, 0.3), transparent 30%),
        linear-gradient(135deg, #0f172a, #111827 70%);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.18);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 3 / 4;
    background: #020617;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.24);
}

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

.detail-info h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
}

.detail-one-line {
    max-width: 820px;
    margin: 0 0 22px;
    color: #dbeafe;
    font-size: 19px;
}

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

.detail-tags {
    margin-bottom: 26px;
}

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

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
    aspect-ratio: 16 / 9;
}

.player-shell video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    object-fit: contain;
    z-index: 1;
}

.player-overlay-button {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.62));
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.player-overlay-button span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    box-shadow: 0 18px 38px rgba(249, 115, 22, 0.32);
    font-size: 34px;
    padding-left: 5px;
}

.player-overlay-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    padding-top: 34px;
}

.detail-content article,
.detail-side-rank {
    border-radius: 24px;
    padding: 28px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.detail-content h2,
.detail-side-rank h2 {
    margin: 0 0 14px;
    font-size: 24px;
}

.detail-content p {
    margin: 0 0 24px;
    color: #334155;
    font-size: 17px;
}

.detail-side-rank ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-side-rank li {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}

.detail-side-rank li a {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 700;
}

.detail-side-rank li span {
    color: #64748b;
    font-size: 13px;
}

.site-footer {
    margin-top: 72px;
    color: #cbd5e1;
    background: linear-gradient(180deg, #0f172a, #020617);
}

.footer-inner {
    width: min(1280px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 34px;
}

.footer-grid h2 {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 18px;
}

.footer-grid p {
    margin: 12px 0 0;
    color: #94a3b8;
}

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

.footer-grid li + li {
    margin-top: 8px;
}

.footer-grid a:hover {
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(148, 163, 184, 0.18);
    margin-top: 34px;
    padding-top: 22px;
    color: #64748b;
    text-align: center;
    font-size: 14px;
}

.is-filter-hidden {
    display: none !important;
}

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

    .content-split,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    .site-nav {
        height: auto;
        min-height: 64px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

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

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 0;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-links a {
        border-top: 1px solid rgba(148, 163, 184, 0.16);
        padding: 12px 0;
    }

    .hero {
        min-height: 560px;
        height: 76vh;
    }

    .hero-content {
        bottom: 74px;
    }

    .hero-arrow {
        display: none;
    }

    .home-search,
    .filter-section,
    .advanced-filter,
    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .home-search button {
        min-height: 48px;
    }

    .movie-grid,
    .movie-grid-full,
    .small-card-grid,
    .compact-grid,
    .category-grid,
    .two-columns,
    .category-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .movie-card-horizontal,
    .category-overview-card,
    .rank-card,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .rank-card {
        align-items: start;
    }

    .rank-action {
        width: 100%;
    }

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

    .page-hero,
    .detail-hero {
        padding: 28px;
        border-radius: 24px;
    }
}

@media (max-width: 560px) {
    .brand,
    .footer-brand {
        font-size: 18px;
    }

    .hero {
        min-height: 610px;
    }

    .hero-content {
        left: 18px;
        width: calc(100% - 36px);
    }

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

    .movie-grid,
    .movie-grid-full,
    .small-card-grid,
    .compact-grid,
    .category-grid,
    .two-columns,
    .category-overview-grid {
        grid-template-columns: 1fr;
    }

    .content-section {
        padding-top: 42px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading p {
        margin-left: 0;
    }

    .detail-content article,
    .detail-side-rank {
        padding: 22px;
    }

    .player-overlay-button span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
