:root {
    --orange: #f97316;
    --red: #ef4444;
    --pink: #ec4899;
    --blue: #3b82f6;
    --cyan: #06b6d4;
    --green: #22c55e;
    --yellow: #f59e0b;
    --dark: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #fff7ed;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dark);
    background: #f9fafb;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.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, var(--orange), var(--red), var(--pink));
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 18px;
}

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

.brand-mark {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 12px;
    color: var(--orange);
    background: #ffffff;
    box-shadow: inset 0 0 0 2px rgba(249, 115, 22, 0.14);
}

.brand-name {
    font-size: 21px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.nav-link,
.mobile-link {
    font-weight: 650;
    opacity: 0.95;
    transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-link:hover {
    color: #fef3c7;
    opacity: 1;
}

.header-search {
    display: flex;
    align-items: center;
    width: min(300px, 26vw);
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    color: #ffffff;
    padding: 10px 14px;
    background: transparent;
}

.header-search input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.header-search button {
    border: 0;
    padding: 10px 14px;
    color: var(--orange);
    cursor: pointer;
    font-weight: 800;
    background: #ffffff;
}

.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 10px;
    background: #ffffff;
}

.mobile-nav {
    display: none;
    padding: 8px 16px 16px;
    background: rgba(17, 24, 39, 0.16);
}

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-slider {
    position: relative;
    height: clamp(560px, 68vw, 760px);
    min-height: 560px;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

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

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

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: saturate(1.08);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 25%, rgba(236, 72, 153, 0.38), transparent 32%),
        linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.18)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.74), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 54px;
    height: 100%;
    padding-top: 36px;
}

.hero-copy {
    max-width: 720px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero-copy h1 {
    margin: 18px 0;
    font-size: clamp(44px, 7vw, 84px);
    line-height: 1.03;
    text-shadow: 0 12px 42px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2vw, 22px);
}

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

.hero-tags span,
.tag-row span,
.detail-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: #9a3412;
    background: #ffedd5;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.3);
}

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

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

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

.hero-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: inherit;
}

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

.hero-prev,
.hero-next,
.hero-dot {
    border: 0;
    color: #ffffff;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.18);
    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;
    align-items: center;
    gap: 9px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    opacity: 0.55;
}

.hero-dot.active {
    width: 28px;
    opacity: 1;
    background: #ffffff;
}

.quick-search-section {
    margin-top: -42px;
    position: relative;
    z-index: 8;
}

.quick-search-card,
.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.quick-search-card h2,
.filter-panel h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.quick-search-card p,
.filter-title p,
.section-title-center p,
.ranking-copy p,
.page-hero p {
    margin: 0;
    color: var(--muted);
}

.wide-search {
    display: flex;
    width: min(520px, 100%);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.wide-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 15px 18px;
}

.wide-search button {
    border: 0;
    color: #ffffff;
    padding: 0 22px;
    cursor: pointer;
    font-weight: 800;
    background: linear-gradient(90deg, var(--orange), var(--red));
}

.section-pad {
    padding: 72px 0;
}

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

.section-head h2,
.section-title-center h2,
.ranking-copy h2,
.ranking-columns h2,
.detail-main h1,
.detail-main h2,
.detail-side h2,
.search-result-head h2 {
    margin: 0;
    line-height: 1.2;
}

.section-head h2,
.section-title-center h2,
.ranking-copy h2,
.ranking-columns h2 {
    font-size: clamp(28px, 4vw, 42px);
}

.section-title-center {
    max-width: 720px;
    margin-bottom: 34px;
    text-align: center;
}

.section-kicker.blue,
.blue-link {
    color: var(--blue);
}

.more-link {
    color: var(--orange);
    font-weight: 800;
}

.soft-blue {
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
}

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

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.14);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111827;
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    padding: 4px 9px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    background: rgba(249, 115, 22, 0.92);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.movie-card-body {
    padding: 14px;
}

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

.movie-card-meta a {
    color: var(--orange);
}

.movie-card h3 {
    margin: 8px 0 7px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card h3 a {
    display: -webkit-box;
    min-height: 46px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

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

.movie-card-compact h3 a {
    min-height: 24px;
    -webkit-line-clamp: 1;
}

.tag-row span {
    min-height: 24px;
    padding: 2px 8px;
    font-size: 12px;
}

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

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

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.18);
}

.category-card span,
.category-overview-title span {
    display: inline-flex;
    margin-bottom: 10px;
    font-weight: 800;
    opacity: 0.9;
}

.category-card strong,
.category-overview-title strong {
    display: block;
    font-size: 27px;
    line-height: 1.2;
}

.category-card em {
    display: block;
    margin-top: 22px;
    font-style: normal;
    opacity: 0.86;
}

.category-card::after,
.category-overview-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.category-orange {
    background: linear-gradient(135deg, #f97316, #ef4444);
}

.category-red {
    background: linear-gradient(135deg, #ef4444, #fb7185);
}

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

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

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

.category-cyan {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

.category-green {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
}

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

.ranking-section {
    background: #ffffff;
}

.ranking-layout,
.ranking-columns {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 38px;
    align-items: start;
}

.ranking-copy {
    position: sticky;
    top: 90px;
    padding: 34px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--dark), #4c1d95);
    box-shadow: var(--shadow);
}

.ranking-copy .section-kicker,
.ranking-copy p {
    color: rgba(255, 255, 255, 0.82);
}

.ranking-copy h2 {
    margin: 10px 0 12px;
}

.ranking-copy .btn {
    margin-top: 26px;
}

.ranking-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.ranking-list li {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.9);
}

.rank-number {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--pink));
}

.ranking-list a {
    font-weight: 800;
}

.ranking-list li > span:last-child {
    color: var(--muted);
    font-size: 13px;
}

.light-list {
    padding: 10px 22px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.page-hero {
    color: #ffffff;
    background:
        radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.22), transparent 30%),
        linear-gradient(135deg, var(--orange), var(--red), var(--pink));
}

.compact-hero {
    padding: 82px 0;
}

.page-hero .section-kicker,
.page-hero p {
    color: rgba(255, 255, 255, 0.86);
}

.page-hero h1 {
    max-width: 850px;
    margin: 14px 0 12px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}

.category-page-hero {
    padding: 74px 0;
}

.filter-panel {
    margin-bottom: 28px;
}

.filter-controls {
    display: flex;
    gap: 12px;
}

.filter-controls input,
.filter-controls select {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: 0;
    padding: 0 14px;
    background: #ffffff;
}

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

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

.category-overview-card {
    min-height: auto;
}

.category-overview-card p {
    position: relative;
    z-index: 1;
    margin: 14px 0 22px;
    color: rgba(255, 255, 255, 0.88);
}

.category-overview-title,
.category-enter,
.mini-grid {
    position: relative;
    z-index: 1;
}

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

.mini-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
}

.mini-card img {
    width: 42px;
    height: 58px;
    border-radius: 9px;
    object-fit: cover;
}

.mini-card span {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    font-weight: 800;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.category-enter {
    display: inline-flex;
    margin-top: 20px;
    font-weight: 900;
}

.detail-hero {
    padding: 36px 0 58px;
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 18%, rgba(236, 72, 153, 0.32), transparent 32%),
        linear-gradient(135deg, #111827, #3b0764 48%, #7c2d12);
}

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.36);
}

.movie-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-cover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #000000;
}

.player-cover.is-hidden {
    display: none;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.58;
    filter: blur(1px) saturate(1.05);
}

.play-ring {
    position: relative;
    z-index: 2;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 34px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    box-shadow: 0 18px 48px rgba(236, 72, 153, 0.45);
}

.play-ring span {
    margin-left: 5px;
}

.detail-info-card {
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

.detail-info-card img {
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 18px;
    object-fit: cover;
}

.detail-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.detail-meta-list span {
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.16);
}

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

.detail-main,
.detail-side {
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
}

.detail-main {
    padding: clamp(24px, 4vw, 42px);
}

.detail-main h1 {
    font-size: clamp(32px, 5vw, 52px);
}

.detail-main h2 {
    margin-top: 34px;
    font-size: 26px;
}

.one-line {
    margin: 18px 0 18px;
    color: #374151;
    font-size: 20px;
    font-weight: 700;
}

.detail-main p:not(.one-line) {
    color: #4b5563;
    font-size: 17px;
}

.detail-tags {
    margin: 20px 0;
}

.detail-side {
    position: sticky;
    top: 92px;
    padding: 24px;
}

.detail-side dl {
    margin: 18px 0 24px;
}

.detail-side dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.detail-side dd {
    margin: 3px 0 14px;
    font-weight: 800;
}

.full-btn {
    width: 100%;
}

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

.search-result-head {
    margin-bottom: 28px;
}

.search-result-head p {
    color: var(--muted);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 40px;
    border-radius: 22px;
    color: var(--muted);
    text-align: center;
    background: #ffffff;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 34px;
    padding: 50px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 22px;
}

.site-footer h3 {
    margin: 0 0 12px;
    color: #ffffff;
}

.site-footer p {
    color: #d1d5db;
}

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

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

.site-footer a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #9ca3af;
    text-align: center;
}

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

    .desktop-nav {
        gap: 14px;
    }

    .header-search {
        display: none;
    }
}

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

    .menu-button {
        display: block;
    }

    .hero-slider {
        height: auto;
        min-height: 720px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 24px;
        padding: 80px 0 110px;
    }

    .hero-poster {
        width: min(240px, 70vw);
        transform: rotate(0);
    }

    .quick-search-card,
    .filter-panel,
    .section-head,
    .detail-layout,
    .detail-content-grid,
    .ranking-layout,
    .ranking-columns,
    .footer-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: stretch;
    }

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

    .detail-info-card,
    .detail-side,
    .ranking-copy {
        position: static;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 22px, 1180px);
    }

    .brand-name {
        font-size: 18px;
    }

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

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

    .hero-controls {
        bottom: 20px;
    }

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

    .movie-card-body {
        padding: 12px;
    }

    .movie-card h3 {
        font-size: 15px;
    }

    .movie-card p {
        font-size: 12px;
    }

    .category-grid,
    .categories-overview-grid,
    .mini-grid,
    .filter-controls {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .category-card,
    .category-overview-card,
    .quick-search-card,
    .filter-panel,
    .detail-main,
    .detail-side {
        border-radius: 20px;
        padding: 20px;
    }

    .wide-search {
        flex-direction: column;
        border-radius: 18px;
    }

    .wide-search button {
        min-height: 46px;
    }

    .ranking-list li {
        grid-template-columns: 46px 1fr;
    }

    .ranking-list li > span:last-child {
        grid-column: 2;
    }

    .play-ring {
        width: 66px;
        height: 66px;
        font-size: 28px;
    }
}
