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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, #78350f 0%, #9a3412 48%, #78350f 100%);
    box-shadow: 0 18px 40px rgba(120, 53, 15, 0.22);
}

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

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

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #78350f;
    background: #fef3c7;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: 0.06em;
}

.brand-text em {
    margin-top: 4px;
    font-size: 12px;
    font-style: normal;
    color: #fde68a;
}

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

.desktop-nav a,
.nav-dropdown button {
    border: 0;
    color: #fffbeb;
    background: transparent;
    font: inherit;
    font-weight: 650;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active,
.nav-dropdown:hover button {
    color: #fde68a;
}

.nav-dropdown {
    position: relative;
    padding: 24px 0;
}

.nav-dropdown-panel {
    position: absolute;
    top: 64px;
    left: -18px;
    width: 190px;
    padding: 10px;
    border-radius: 16px;
    background: #ffffff;
    color: #374151;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-panel a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    color: #374151;
}

.nav-dropdown-panel a:hover {
    color: #9a3412;
    background: #fff7ed;
}

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

.header-search input,
.mobile-search input,
.filter-bar input,
.filter-bar select {
    border: 1px solid rgba(251, 191, 36, 0.35);
    outline: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    padding: 10px 14px;
    min-width: 210px;
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: #fde68a;
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    color: #78350f;
    background: #fde68a;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    padding: 9px 12px;
    font-size: 20px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

.mobile-panel nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 14px;
}

.mobile-panel nav a {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.hero-carousel {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #451a03;
}

.hero-track,
.hero-slide {
    min-height: 560px;
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(69, 26, 3, 0.94) 0%, rgba(120, 53, 15, 0.72) 42%, rgba(0, 0, 0, 0.32) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, transparent 58%);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #78350f;
    background: #fde68a;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.hero-content h1,
.hero-content .hero-movie-title {
    width: min(760px, 100%);
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 66px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero-content h1 + .hero-movie-title {
    margin-top: -8px;
    color: #fde68a;
    font-size: clamp(28px, 4vw, 44px);
}

.hero-content p {
    width: min(620px, 100%);
    margin: 0 0 20px;
    color: #ffedd5;
    font-size: 19px;
    line-height: 1.8;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fffbeb;
    padding: 7px 12px;
    font-size: 13px;
}

.movie-card .tag-row span,
.detail-tags span {
    color: #92400e;
    background: #fffbeb;
    border: 1px solid #fde68a;
}

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

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

.button-primary {
    color: #78350f;
    background: #fde68a;
    box-shadow: 0 16px 28px rgba(251, 191, 36, 0.28);
}

.button-secondary {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

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

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

.hero-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dot.is-active {
    width: 34px;
    border-radius: 999px;
    background: #fde68a;
}

.quick-entry {
    color: #ffffff;
    background: linear-gradient(90deg, #9a3412, #c2410c);
}

.quick-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
}

.quick-inner h2 {
    margin: 0 0 8px;
    font-size: 24px;
}

.quick-inner p {
    margin: 0;
    color: #ffedd5;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.quick-links a {
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    transition: background 0.2s ease;
}

.quick-links a:hover {
    background: rgba(255, 255, 255, 0.24);
}

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

.page-top {
    padding-top: 34px;
}

.content-section {
    margin: 54px 0;
}

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

.section-heading h2,
.article-section h2 {
    margin: 0;
    color: #111827;
    font-size: clamp(24px, 4vw, 34px);
    letter-spacing: -0.03em;
}

.section-heading p {
    margin: 8px 0 0;
    color: #6b7280;
    line-height: 1.7;
}

.section-link {
    flex: 0 0 auto;
    color: #c2410c;
    font-weight: 800;
}

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(251, 191, 36, 0.26);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 42px rgba(120, 53, 15, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(120, 53, 15, 0.18);
}

.movie-cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, #fde68a, #fed7aa);
}

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

.movie-card:hover .movie-cover img,
.poster-card:hover img,
.rank-row:hover img,
.ranking-link:hover img {
    transform: scale(1.08);
}

.movie-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 56%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .movie-cover::after {
    opacity: 1;
}

.cover-badge {
    position: absolute;
    z-index: 2;
    top: 10px;
    padding: 6px 9px;
    border-radius: 9px;
    color: #ffffff;
    background: rgba(120, 53, 15, 0.88);
    font-size: 12px;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.cover-type {
    left: 10px;
}

.cover-year {
    right: 10px;
    background: rgba(0, 0, 0, 0.55);
}

.cover-play {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #78350f;
    background: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translate(-50%, -45%);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .cover-play {
    opacity: 1;
    transform: translate(-50%, -50%);
}

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

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

.movie-card h3 a:hover {
    color: #c2410c;
}

.movie-card p {
    display: -webkit-box;
    min-height: 48px;
    margin: 0 0 12px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.7;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    color: #92400e;
    font-size: 13px;
    font-weight: 750;
}

.movie-meta span:first-child {
    padding: 5px 8px;
    border-radius: 8px;
    background: #fffbeb;
}

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

.poster-card {
    display: block;
}

.poster-image {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #fde68a, #fed7aa);
    box-shadow: 0 12px 28px rgba(120, 53, 15, 0.12);
}

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

.poster-image em {
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 5px 7px;
    border-radius: 8px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.58);
    font-size: 12px;
    font-style: normal;
}

.poster-card strong {
    display: -webkit-box;
    margin-top: 9px;
    color: #111827;
    font-size: 14px;
    line-height: 1.45;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 34px 82px 1fr;
    gap: 13px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(251, 191, 36, 0.26);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
}

.rank-row span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #78350f;
    background: #fde68a;
    font-weight: 900;
}

.rank-row img {
    width: 82px;
    height: 54px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rank-row strong,
.ranking-link strong {
    display: block;
    color: #111827;
}

.rank-row em,
.ranking-link em,
.ranking-link b {
    display: block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 22px;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #c2410c;
}

.page-hero {
    padding: 42px;
    border-radius: 28px;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(253, 230, 138, 0.35), transparent 34%), linear-gradient(135deg, #7c2d12, #c2410c);
    box-shadow: 0 24px 60px rgba(120, 53, 15, 0.18);
}

.compact-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 52px);
    letter-spacing: -0.04em;
}

.compact-hero p {
    max-width: 760px;
    margin: 0;
    color: #ffedd5;
    line-height: 1.8;
    font-size: 18px;
}

.poster-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.poster-strip .poster-card strong {
    color: #ffffff;
}

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

.category-tile a {
    display: block;
    min-height: 220px;
    padding: 28px;
    border: 1px solid rgba(251, 191, 36, 0.28);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(120, 53, 15, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile a:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 58px rgba(120, 53, 15, 0.16);
}

.category-tile h2 {
    margin: 0 0 12px;
    color: #9a3412;
    font-size: 28px;
}

.category-tile p {
    margin: 0 0 22px;
    color: #6b7280;
    line-height: 1.8;
}

.category-tile div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tile span {
    padding: 7px 10px;
    border-radius: 999px;
    color: #92400e;
    background: #fffbeb;
    font-size: 13px;
}

.filter-bar {
    display: grid;
    grid-template-columns: 1fr 180px 180px;
    gap: 12px;
    margin-bottom: 24px;
    padding: 16px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    min-width: 0;
    color: #374151;
    background: #ffffff;
}

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

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

.ranking-card {
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(120, 53, 15, 0.08);
}

.ranking-link {
    display: grid;
    grid-template-columns: 54px 120px 1fr;
    gap: 16px;
    align-items: center;
    padding: 14px;
}

.ranking-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #78350f;
    background: #fde68a;
    font-weight: 900;
}

.ranking-link img {
    width: 120px;
    height: 76px;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 34px;
    align-items: center;
    padding: 36px;
    border-radius: 30px;
    color: #ffffff;
    background: radial-gradient(circle at top left, rgba(253, 230, 138, 0.32), transparent 32%), linear-gradient(135deg, #451a03, #c2410c);
    box-shadow: 0 24px 60px rgba(120, 53, 15, 0.2);
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 24px;
    background: linear-gradient(135deg, #fde68a, #fed7aa);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

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

.detail-info h1 {
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.detail-one-line {
    max-width: 760px;
    margin: 0 0 20px;
    color: #ffedd5;
    font-size: 18px;
    line-height: 1.8;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.detail-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.player-card {
    margin: 42px 0;
    padding: 24px;
    border-radius: 28px;
    background: #111827;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.26);
}

.player-card .section-heading h2,
.player-card .section-heading p {
    color: #ffffff;
}

.player-card .section-heading p {
    color: #d1d5db;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    background: #000000;
    aspect-ratio: 16 / 9;
}

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

.video-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.66));
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #78350f;
    background: #fde68a;
    font-size: 34px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.video-overlay strong {
    font-size: 20px;
}

.video-shell.is-playing .video-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.article-section {
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 42px rgba(120, 53, 15, 0.1);
}

.article-section h2 {
    margin-top: 0;
    margin-bottom: 16px;
}

.article-section h2:not(:first-child) {
    margin-top: 32px;
}

.article-section p {
    color: #374151;
    font-size: 17px;
    line-height: 2;
}

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

.site-footer {
    margin-top: 70px;
    color: #ffffff;
    background: linear-gradient(90deg, #78350f, #9a3412, #78350f);
}

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

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

.footer-inner p {
    max-width: 470px;
    color: #ffedd5;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-content: start;
    justify-content: flex-end;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    color: #fffbeb;
    background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: #fde68a;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

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

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

    .quick-inner,
    .footer-inner,
    .detail-hero {
        grid-template-columns: 1fr;
    }

    .quick-links,
    .footer-links {
        justify-content: flex-start;
    }

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

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

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

@media (max-width: 760px) {
    .header-inner {
        width: min(100% - 22px, 1180px);
    }

    .brand-text strong {
        font-size: 18px;
    }

    .hero-carousel,
    .hero-track,
    .hero-slide {
        min-height: 650px;
    }

    .hero-content {
        padding: 82px 0 92px;
    }

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

    .quick-inner,
    .page-wrap,
    .mobile-panel,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 22px, 1180px);
    }

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

    .movie-grid,
    .related-grid,
    .category-grid,
    .rank-list,
    .filter-bar,
    .ranking-link {
        grid-template-columns: 1fr;
    }

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

    .detail-hero,
    .page-hero,
    .article-section,
    .player-card {
        padding: 22px;
        border-radius: 22px;
    }

    .ranking-link img {
        width: 100%;
        height: 180px;
    }
}
