:root {
    --orange: #fb923c;
    --orange-dark: #ea580c;
    --pink: #ec4899;
    --pink-dark: #db2777;
    --purple: #7c3aed;
    --cyan: #06b6d4;
    --blue: #3b82f6;
    --green: #10b981;
    --yellow: #f59e0b;
    --slate: #0f172a;
    --text: #111827;
    --muted: #6b7280;
    --line: rgba(251, 146, 60, 0.22);
    --bg: #fff7ed;
    --card: #ffffff;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    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(--text);
    background: linear-gradient(180deg, #fff7ed 0%, #fdf2f8 42%, #ffffff 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 247, 237, 0.86);
    border-bottom: 1px solid rgba(251, 146, 60, 0.28);
    backdrop-filter: blur(18px);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 12px 25px rgba(236, 72, 153, 0.28);
}

.logo-text {
    font-size: 21px;
    background: linear-gradient(90deg, var(--orange-dark), var(--pink-dark));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    padding: 10px 15px;
    border-radius: 14px;
    color: #4b5563;
    font-weight: 700;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: var(--orange-dark);
    background: rgba(255, 255, 255, 0.62);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.25);
}

.mobile-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.75);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-button span {
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--text);
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--soft-shadow);
}

.mobile-nav.open {
    display: grid;
    gap: 8px;
}

.hero {
    position: relative;
    height: 640px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--orange), var(--pink) 52%, var(--purple));
}

.hero-backdrop {
    position: absolute;
    inset: -30px;
    background-size: cover;
    background-position: center;
    filter: blur(24px) saturate(1.1);
    opacity: 0.35;
    transform: scale(1.08);
    transition: background-image 0.55s ease, opacity 0.35s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.58), rgba(236, 72, 153, 0.22));
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.7) 0 2px, transparent 3px), radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.35) 0 2px, transparent 3px);
    background-size: 56px 56px, 82px 82px;
}

.hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    padding-top: 78px;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    inset: 78px 0 0 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 360px;
    align-items: center;
    gap: 46px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

.hero-copy h1 {
    margin: 18px 0 20px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 950;
    text-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.hero-copy p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.7;
}

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

.hero-tags span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

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

.primary-button,
.secondary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.primary-button {
    color: var(--orange-dark);
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.secondary-button {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
    transform: translateY(-2px) scale(1.01);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 75px rgba(15, 23, 42, 0.35);
    transform: rotate(2deg);
}

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

.hero-poster span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    font-weight: 900;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 36px;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 36px;
    height: 8px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dot.active {
    background: #ffffff;
}

.quick-search {
    position: relative;
    z-index: 3;
    width: min(960px, calc(100% - 32px));
    margin: -34px auto 0;
}

.quick-search-form {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.quick-search-form span {
    font-weight: 900;
    color: var(--orange-dark);
}

.quick-search-form input,
.filter-controls input,
.filter-controls select {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(251, 146, 60, 0.24);
    border-radius: 16px;
    padding: 0 16px;
    outline: none;
    background: #ffffff;
    color: var(--text);
}

.quick-search-form input:focus,
.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(251, 146, 60, 0.13);
}

.quick-search-form button {
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    padding: 0 22px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    font-weight: 900;
    cursor: pointer;
}

.content-section,
.category-preview {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 78px 0;
}

.content-section.top-tight {
    padding-top: 36px;
}

.no-padding {
    padding-left: 0;
    padding-right: 0;
}

.soft-section {
    background: linear-gradient(90deg, rgba(253, 242, 248, 0.92), rgba(255, 247, 237, 0.92));
}

.section-heading,
.category-preview-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 26px;
}

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

.section-icon {
    width: 52px;
    height: 52px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 14px 30px rgba(236, 72, 153, 0.23);
}

.section-heading h2,
.category-preview-title h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
}

.section-heading p,
.category-preview-title p {
    margin: 5px 0 0;
    color: var(--muted);
}

.section-more,
.category-preview-title a {
    color: var(--orange-dark);
    font-weight: 900;
}

.featured-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    padding: 18px;
    margin-bottom: 26px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.featured-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 22px;
}

.featured-card div {
    padding: 16px 8px 16px 0;
}

.featured-card span,
.category-chip {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--orange-dark);
    background: #fff7ed;
    font-weight: 900;
}

.featured-card h3 {
    margin: 18px 0 12px;
    font-size: clamp(28px, 4vw, 42px);
}

.featured-card p {
    margin: 0 0 18px;
    color: #374151;
    line-height: 1.8;
}

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

.compact-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.four-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.preview-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.movie-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

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

.card-cover {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #fed7aa;
}

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

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

.cover-duration,
.rank-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.78);
    font-size: 12px;
    font-weight: 900;
    backdrop-filter: blur(8px);
}

.rank-badge {
    right: auto;
    left: 12px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.card-body {
    padding: 17px;
}

.card-meta,
.card-stats,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--muted);
    font-size: 13px;
}

.card-meta span:first-child {
    color: var(--orange-dark);
    font-weight: 900;
}

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

.card-body p {
    margin: 0;
    color: #4b5563;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.tag-row {
    margin-top: 12px;
}

.tag-row span {
    padding: 5px 8px;
    border-radius: 8px;
    background: #fff7ed;
    color: var(--orange-dark);
    font-size: 12px;
    font-weight: 800;
}

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

.horizontal-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    min-height: 132px;
}

.horizontal-card .small-cover {
    aspect-ratio: auto;
    height: 100%;
}

.horizontal-card .card-body h3 {
    font-size: 18px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    min-height: 190px;
    padding: 26px;
    border-radius: 28px;
    color: #ffffff;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-card::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -36px;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.category-count,
.category-arrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    font-weight: 900;
}

.category-count {
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}

.category-card h3 {
    position: relative;
    z-index: 1;
    margin: 26px 0 10px;
    font-size: 26px;
}

.category-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.7;
}

.gradient-warm,
.gradient-orange {
    background: linear-gradient(135deg, #fb923c, #ec4899);
}

.gradient-rose,
.gradient-pink {
    background: linear-gradient(135deg, #f43f5e, #ec4899);
}

.gradient-violet,
.gradient-indigo {
    background: linear-gradient(135deg, #8b5cf6, #4f46e5);
}

.gradient-yellow,
.gradient-amber {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.gradient-cyan,
.gradient-blue {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
}

.gradient-green {
    background: linear-gradient(135deg, #10b981, #14b8a6);
}

.gradient-slate {
    background: linear-gradient(135deg, #334155, #0f172a);
}

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

.ranking-row {
    display: grid;
    grid-template-columns: 72px 96px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.ranking-number {
    color: var(--orange-dark);
    font-size: 24px;
    font-weight: 950;
}

.ranking-row img {
    width: 96px;
    height: 62px;
    border-radius: 14px;
    object-fit: cover;
}

.ranking-row h3 {
    margin: 0 0 6px;
}

.ranking-row p {
    margin: 0;
    color: var(--muted);
}

.page-main,
.detail-main {
    padding-top: 92px;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 28px;
    border-radius: 32px;
    padding: 58px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
    box-shadow: var(--shadow);
}

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

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

.category-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.filter-panel {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 22px;
    padding: 22px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.filter-panel h2 {
    margin: 0 0 8px;
}

.filter-panel p {
    margin: 0;
    color: var(--muted);
}

.filter-controls {
    display: grid;
    grid-template-columns: 1.2fr 0.75fr 0.75fr auto;
    gap: 14px;
    margin-top: 18px;
    align-items: end;
}

.filter-controls label {
    display: grid;
    gap: 8px;
    color: #374151;
    font-weight: 800;
}

.ghost-button {
    border: 1px solid rgba(251, 146, 60, 0.28);
    color: var(--orange-dark);
    background: #fff7ed;
}

.filter-result {
    margin-top: 14px;
    color: var(--muted);
    font-weight: 800;
}

.movie-card.is-hidden {
    display: none;
}

.back-link {
    display: inline-flex;
    margin-left: calc((100% - min(1180px, calc(100% - 32px))) / 2);
    margin-bottom: 18px;
    color: var(--orange-dark);
    font-weight: 900;
}

.detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
}

.player-card,
.detail-card,
.fact-panel,
.related-panel,
.poster-panel {
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
}

.player-card {
    margin-bottom: 24px;
}

.static-player {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #020617;
    overflow: hidden;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #020617;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 12px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.34), rgba(2, 6, 23, 0.78));
    cursor: pointer;
    font-weight: 950;
    font-size: 20px;
}

.play-icon {
    width: 76px;
    height: 76px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 18px 38px rgba(236, 72, 153, 0.34);
}

.static-player.is-playing .player-start {
    display: none;
}

.player-status {
    position: absolute;
    left: 16px;
    bottom: 14px;
    margin: 0;
    padding: 7px 10px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(8px);
    font-size: 13px;
}

.detail-card {
    padding: 28px;
}

.detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
}

.detail-title-row h1 {
    margin: 12px 0 0;
    font-size: clamp(32px, 4vw, 48px);
}

.detail-card .eyebrow {
    color: var(--orange-dark);
}

.detail-meta {
    margin: 18px 0;
}

.detail-meta span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #fff7ed;
    color: var(--orange-dark);
    font-weight: 800;
}

.one-line-box {
    margin: 18px 0 26px;
    padding: 18px;
    border-left: 5px solid var(--orange);
    border-radius: 18px;
    color: #374151;
    background: #fff7ed;
    font-weight: 800;
    line-height: 1.8;
}

.detail-card h2,
.fact-panel h2,
.related-panel h2 {
    margin: 28px 0 12px;
    font-size: 24px;
}

.detail-card p {
    margin: 0;
    color: #374151;
    line-height: 2;
}

.detail-tags span {
    padding: 9px 13px;
    border-radius: 12px;
    background: linear-gradient(90deg, #fff7ed, #fdf2f8);
    color: var(--orange-dark);
    font-weight: 900;
}

.detail-sidebar {
    display: grid;
    gap: 22px;
    align-content: start;
}

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

.fact-panel,
.related-panel {
    padding: 22px;
}

.fact-panel h2,
.related-panel h2 {
    margin-top: 0;
}

.fact-row {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.fact-row span {
    color: var(--muted);
}

.fact-row strong {
    color: #111827;
    line-height: 1.6;
}

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

.related-list .horizontal-card {
    grid-template-columns: 112px 1fr;
    min-height: 92px;
    box-shadow: none;
    border: 1px solid #f3f4f6;
}

.related-list .card-body {
    padding: 12px;
}

.related-list .card-body h3 {
    font-size: 15px;
}

.related-list .card-body p,
.related-list .card-stats,
.related-list .cover-duration {
    display: none;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 52px 0;
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
    gap: 30px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
    color: #9ca3af;
    line-height: 1.8;
}

.footer-logo {
    color: #ffffff;
    margin-bottom: 14px;
}

.footer-column h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-column a:hover {
    color: #fb923c;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 20px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #6b7280;
}

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

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

    .hero {
        height: 720px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        gap: 24px;
        align-content: center;
    }

    .hero-poster {
        display: none;
    }

    .horizontal-grid,
    .detail-layout,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .category-hero,
    .section-heading,
    .category-preview-title,
    .detail-title-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 680px) {
    .header-inner {
        height: 64px;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero {
        height: 680px;
    }

    .hero-inner {
        padding-top: 72px;
    }

    .hero-slide {
        top: 72px;
    }

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

    .quick-search-form,
    .featured-card,
    .horizontal-card,
    .ranking-row,
    .filter-controls {
        grid-template-columns: 1fr;
    }

    .featured-card img {
        height: 220px;
    }

    .page-hero {
        padding: 34px 24px;
        border-radius: 24px;
    }

    .content-section,
    .category-preview {
        padding: 52px 0;
    }

    .ranking-row img {
        width: 100%;
        height: 160px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
