* {
    box-sizing: border-box;
}

:root {
    --amber: #f59e0b;
    --amber-dark: #d97706;
    --orange: #f97316;
    --red: #ef4444;
    --ink: #1f2937;
    --muted: #6b7280;
    --line: #e5e7eb;
    --soft: #fff7ed;
    --card: #ffffff;
    --shadow: 0 20px 60px rgba(31, 41, 55, 0.12);
    --radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 32%, #f9fafb 100%);
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.24);
}

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

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.logo-mark {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--amber-dark);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(255, 255, 255, 0.28);
}

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

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

.nav-link,
.mobile-link {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #fff7ed;
    transform: translateY(-1px);
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(16px);
}

.header-search input,
.mobile-search input {
    width: 180px;
    border: 0;
    outline: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #7c2d12;
    background: rgba(255, 255, 255, 0.94);
}

.header-search button,
.mobile-search button {
    border: 0;
    border-radius: 999px;
    padding: 9px 16px;
    color: #ffffff;
    cursor: pointer;
    font-weight: 800;
    background: rgba(124, 45, 18, 0.34);
}

.menu-toggle {
    display: none;
    border: 0;
    color: #ffffff;
    background: transparent;
    font-size: 26px;
    cursor: pointer;
}

.mobile-panel {
    display: none;
    background: rgba(217, 119, 6, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

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

.mobile-panel-inner {
    display: grid;
    gap: 12px;
    padding: 16px 0 20px;
}

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

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    color: #ffffff;
    background: #7c2d12;
}

.hero-slider {
    position: relative;
    min-height: 680px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: center;
    width: 100%;
    padding: 90px max(32px, calc((100vw - 1200px) / 2)) 150px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(6px) saturate(1.08) brightness(0.58);
    transform: scale(1.06);
}

.hero-bg::after,
.detail-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 24%, rgba(245, 158, 11, 0.48), transparent 34%),
        linear-gradient(90deg, rgba(124, 45, 18, 0.9), rgba(124, 45, 18, 0.62) 42%, rgba(15, 23, 42, 0.78));
}

.hero-content,
.hero-poster,
.hero-category-strip {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: #ffedd5;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.eyebrow.dark {
    color: var(--amber-dark);
}

.hero-content h1,
.hero-content h2 {
    margin: 0 0 22px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.hero-content p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #fff7ed;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-tags,
.detail-meta,
.detail-tags,
.movie-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span,
.detail-meta span,
.detail-tags span,
.movie-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.17);
    backdrop-filter: blur(12px);
}

.detail-tags span,
.movie-tags span {
    color: #92400e;
    background: #ffedd5;
}

.detail-meta span,
.detail-meta strong {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 34px;
}

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

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

.btn.primary {
    color: var(--amber-dark);
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.18);
}

.btn.ghost {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn.text {
    color: #ffedd5;
    background: transparent;
    border: 1px solid rgba(255, 237, 213, 0.38);
}

.hero-poster {
    display: block;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
    transform: rotate(1.5deg);
}

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

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

.hero-poster span {
    position: absolute;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 16px 44px rgba(249, 115, 22, 0.38);
}

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

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

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

.hero-category-strip {
    position: absolute;
    left: 50%;
    bottom: 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-category-strip a {
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff7ed;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(14px);
}

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

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

.section-title-row.compact {
    align-items: center;
    margin-bottom: 22px;
}

.section-title-row h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
    letter-spacing: -0.04em;
}

.section-title-row p {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.more-link {
    color: var(--amber-dark);
    font-weight: 900;
}

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

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

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

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

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

.movie-card {
    min-width: 0;
}

.movie-card a {
    display: block;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 12px 34px rgba(31, 41, 55, 0.1);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-card a:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 70px rgba(249, 115, 22, 0.2);
}

.poster-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 3;
    background: #fed7aa;
}

.featured-grid .poster-wrap {
    aspect-ratio: 16 / 9;
}

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

.movie-card a:hover .poster-wrap img {
    transform: scale(1.08);
}

.poster-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.62));
}

.poster-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.movie-year {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(12px);
}

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

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

.movie-card-body p {
    min-height: 48px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.movie-tags {
    gap: 7px;
    margin-bottom: 12px;
}

.movie-tags span {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 12px;
}

.movie-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #9ca3af;
    font-size: 13px;
}

.movie-meta-row strong {
    color: var(--amber-dark);
}

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

.category-box,
.category-overview-card,
.rank-panel,
.filter-panel,
.content-card,
.player-card {
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.category-box,
.category-overview-card {
    padding: 24px;
}

.category-head,
.category-overview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.category-head span,
.category-overview-head span {
    font-size: 22px;
    font-weight: 900;
}

.category-head em,
.category-overview-head em {
    color: var(--amber-dark);
    font-style: normal;
    font-weight: 900;
}

.category-box p,
.category-overview-card p {
    color: var(--muted);
    line-height: 1.7;
}

.mini-card-list {
    display: grid;
    gap: 12px;
}

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

.mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 10px;
    border-radius: 16px;
    background: #fff7ed;
    transition: transform 0.2s ease, background 0.2s ease;
}

.mini-card:hover {
    transform: translateX(4px);
    background: #ffedd5;
}

.mini-card img {
    width: 58px;
    height: 78px;
    flex: 0 0 auto;
    border-radius: 12px;
    object-fit: cover;
}

.mini-card span {
    min-width: 0;
}

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

.mini-card strong {
    margin-bottom: 5px;
}

.mini-card em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 24px;
}

.rank-list {
    display: grid;
    gap: 12px;
}

.full-rank-list {
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 46px 66px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #fff7ed;
    transition: transform 0.2s ease, background 0.2s ease;
}

.rank-row:hover {
    transform: translateX(5px);
    background: #ffedd5;
}

.rank-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.rank-row img {
    width: 66px;
    height: 66px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-info {
    min-width: 0;
}

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

.rank-info em {
    color: var(--muted);
    font-style: normal;
    font-size: 13px;
}

.rank-heat {
    color: var(--amber-dark);
    font-weight: 900;
}

.page-hero,
.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient(135deg, #b45309, #f97316 48%, #ef4444);
}

.small-hero {
    padding: 86px 0;
}

.small-hero h1 {
    max-width: 850px;
    margin: 0 0 18px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
    letter-spacing: -0.05em;
}

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

.page-actions {
    margin-top: 28px;
}

.filter-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    margin-bottom: 30px;
}

.filter-panel h2 {
    margin: 0 0 6px;
}

.filter-panel p {
    margin: 0;
    color: var(--muted);
}

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

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

.filter-controls input:focus,
.filter-controls select:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.13);
}

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

.detail-bg {
    position: absolute;
    inset: 0;
}

.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px) saturate(1.08) brightness(0.56);
    transform: scale(1.07);
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
    color: #ffedd5;
    font-weight: 800;
}

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

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

.detail-poster {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
}

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

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

.detail-one-line {
    max-width: 780px;
    margin: 0 0 22px;
    color: #fff7ed;
    font-size: 20px;
    line-height: 1.8;
}

.detail-meta {
    margin-bottom: 16px;
}

.detail-meta strong {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
}

.detail-main {
    padding: 48px 0 76px;
}

.player-card {
    padding: 18px;
    margin-bottom: 28px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #111827;
    aspect-ratio: 16 / 9;
}

.movie-player {
    width: 100%;
    height: 100%;
    display: block;
    background: #111827;
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    background: #111827;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.54);
}

.big-play {
    position: relative;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    border-radius: 999px;
    font-size: 34px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 22px 60px rgba(249, 115, 22, 0.38);
}

.content-card {
    padding: 32px;
    margin-bottom: 32px;
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.content-card p {
    margin: 0 0 26px;
    color: #374151;
    font-size: 17px;
    line-height: 2;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.related-section {
    padding: 20px 0 0;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(180deg, #1f2937, #111827);
}

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

.footer-logo .logo-mark {
    color: #ffffff;
    background: var(--amber);
}

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

.site-footer p {
    margin: 0;
    line-height: 1.8;
}

.site-footer ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

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

.is-filtered-out {
    display: none !important;
}

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

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

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

    .two-column {
        grid-template-columns: 1fr;
    }

    .rank-panel {
        position: static;
    }
}

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

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

    .hero-slider,
    .home-hero {
        min-height: 760px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
        padding-top: 78px;
        padding-bottom: 170px;
    }

    .hero-poster {
        width: min(260px, 70vw);
        justify-self: center;
    }

    .featured-grid,
    .latest-grid,
    .category-grid,
    .category-overview-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .filter-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-controls input,
    .filter-controls select {
        flex: 1 1 180px;
    }

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

    .detail-poster {
        width: min(240px, 65vw);
    }
}

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

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

    .hero-slider,
    .home-hero {
        min-height: 820px;
    }

    .hero-slide {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-category-strip {
        width: calc(100% - 22px);
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
    }

    .hero-category-strip a {
        white-space: nowrap;
    }

    .hero-dots {
        bottom: 140px;
    }

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

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

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

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

    .movie-card-body h2 {
        font-size: 16px;
    }

    .movie-card-body p {
        min-height: auto;
        font-size: 13px;
    }

    .rank-row {
        grid-template-columns: 38px 54px minmax(0, 1fr);
    }

    .rank-heat {
        grid-column: 3;
        font-size: 13px;
    }

    .rank-row img {
        width: 54px;
        height: 54px;
    }

    .small-hero {
        padding: 58px 0;
    }

    .detail-info h1,
    .hero-content h1,
    .hero-content h2 {
        letter-spacing: -0.04em;
    }

    .player-card {
        padding: 8px;
        border-radius: 18px;
    }

    .player-box {
        border-radius: 16px;
    }

    .content-card {
        padding: 22px;
    }

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