:root {
    --bg: #f8fafc;
    --paper: #ffffff;
    --ink: #111827;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.10);
    --green: #10b981;
    --teal: #14b8a6;
    --cyan: #06b6d4;
    --amber: #f59e0b;
    --rose: #f43f5e;
    --shadow: 0 20px 55px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 45%, #f8fafc 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", sans-serif;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(5, 150, 105, 0.96), rgba(13, 148, 136, 0.96), rgba(8, 145, 178, 0.96));
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(14px);
}

.nav-shell {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #0f766e;
    background: #ffffff;
    box-shadow: inset 0 0 0 3px rgba(16, 185, 129, 0.18);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 650;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #fde68a;
    transform: translateY(-1px);
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-search input,
.large-search input,
.search-page-form input,
.catalog-search,
.catalog-filter {
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #0f172a;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.top-search input {
    width: 260px;
    padding: 11px 16px;
}

.top-search button,
.large-search button,
.search-page-form button {
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    color: #064e3b;
    font-weight: 750;
    background: #fef3c7;
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease;
}

.top-search button:hover,
.large-search button:hover,
.search-page-form button:hover {
    transform: translateY(-1px) scale(1.02);
    background: #fde68a;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.hero-carousel {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    color: #ffffff;
    background: #020617;
}

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) brightness(0.58);
    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(20, 184, 166, 0.42), transparent 36%),
        linear-gradient(90deg, rgba(2, 6, 23, 0.94) 0%, rgba(2, 6, 23, 0.70) 42%, rgba(2, 6, 23, 0.20) 100%),
        linear-gradient(0deg, rgba(2, 6, 23, 0.86) 0%, transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    min-height: 640px;
    margin: 0 auto;
    padding: 86px 24px 92px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 60px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    color: #a7f3d0;
    background: rgba(15, 23, 42, 0.34);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 700;
}

.hero-text h1 {
    margin: 0 0 12px;
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-shadow: 0 16px 50px rgba(0, 0, 0, 0.46);
}

.hero-text h2 {
    margin: 0 0 16px;
    color: #fef3c7;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 850;
}

.hero-text p {
    max-width: 780px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
    line-height: 1.75;
}

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

.hero-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 750;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

.hero-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-actions,
.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn,
.text-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn {
    min-height: 48px;
    padding: 0 24px;
}

.btn.primary {
    color: #064e3b;
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    box-shadow: 0 14px 32px rgba(245, 158, 11, 0.32);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.btn:hover,
.text-link:hover,
.section-more:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

.hero-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 30px;
    z-index: 4;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-prev,
.hero-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
    width: 28px;
    background: #fbbf24;
}

.home-search-panel,
.page-section,
.inner-page {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.home-search-panel {
    margin-top: -42px;
    position: relative;
    z-index: 8;
    padding-top: 26px;
    padding-bottom: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.home-search-panel h2 {
    margin: 0 0 16px;
    color: #0f172a;
    font-size: 24px;
}

.large-search,
.search-page-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.large-search input,
.search-page-form input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f8fafc;
}

.large-search button,
.search-page-form button {
    padding: 0 28px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--green), var(--teal));
}

.quick-links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: #0f766e;
    background: #ecfdf5;
    font-weight: 700;
}

.page-section {
    padding-top: 64px;
    padding-bottom: 10px;
}

.highlight-section {
    max-width: none;
    margin-top: 46px;
    padding-top: 58px;
    padding-bottom: 58px;
    background: linear-gradient(135deg, #ecfeff, #eff6ff);
}

.highlight-section > * {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

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

.section-head h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #059669, #0891b2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.section-more,
.text-link {
    color: #059669;
    font-weight: 850;
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: var(--paper);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    background: #0f172a;
}

.poster-wrap img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.poster-year,
.poster-play {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.poster-year {
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.62);
    font-size: 12px;
    font-weight: 750;
}

.poster-play {
    left: 50%;
    top: 50%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(16, 185, 129, 0.84);
    transform: translate(-50%, -50%) scale(0.72);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

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

.card-body {
    padding: 16px;
}

.card-body h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 850;
}

.card-body h3 a:hover {
    color: #059669;
}

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

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

.meta-line span {
    padding: 4px 8px;
    border-radius: 8px;
    background: #f1f5f9;
}

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

.category-tile {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #ecfeff);
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-overview-card:hover,
.podium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-tile span {
    color: #0f766e;
    font-size: 22px;
    font-weight: 900;
}

.category-tile strong {
    margin: 12px 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.tile-posters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.tile-posters img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
}

.rank-section {
    padding-bottom: 70px;
}

.rank-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.rank-item,
.rank-row {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.rank-link,
.rank-row {
    display: grid;
    grid-template-columns: 54px 64px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
}

.rank-number {
    color: #f97316;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
}

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

.rank-copy {
    display: grid;
    gap: 5px;
}

.rank-copy strong {
    font-size: 16px;
}

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

.inner-page {
    padding-top: 34px;
    padding-bottom: 78px;
}

.page-hero {
    overflow: hidden;
    margin-bottom: 30px;
    padding: 48px;
    border-radius: 32px;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(251, 191, 36, 0.26), transparent 26%),
        linear-gradient(135deg, #059669, #0891b2 52%, #0f172a);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 860px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.75;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr repeat(3, 180px);
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--soft-shadow);
}

.catalog-search,
.catalog-filter {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.empty-state {
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    color: var(--muted);
    background: #ffffff;
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 22px;
    padding: 20px;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-cover-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.category-cover-stack img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 12px;
}

.category-cover-stack img:first-child {
    grid-row: span 2;
}

.category-overview-card h2 {
    margin: 0 0 10px;
    font-size: 26px;
}

.category-overview-card p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.7;
}

.podium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.podium-card {
    overflow: hidden;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.podium-card span,
.podium-card h2,
.podium-card p {
    margin-left: 18px;
    margin-right: 18px;
}

.podium-card span {
    display: inline-flex;
    margin-top: 16px;
    color: #f97316;
    font-weight: 900;
}

.podium-card h2 {
    margin-top: 8px;
    margin-bottom: 8px;
    font-size: 22px;
}

.podium-card p {
    margin-top: 0;
    margin-bottom: 18px;
    color: var(--muted);
    line-height: 1.65;
}

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

.rank-row {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.rank-go {
    padding: 8px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--green), var(--teal));
    font-weight: 850;
}

.search-page-form {
    margin-top: 24px;
    max-width: 760px;
}

.search-results-wrap {
    margin-top: 32px;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    color: #059669;
    font-weight: 700;
}

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

.player-card,
.detail-content,
.side-box,
.side-poster,
.related-section {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

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

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.video-shell video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 5;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    gap: 10px;
    min-width: 150px;
    min-height: 150px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.94), rgba(20, 184, 166, 0.82));
    box-shadow: 0 24px 65px rgba(16, 185, 129, 0.38);
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.video-play-button span {
    font-size: 42px;
    line-height: 1;
}

.video-play-button strong {
    font-size: 18px;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.video-play-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

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

.detail-content h1 {
    margin: 0 0 12px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.lead-text {
    color: #0f766e;
    font-size: 19px;
    line-height: 1.75;
    font-weight: 700;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #334155;
    background: #f1f5f9;
    font-weight: 700;
}

.detail-content h2,
.side-box h2 {
    margin: 28px 0 12px;
    font-size: 24px;
    font-weight: 850;
}

.detail-content p {
    color: #334155;
    font-size: 17px;
    line-height: 1.9;
}

.wide-tags span {
    margin-bottom: 4px;
}

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

.side-poster {
    overflow: hidden;
}

.side-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.side-box {
    padding: 22px;
}

.side-box h2 {
    margin-top: 0;
}

.side-box dl {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    margin: 0;
}

.side-box dt {
    color: #64748b;
}

.side-box dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.related-section {
    margin-top: 34px;
    padding: 28px;
}

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

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 44px 24px;
}

.footer-inner h2 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 24px;
}

.footer-inner p {
    max-width: 780px;
    margin: 0 0 18px;
    line-height: 1.7;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 18px 0;
}

.footer-links a:hover {
    color: #67e8f9;
}

.copyright {
    color: #94a3b8;
    font-size: 13px;
}

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

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

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

    .detail-side {
        position: static;
        grid-template-columns: 220px 1fr;
    }
}

@media (max-width: 820px) {
    .nav-shell {
        flex-wrap: wrap;
        min-height: 66px;
        padding: 12px 18px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0;
    }

    .main-nav.open {
        display: flex;
    }

    .hero-content {
        min-height: 600px;
        grid-template-columns: 1fr;
        gap: 28px;
        padding-top: 70px;
    }

    .hero-poster {
        display: none;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .rank-list,
    .category-overview-grid,
    .podium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .category-overview-card,
    .detail-side {
        grid-template-columns: 1fr;
    }
}

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

    .hero-carousel,
    .hero-content {
        min-height: 560px;
    }

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

    .home-search-panel,
    .page-section,
    .inner-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .large-search,
    .search-page-form {
        grid-template-columns: 1fr;
    }

    .movie-grid,
    .compact-grid,
    .category-grid,
    .rank-list,
    .category-overview-grid,
    .podium-grid {
        grid-template-columns: 1fr;
    }

    .rank-link,
    .rank-row {
        grid-template-columns: 46px 58px 1fr;
    }

    .rank-go {
        display: none;
    }

    .page-hero {
        padding: 30px;
    }

    .video-play-button {
        min-width: 116px;
        min-height: 116px;
    }
}
