:root {
    --bg: #f8fafc;
    --paper: #ffffff;
    --muted: #64748b;
    --text: #0f172a;
    --emerald: #059669;
    --emerald-dark: #047857;
    --teal: #0d9488;
    --sky: #0284c7;
    --rose: #e11d48;
    --amber: #d97706;
    --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
    --soft-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 45%, #ecfdf5 100%);
    line-height: 1.65;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.06);
}

.nav-shell {
    max-width: 1280px;
    height: 64px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 190px;
}

.brand-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #0d9488);
    box-shadow: 0 10px 24px rgba(5, 150, 105, 0.28);
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 20px;
    background: linear-gradient(90deg, #059669, #0d9488);
    -webkit-background-clip: text;
    color: transparent;
}

.brand-text small {
    color: var(--muted);
    font-size: 12px;
}

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

.nav-link {
    color: #334155;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--emerald);
}

.nav-search {
    position: relative;
    width: 260px;
}

.nav-search input {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 999px;
    padding: 10px 44px 10px 18px;
    background: #f1f5f9;
    color: #0f172a;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus {
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.nav-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    color: #64748b;
    background: transparent;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    border: 0;
    border-radius: 12px;
    padding: 8px 10px;
    background: #f1f5f9;
    color: #334155;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 14px 20px 20px;
}

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

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

.mobile-search {
    display: flex;
    gap: 8px;
}

.mobile-search input {
    flex: 1;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: #f1f5f9;
}

.mobile-search button {
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: var(--emerald);
    padding: 0 16px;
}

main {
    min-height: 68vh;
}

.hero-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    margin-top: 64px;
    color: #ffffff;
}

.hero-bg,
.hero-bg img,
.hero-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    object-fit: cover;
    transform: scale(1.04);
}

.hero-mask {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.56) 45%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-content {
    position: relative;
    max-width: 1280px;
    min-height: 600px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 420px;
    align-items: center;
    gap: 48px;
}

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

.hero-badges,
.hero-tags,
.tag-row,
.movie-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.hero-badges span,
.hero-tags span {
    display: inline-flex;
    border-radius: 999px;
    padding: 5px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    font-size: 14px;
}

.hero-badges span:first-child {
    background: var(--emerald);
}

.hero-copy h1 {
    margin: 18px 0 10px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.04em;
}

.hero-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.15;
}

.hero-copy p {
    max-width: 650px;
    margin: 0 0 24px;
    color: #e2e8f0;
    font-size: 18px;
}

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

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

.btn-primary {
    color: #ffffff;
    background: var(--emerald);
    box-shadow: 0 12px 30px rgba(5, 150, 105, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--emerald-dark);
}

.btn-ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-side {
    display: grid;
    gap: 18px;
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    aspect-ratio: 3 / 4;
}

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

.hero-poster span {
    position: absolute;
    top: 16px;
    right: 16px;
    border-radius: 999px;
    padding: 5px 12px;
    background: rgba(5, 150, 105, 0.92);
    font-weight: 800;
}

.hero-mini-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hero-mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 16px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-mini-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.25);
}

.hero-mini-card img {
    width: 46px;
    height: 58px;
    border-radius: 10px;
    object-fit: cover;
}

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

.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px;
}

.content-section {
    margin-bottom: 64px;
}

.warm-section {
    border-radius: 28px;
    padding: 30px;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

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

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

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

.section-more {
    color: var(--emerald);
    font-weight: 800;
    white-space: nowrap;
    transition: letter-spacing 0.2s ease;
}

.section-more:hover {
    letter-spacing: 0.04em;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    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);
}

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

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

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

.movie-score {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 999px;
    padding: 4px 10px;
    color: #ffffff;
    background: rgba(225, 29, 72, 0.92);
    font-size: 13px;
    font-weight: 800;
}

.movie-play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    font-size: 30px;
    background: rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-play {
    opacity: 1;
}

.movie-info {
    padding: 18px;
}

.movie-meta-row {
    color: var(--muted);
    font-size: 13px;
}

.movie-meta-row span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #cbd5e1;
}

.movie-info h3 {
    margin: 8px 0 8px;
    font-size: 18px;
    line-height: 1.35;
}

.movie-info h3 a:hover {
    color: var(--emerald);
}

.movie-info p {
    min-height: 48px;
    margin: 0 0 14px;
    color: #475569;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-row span,
.tag-row a {
    border-radius: 999px;
    padding: 4px 10px;
    color: #047857;
    background: #d1fae5;
    font-size: 12px;
    font-weight: 700;
}

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

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 24px;
    padding: 22px;
    color: #ffffff;
    box-shadow: var(--soft-shadow);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile img,
.tile-mask {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.category-tile img {
    object-fit: cover;
    transition: transform 0.35s ease;
}

.category-tile:hover img {
    transform: scale(1.08);
}

.tile-mask {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.82));
}

.category-tile strong,
.category-tile small {
    position: relative;
}

.category-tile strong {
    font-size: 24px;
}

.category-tile small {
    margin-top: 8px;
    color: #e2e8f0;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 38px 56px 1fr 52px;
    align-items: center;
    gap: 14px;
    border-radius: 18px;
    padding: 12px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease;
}

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

.rank-row span:first-child {
    color: var(--rose);
    font-size: 22px;
    font-weight: 900;
}

.rank-row img {
    width: 56px;
    height: 72px;
    border-radius: 12px;
    object-fit: cover;
}

.rank-row strong {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.rank-row em {
    color: var(--emerald);
    font-style: normal;
    font-weight: 900;
}

.page-hero {
    margin-top: 64px;
    color: #ffffff;
    background: linear-gradient(135deg, #059669, #0284c7);
}

.page-hero > div {
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 24px;
}

.compact-hero > div {
    padding-top: 58px;
    padding-bottom: 58px;
}

.page-hero span {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}

.page-hero h1 {
    margin: 10px 0;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
}

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

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

.category-overview-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    border-radius: 24px;
    padding: 16px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.overview-img {
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
}

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

.category-overview-card h2 {
    margin: 4px 0 8px;
}

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

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

.overview-links a {
    border-radius: 999px;
    padding: 5px 10px;
    background: #ecfdf5;
    color: var(--emerald);
    font-size: 13px;
    font-weight: 700;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 14px;
    margin-bottom: 28px;
    border-radius: 22px;
    padding: 16px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.filter-input,
.sort-select {
    width: 100%;
    border: 0;
    outline: 0;
    border-radius: 999px;
    background: #f1f5f9;
    padding: 12px 16px;
}

.filter-input:focus,
.sort-select:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.20);
}

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

.ranking-card {
    display: grid;
    grid-template-columns: 58px 124px minmax(0, 1fr) 120px;
    gap: 20px;
    align-items: center;
    border-radius: 24px;
    padding: 18px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.ranking-num {
    color: var(--rose);
    font-size: 32px;
    font-weight: 900;
    text-align: center;
}

.ranking-cover {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 3 / 4;
}

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

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

.ranking-info p {
    margin: 0 0 12px;
    color: #475569;
}

.ranking-score {
    text-align: right;
}

.ranking-score strong {
    display: block;
    color: var(--emerald);
    font-size: 34px;
    line-height: 1;
}

.ranking-score span {
    color: var(--muted);
    font-size: 13px;
}

.search-hero {
    background: linear-gradient(135deg, #0284c7, #2563eb);
}

.search-page-form {
    display: flex;
    max-width: 720px;
    margin-top: 28px;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

.search-page-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 18px 22px;
    color: #0f172a;
}

.search-page-form button {
    border: 0;
    padding: 0 26px;
    color: #ffffff;
    background: var(--sky);
    font-weight: 800;
    cursor: pointer;
}

.search-result-panel {
    border-radius: 28px;
    padding: 26px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.hot-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.hot-keywords a {
    border-radius: 999px;
    padding: 8px 14px;
    color: #ffffff;
    background: linear-gradient(90deg, #0284c7, #2563eb);
    font-weight: 700;
}

.detail-shell {
    max-width: 1280px;
    margin: 64px auto 0;
    padding: 28px 24px 64px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: var(--emerald);
}

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

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
    aspect-ratio: 16 / 9;
    box-shadow: 0 30px 70px rgba(2, 6, 23, 0.22);
}

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

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: opacity 0.22s ease, background 0.22s ease;
}

.player-start span {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    padding-left: 6px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 34px;
    background: rgba(5, 150, 105, 0.92);
    box-shadow: 0 18px 40px rgba(5, 150, 105, 0.35);
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-start:hover span {
    transform: scale(1.08);
    background: var(--emerald-dark);
}

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

.detail-card,
.poster-card,
.side-list {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

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

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

.detail-title-row h1 {
    margin: 0 0 10px;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.16;
}

.detail-score {
    min-width: 80px;
    text-align: center;
    border-radius: 18px;
    padding: 12px;
    color: #ffffff;
    background: linear-gradient(135deg, #10b981, #0d9488);
}

.detail-score strong {
    display: block;
    font-size: 30px;
    line-height: 1;
}

.detail-score span {
    font-size: 12px;
}

.lead-text {
    margin: 0 0 18px;
    color: #334155;
    font-size: 18px;
}

.detail-card h2 {
    margin: 28px 0 10px;
    font-size: 24px;
}

.detail-card p {
    color: #334155;
    margin: 0;
}

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

.poster-card {
    overflow: hidden;
    padding-bottom: 20px;
}

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

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

.poster-card h2 {
    margin-top: 18px;
    margin-bottom: 4px;
    font-size: 22px;
}

.poster-card p {
    margin-top: 0;
    color: var(--muted);
}

.full {
    width: calc(100% - 36px);
    margin: 16px 18px 0;
}

.side-list {
    margin-top: 20px;
    padding: 18px;
}

.side-list h2 {
    margin: 0 0 14px;
}

.side-list a {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #e2e8f0;
}

.side-list a:first-of-type {
    border-top: 0;
}

.side-list img {
    width: 58px;
    height: 76px;
    border-radius: 12px;
    object-fit: cover;
}

.side-list span {
    font-weight: 800;
}

.side-list small {
    display: block;
    color: var(--muted);
    font-weight: 500;
}

.related-section {
    margin-top: 54px;
}

.site-footer {
    color: #cbd5e1;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 20px;
}

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

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

.site-footer a:hover {
    color: #34d399;
}

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

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

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

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

    .hero-side {
        display: none;
    }

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

    .ranking-card {
        grid-template-columns: 48px 100px minmax(0, 1fr);
    }

    .ranking-score {
        grid-column: 3;
        text-align: left;
    }
}

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

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

    .brand {
        min-width: 0;
    }

    .brand-text small {
        display: none;
    }

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

    .hero-content {
        padding-top: 48px;
        padding-bottom: 48px;
    }

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

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

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

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

    .ranking-card {
        grid-template-columns: 40px 86px minmax(0, 1fr);
        gap: 12px;
    }

    .section-head,
    .detail-title-row {
        display: block;
    }

    .detail-score {
        display: inline-block;
        margin-top: 16px;
    }
}

@media (max-width: 540px) {
    .nav-shell,
    .page-shell,
    .detail-shell,
    .page-hero > div {
        padding-right: 16px;
        padding-left: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }

    .search-page-form {
        border-radius: 22px;
        display: grid;
    }

    .search-page-form button {
        padding: 12px;
    }

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