:root {
    color-scheme: dark;
    --bg: #0a0a0a;
    --bg-soft: #141414;
    --surface: #1f1f1f;
    --surface-2: #262626;
    --border: #333333;
    --text: #f8fafc;
    --muted: #a1a1aa;
    --muted-2: #71717a;
    --accent: #f97316;
    --accent-2: #ea580c;
    --accent-soft: rgba(249, 115, 22, 0.16);
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 5%, rgba(249, 115, 22, 0.16), transparent 32rem),
        radial-gradient(circle at 85% 20%, rgba(51, 78, 104, 0.28), transparent 35rem),
        var(--bg);
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 10, 10, 0.86);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 72px;
}

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

.logo-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), #fb923c);
    color: #111111;
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.28);
}

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

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.nav-link {
    padding: 10px 12px;
    border-radius: 999px;
    color: #d4d4d8;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--accent);
    background: var(--accent-soft);
}

.quick-search {
    display: flex;
    align-items: center;
    width: min(320px, 30vw);
    padding: 4px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(31, 31, 31, 0.8);
}

.quick-search input,
.search-page-form input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: none;
    color: var(--text);
    background: transparent;
}

.quick-search input {
    padding: 8px 12px;
    min-width: 0;
}

.quick-search button,
.search-page-form button,
.filter-panel button {
    border: 0;
    cursor: pointer;
    color: #111111;
    background: var(--accent);
    border-radius: 999px;
    padding: 9px 16px;
    font-weight: 800;
    transition: transform 0.2s ease, background 0.2s ease;
}

.quick-search button:hover,
.search-page-form button:hover,
.filter-panel button:hover,
.primary-btn:hover {
    transform: translateY(-1px);
    background: #fb923c;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    cursor: pointer;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    margin: 0 auto;
    border-radius: 999px;
    background: var(--text);
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
}

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

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

.hero {
    position: relative;
    min-height: 70vh;
    overflow: hidden;
    background: #000000;
}

.hero-slide {
    display: none;
    position: relative;
    min-height: 70vh;
}

.hero-slide.is-active {
    display: block;
    animation: fadeIn 0.55s ease;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.86)),
        linear-gradient(0deg, var(--bg), rgba(0, 0, 0, 0.08) 50%, var(--bg)),
        var(--hero-image) center / cover no-repeat;
    transform: scale(1.03);
    filter: saturate(1.15);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: 70vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 48px;
    padding: 72px 0 96px;
}

.hero-copy {
    max-width: 760px;
    animation: slideUp 0.6s ease;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(249, 115, 22, 0.35);
    border-radius: 999px;
    color: #fed7aa;
    background: rgba(249, 115, 22, 0.12);
    font-size: 13px;
    font-weight: 700;
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.hero p,
.page-hero p,
.detail-copy p {
    max-width: 780px;
    margin: 20px 0 0;
    color: #d4d4d8;
    font-size: 18px;
    line-height: 1.8;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.tag-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.06);
    font-size: 12px;
}

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

.primary-btn,
.secondary-btn,
.ghost-link,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn {
    min-height: 48px;
    padding: 0 24px;
    color: #111111;
    background: var(--accent);
    box-shadow: 0 16px 34px rgba(249, 115, 22, 0.28);
}

.secondary-btn,
.ghost-link,
.section-more {
    min-height: 48px;
    padding: 0 22px;
    color: #f4f4f5;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.secondary-btn:hover,
.ghost-link:hover,
.section-more:hover {
    transform: translateY(-1px);
    border-color: rgba(249, 115, 22, 0.5);
    color: var(--accent);
}

.hero-poster {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    min-height: 460px;
    background: var(--surface);
    box-shadow: var(--shadow);
    transform: rotate(1.5deg);
}

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

.hero-poster span {
    position: absolute;
    inset: auto 24px 24px auto;
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    color: #111111;
    background: var(--accent);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text);
    background: rgba(0, 0, 0, 0.42);
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

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

.hero-dot {
    width: 26px;
    height: 6px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
}

.hero-dot.is-active {
    background: var(--accent);
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2;
}

.section-heading p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

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

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

.compact-grid,
.rank-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)), var(--surface);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-soft);
}

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

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

.poster-shine {
    position: absolute;
    inset: auto 0 0;
    height: 55%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent);
}

.play-badge,
.rank-badge {
    position: absolute;
    display: grid;
    place-items: center;
    border-radius: 999px;
    font-weight: 900;
}

.play-badge {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
    color: #111111;
    background: var(--accent);
}

.rank-badge {
    left: 14px;
    top: 14px;
    min-width: 42px;
    height: 34px;
    padding: 0 10px;
    color: #111111;
    background: #fbbf24;
}

.movie-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px;
}

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted-2);
    font-size: 13px;
}

.meta-line span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #52525b;
}

.movie-card h2 {
    margin: 10px 0 8px;
    font-size: 19px;
    line-height: 1.35;
}

.movie-card h2 a:hover,
.ranking-info h2 a:hover,
.detail-article a:hover {
    color: var(--accent);
}

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

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

.category-tile {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}

.tile-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.24)),
        var(--tile-image) center / cover no-repeat;
    transition: transform 0.3s ease;
}

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

.tile-content {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: 10px;
    padding: 20px;
}

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

.tile-content em,
.tile-content small {
    color: #d4d4d8;
    font-style: normal;
    line-height: 1.7;
}

.tile-content small {
    color: #fed7aa;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    background: var(--bg-soft);
}

.compact-hero {
    padding: 76px 0 58px;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.2), transparent 28rem),
        linear-gradient(135deg, rgba(31, 31, 31, 0.95), rgba(10, 10, 10, 0.98));
}

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

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) 180px 180px auto;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(31, 31, 31, 0.78);
}

.filter-panel label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.filter-panel input,
.filter-panel select {
    height: 44px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--bg-soft);
}

.filter-panel button {
    align-self: end;
    height: 44px;
}

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

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

.ranking-row {
    display: grid;
    grid-template-columns: 100px 62px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(31, 31, 31, 0.72);
}

.ranking-cover {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
    background: var(--bg-soft);
}

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

.ranking-num {
    color: var(--accent);
    font-size: 28px;
    font-weight: 900;
}

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

.ranking-info p {
    margin: 0 0 10px;
    color: var(--muted);
    line-height: 1.7;
}

.search-page-form {
    display: flex;
    gap: 10px;
    max-width: 760px;
    margin-top: 28px;
    padding: 6px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
}

.search-page-form input {
    padding: 0 18px;
}

.search-page-form button {
    min-width: 120px;
}

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

.search-empty {
    grid-column: 1 / -1;
    padding: 34px;
    border: 1px solid var(--border);
    border-radius: 22px;
    color: var(--muted);
    background: var(--surface);
}

.detail-hero {
    min-height: 560px;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.98)),
        linear-gradient(0deg, var(--bg), transparent 45%),
        var(--detail-image) center / cover no-repeat;
    filter: saturate(1.08);
    transform: scale(1.02);
}

.detail-hero-inner {
    position: relative;
    z-index: 2;
    padding: 62px 0 76px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 30px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

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

.detail-copy h1 {
    font-size: clamp(34px, 5vw, 64px);
}

.detail-section {
    padding-top: 44px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #000000;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    color: #111111;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
    cursor: pointer;
}

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

.player-icon {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.46);
    font-size: 30px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 30px;
    margin-top: 34px;
}

.detail-article,
.detail-side {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(31, 31, 31, 0.72);
}

.detail-article {
    padding: 30px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 18px;
    font-size: 26px;
}

.detail-article p {
    color: #d4d4d8;
    line-height: 1.95;
    font-size: 17px;
}

.movie-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.movie-facts div {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.movie-facts dt {
    color: var(--muted-2);
    font-size: 13px;
}

.movie-facts dd {
    margin: 5px 0 0;
    color: var(--text);
}

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

.pager-links a {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: #e5e7eb;
    background: var(--bg-soft);
}

.detail-side {
    padding: 22px;
    height: fit-content;
}

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

.side-list a {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.side-list img {
    width: 86px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
}

.side-list strong,
.side-list em {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.side-list em {
    margin-top: 6px;
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid var(--border);
    background: #080808;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 34px;
    padding: 48px 0;
}

.site-footer p {
    max-width: 460px;
    color: var(--muted);
    line-height: 1.8;
}

.site-footer h2 {
    margin: 0 0 16px;
    font-size: 18px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--muted);
}

.footer-links a:hover {
    color: var(--accent);
    border-color: rgba(249, 115, 22, 0.45);
}

.footer-bottom {
    padding: 18px 16px;
    border-top: 1px solid var(--border);
    color: var(--muted-2);
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .quick-search {
        margin-left: auto;
        width: min(420px, 48vw);
    }

    .menu-toggle {
        display: flex;
    }

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

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

    .hero-content {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

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

@media (max-width: 820px) {
    .container {
        width: min(100% - 24px, 1240px);
    }

    .quick-search {
        display: none;
    }

    .hero,
    .hero-slide,
    .hero-content {
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 56px 0 86px;
    }

    .hero-poster {
        min-height: auto;
        transform: none;
    }

    .hero-poster img {
        min-height: 320px;
    }

    .hero-arrow {
        display: none;
    }

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

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .rank-grid,
    .category-movie-grid,
    .search-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

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

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

    .ranking-row {
        grid-template-columns: 78px minmax(0, 1fr);
    }

    .ranking-num,
    .ranking-row .ghost-link {
        display: none;
    }

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

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

    .detail-copy h1,
    .page-hero h1,
    .hero h1 {
        font-size: 36px;
    }

    .movie-facts,
    .pager-links,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

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

    .logo-mark {
        width: 36px;
        height: 36px;
    }

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

    .section-block {
        padding: 48px 0;
    }

    .movie-grid,
    .featured-grid,
    .compact-grid,
    .rank-grid,
    .category-movie-grid,
    .search-results,
    .category-grid {
        grid-template-columns: 1fr;
    }

    .movie-poster {
        aspect-ratio: 16 / 9;
    }

    .search-page-form {
        flex-direction: column;
        border-radius: 20px;
        padding: 12px;
    }

    .search-page-form input {
        min-height: 44px;
    }

    .detail-article {
        padding: 22px;
    }

    .player-icon {
        width: 68px;
        height: 68px;
    }
}
