:root {
    --color-primary: #dc2626;
    --color-primary-dark: #b91c1c;
    --color-accent: #f97316;
    --color-bg: #f8fafc;
    --color-text: #111827;
    --color-muted: #6b7280;
    --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.12);
    --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.10);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--color-text);
    background: linear-gradient(180deg, #fff 0%, #fff7ed 32%, var(--color-bg) 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 32px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand__mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 12px 26px rgba(220, 38, 38, 0.28);
    font-size: 18px;
}

.brand__name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 700;
    border-radius: 999px;
    transition: 0.2s ease;
}

.nav-link {
    padding: 10px 14px;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-link:hover,
.mobile-link.is-active {
    color: var(--color-primary);
    background: #fff1f2;
}

.header-search,
.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.search-board input,
.search-board select {
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    outline: none;
    transition: 0.2s ease;
}

.header-search input {
    width: 220px;
    padding: 11px 16px;
}

.header-search button,
.mobile-search button,
.quick-search button,
.search-board button {
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 22px rgba(220, 38, 38, 0.2);
}

.header-search button,
.mobile-search button {
    padding: 10px 16px;
}

.header-search input:focus,
.mobile-search input:focus,
.search-board input:focus,
.search-board select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #fff1f2;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-primary);
    transition: 0.2s ease;
}

.mobile-panel {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid #fee2e2;
    background: #fff;
}

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

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

.mobile-link {
    padding: 12px 14px;
}

.hero-carousel {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #111827;
}

.hero-carousel__slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.65s ease, transform 0.65s ease;
    transform: scale(1.03);
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 120px 0 110px;
    color: #fff;
}

.hero-slide__eyebrow,
.section-heading span,
.ranking-panel__head span,
.page-hero span {
    display: inline-flex;
    align-items: center;
    color: #fed7aa;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.hero-slide h1 {
    max-width: 720px;
    margin: 16px 0 18px;
    font-size: clamp(42px, 8vw, 84px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -0.06em;
    text-shadow: 0 20px 44px rgba(0, 0, 0, 0.35);
}

.hero-slide p {
    max-width: 720px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.8;
}

.hero-slide__tags,
.detail-hero__tags,
.movie-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #9a3412;
    background: #ffedd5;
    font-size: 12px;
    font-weight: 800;
}

.hero-slide__actions,
.detail-hero__actions,
.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.2s ease;
}

.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 18px 32px rgba(220, 38, 38, 0.32);
}

.btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
}

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

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    font-size: 34px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.hero-arrow--prev {
    left: 26px;
}

.hero-arrow--next {
    right: 26px;
}

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    transition: 0.2s ease;
}

.hero-dot.is-active {
    width: 34px;
    background: #fff;
}

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

.quick-search__inner {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    align-items: center;
    gap: 24px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.quick-search h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1.25;
}

.quick-search form {
    display: flex;
    gap: 10px;
}

.quick-search input {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    outline: none;
}

.quick-search button {
    min-width: 92px;
    padding: 0 20px;
}

.section-wrap {
    width: min(1180px, calc(100% - 32px));
    margin: 72px auto;
}

.section-wrap--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
    align-items: start;
}

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

.section-heading h2,
.ranking-panel__head h2 {
    margin: 6px 0 0;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 950;
    letter-spacing: -0.04em;
}

.section-heading a {
    color: var(--color-primary);
    font-weight: 900;
}

.category-grid,
.category-overview-grid {
    display: grid;
    gap: 18px;
}

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

.category-tile {
    position: relative;
    min-height: 192px;
    overflow: hidden;
    padding: 22px;
    border-radius: var(--radius-lg);
    color: #fff;
    background: linear-gradient(135deg, #991b1b, #f97316);
    box-shadow: var(--shadow-card);
    transition: 0.22s ease;
}

.category-tile:hover,
.movie-card:hover,
.category-card:hover {
    transform: translateY(-5px);
}

.category-tile span,
.category-card h2 {
    position: relative;
    z-index: 2;
    display: block;
    font-size: 24px;
    font-weight: 950;
}

.category-tile p {
    position: relative;
    z-index: 2;
    max-width: 260px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.category-tile__thumbs {
    position: absolute;
    right: -18px;
    bottom: -20px;
    display: flex;
    gap: 8px;
    transform: rotate(-8deg);
    opacity: 0.55;
}

.category-tile__thumbs img {
    width: 74px;
    height: 102px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
    transition: 0.22s ease;
}

.movie-card__poster {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: linear-gradient(135deg, #fee2e2, #ffedd5);
}

.movie-card__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.25s ease;
}

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

.movie-card__score {
    position: absolute;
    right: 10px;
    top: 10px;
    min-width: 42px;
    padding: 5px 8px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 24, 39, 0.76);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
    backdrop-filter: blur(10px);
}

.movie-card__body {
    padding: 15px;
}

.movie-card__title {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-card__meta,
.movie-card__desc {
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.6;
}

.movie-card__desc {
    display: -webkit-box;
    min-height: 42px;
    margin-top: 8px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-card__tags {
    margin-top: 12px;
}

.ranking-panel,
.info-card,
.detail-article,
.search-board,
.category-card {
    border-radius: var(--radius-xl);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.ranking-panel {
    position: sticky;
    top: 94px;
    padding: 26px;
}

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

.ranking-item {
    display: grid;
    grid-template-columns: 58px 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #f3f4f6;
    border-radius: 18px;
    background: #fff;
}

.ranking-item__cover {
    overflow: hidden;
    width: 58px;
    height: 76px;
    border-radius: 12px;
    background: #ffedd5;
}

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

.ranking-item__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    color: #9ca3af;
    background: #f3f4f6;
    font-weight: 950;
}

.ranking-item__num--hot {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.ranking-item__body h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 900;
}

.ranking-item__body p,
.ranking-item__body span {
    display: block;
    margin: 0;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.45;
}

.ranking-item__link {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-primary);
    background: #fff1f2;
    font-size: 13px;
    font-weight: 900;
}

.page-hero {
    color: #fff;
    background: radial-gradient(circle at 18% 18%, rgba(249, 115, 22, 0.82), transparent 30%), linear-gradient(135deg, #111827, #7f1d1d 54%, #ea580c);
}

.page-hero > div {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0;
}

.page-hero--compact > div,
.page-hero--category > div {
    padding: 70px 0;
}

.page-hero h1 {
    max-width: 760px;
    margin: 10px 0 14px;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.05em;
}

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

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

.category-card {
    overflow: hidden;
    transition: 0.22s ease;
}

.category-card__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 12px;
    background: linear-gradient(135deg, #fff1f2, #ffedd5);
}

.category-card__images img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.category-card__body {
    padding: 22px;
}

.category-card__body span {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.category-card__body h2 {
    margin: 6px 0 10px;
    color: var(--color-text);
}

.category-card__body p {
    margin: 0 0 18px;
    color: var(--color-muted);
    line-height: 1.7;
}

.category-card__body strong {
    color: var(--color-primary);
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 38px;
}

.pagination a,
.pagination span,
.pagination strong {
    min-width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
    font-weight: 900;
}

.pagination strong {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.detail-hero {
    min-height: 580px;
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 760px);
    align-items: center;
    gap: 42px;
    padding: 86px max(16px, calc((100vw - 1180px) / 2));
    color: #fff;
    background-size: cover;
    background-position: center;
}

.detail-hero__poster {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-hero__content h1 {
    margin: 12px 0 18px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.05em;
}

.detail-hero__content > span {
    color: #fed7aa;
    font-weight: 900;
}

.detail-hero__content p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.8;
}

.detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 24px 0;
}

.detail-hero__meta strong,
.detail-hero__meta em {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-style: normal;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

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

.video-panel {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: #000;
    box-shadow: var(--shadow-soft);
    aspect-ratio: 16 / 9;
}

.video-panel video {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.player-start {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: 0.2s ease;
}

.player-start span {
    width: 86px;
    height: 86px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 22px 40px rgba(220, 38, 38, 0.34);
    font-size: 34px;
}

.video-panel.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-article {
    margin-top: 26px;
    padding: 30px;
}

.detail-article h2,
.info-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    font-weight: 950;
}

.detail-article p {
    margin: 0 0 24px;
    color: #374151;
    font-size: 17px;
    line-height: 1.9;
}

.info-card {
    position: sticky;
    top: 94px;
    padding: 24px;
}

.info-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.info-card dt {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.info-card dd {
    margin: -8px 0 0;
    color: #111827;
    font-weight: 800;
    line-height: 1.6;
}

.info-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.info-card__links a {
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--color-primary);
    background: #fff1f2;
    font-weight: 900;
}

.search-board {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) 210px 180px;
    gap: 14px;
    padding: 20px;
    margin-bottom: 18px;
}

.search-board input,
.search-board select {
    width: 100%;
    padding: 14px 16px;
    color: #111827;
}

.search-status {
    margin: 0 0 18px;
    color: var(--color-primary);
    font-weight: 950;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 58px 24px;
    border-radius: var(--radius-xl);
    background: #fff;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.empty-state h2 {
    margin: 0 0 8px;
    font-size: 28px;
}

.empty-state p {
    margin: 0;
    color: var(--color-muted);
}

.ranking-page {
    max-width: 980px;
}

.ranking-list--page .ranking-item {
    grid-template-columns: 74px 54px minmax(0, 1fr) auto;
    padding: 16px;
}

.ranking-list--page .ranking-item__cover {
    width: 74px;
    height: 98px;
}

.site-footer {
    margin-top: 86px;
    color: #e5e7eb;
    background: #111827;
}

.site-footer__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
}

.brand--footer .brand__name {
    color: #fff;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.site-footer__brand p {
    max-width: 520px;
    color: #9ca3af;
    line-height: 1.7;
}

.site-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 28px 0;
}

.site-footer__links a {
    color: #d1d5db;
    font-weight: 800;
}

.site-footer__copy {
    margin: 0;
    color: #9ca3af;
}

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

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

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

    .section-wrap--split,
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .ranking-panel,
    .info-card {
        position: static;
    }
}

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

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .site-header__inner {
        height: 64px;
    }

    .brand__name {
        font-size: 20px;
    }

    .hero-carousel {
        min-height: 600px;
    }

    .hero-slide__content {
        padding: 92px 0 96px;
    }

    .hero-arrow {
        display: none;
    }

    .quick-search__inner {
        grid-template-columns: 1fr;
    }

    .quick-search form {
        flex-direction: column;
    }

    .quick-search button {
        min-height: 48px;
    }

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

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

    .detail-hero {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 20px;
        min-height: auto;
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .detail-hero__content p {
        font-size: 15px;
    }

    .search-board {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .brand__mark {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .brand__name {
        font-size: 18px;
    }

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

    .section-wrap {
        margin: 50px auto;
    }

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

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

    .movie-card__body {
        padding: 12px;
    }

    .movie-card__title {
        font-size: 15px;
    }

    .movie-card__desc,
    .movie-card__tags {
        display: none;
    }

    .ranking-item,
    .ranking-list--page .ranking-item {
        grid-template-columns: 52px 36px minmax(0, 1fr);
    }

    .ranking-item__link {
        display: none;
    }

    .detail-hero {
        display: block;
    }

    .detail-hero__poster {
        width: 150px;
        margin-bottom: 24px;
    }

    .detail-article,
    .info-card {
        padding: 22px;
    }

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