:root {
    --sky-50: #f0f9ff;
    --sky-100: #e0f2fe;
    --sky-500: #0ea5e9;
    --sky-600: #0284c7;
    --blue-600: #2563eb;
    --ink: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --card: #ffffff;
    --soft: #f8fafc;
    --radius-xl: 28px;
    --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: linear-gradient(180deg, var(--sky-50), #ffffff 36%, #f8fafc);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--sky-600);
    white-space: nowrap;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
    box-shadow: 0 10px 24px rgba(14, 165, 233, 0.35);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
    color: #334155;
    overflow: hidden;
}

.desktop-nav a {
    transition: color 0.2s ease;
}

.desktop-nav a:hover {
    color: var(--sky-600);
}

.menu-button {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #f1f5f9;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-button span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #0f172a;
}

.mobile-nav {
    display: none;
    padding: 14px 24px 24px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.mobile-nav a {
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--soft);
    color: #334155;
    font-weight: 700;
}

.mobile-nav.is-open {
    display: grid;
}

.hero-carousel {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: opacity 0.8s ease, transform 1.2s ease;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.5) 48%, rgba(2, 6, 23, 0.14)), linear-gradient(0deg, rgba(2, 6, 23, 0.82), transparent 45%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    height: 100%;
    padding: 110px 24px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
}

.hero-badge,
.section-kicker,
.page-hero span,
.category-overview-copy span,
.detail-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.16);
    color: #0284c7;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-badge {
    background: rgba(14, 165, 233, 0.9);
    color: #ffffff;
}

.hero-content h1,
.hero-content h2 {
    max-width: 760px;
    margin: 18px 0 16px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.hero-content p {
    max-width: 700px;
    margin: 0 0 22px;
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.tag-row span {
    background: #e0f2fe;
    color: #0369a1;
}

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

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

.primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
    box-shadow: 0 14px 34px rgba(14, 165, 233, 0.28);
}

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

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

.ghost-button.light {
    color: #0369a1;
    background: #e0f2fe;
    border-color: transparent;
}

.section-link {
    color: var(--sky-600);
    background: #e0f2fe;
}

.hero-dots {
    position: absolute;
    right: 34px;
    bottom: 34px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

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

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

.quick-search-section,
.content-section,
.page-main {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.quick-search-card {
    position: relative;
    z-index: 4;
    margin-top: -38px;
    padding: 26px;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr minmax(300px, 520px);
    gap: 24px;
    align-items: center;
}

.quick-search-card span {
    color: var(--sky-600);
    font-weight: 900;
}

.quick-search-card h2 {
    margin: 8px 0 0;
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -0.04em;
}

.quick-search-form,
.filter-search {
    display: flex;
    gap: 10px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f8fafc;
}

.quick-search-form input,
.filter-search input,
.filter-selects select {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #0f172a;
    font: inherit;
}

.quick-search-form button,
.filter-search button {
    border: 0;
    border-radius: 14px;
    padding: 0 20px;
    color: #ffffff;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
    white-space: nowrap;
}

.content-section {
    padding-top: 76px;
    padding-bottom: 16px;
}

.soft-section {
    max-width: none;
    padding: 76px max(24px, calc((100vw - 1240px) / 2 + 24px));
    background: linear-gradient(180deg, #ffffff, #eff6ff);
}

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

.section-heading h2 {
    margin: 10px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.05em;
    font-weight: 900;
}

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

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

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

.movie-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 12px 38px rgba(15, 23, 42, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(14, 165, 233, 0.45);
    box-shadow: 0 22px 54px rgba(14, 165, 233, 0.16);
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe, #f0f9ff);
}

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

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

.poster-shadow {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.5), transparent);
}

.card-rank {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 2;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 12px;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316, #ef4444);
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.32);
}

.movie-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.movie-card-body strong {
    font-size: 18px;
    line-height: 1.35;
}

.movie-line {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #0369a1;
    font-size: 13px;
    font-weight: 800;
}

.movie-meta em {
    font-style: normal;
}

.compact-card {
    flex-direction: row;
    align-items: stretch;
    border-radius: 20px;
}

.compact-card .poster-wrap {
    width: 92px;
    min-width: 92px;
    aspect-ratio: auto;
}

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

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

.compact-card .tag-row {
    display: none;
}

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

.category-card,
.category-overview-card,
.filter-panel,
.page-hero,
.detail-hero,
.player-card,
.detail-article,
.detail-side {
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.category-card {
    min-height: 210px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover,
.category-overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 54px rgba(14, 165, 233, 0.15);
}

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

.category-card p {
    color: var(--muted);
    line-height: 1.8;
}

.category-card small {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-card small span {
    padding: 5px 9px;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-weight: 800;
}

.two-column-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 36px;
}

.rank-list,
.mini-card-list {
    display: grid;
    gap: 14px;
}

.rank-row {
    display: grid;
    grid-template-columns: 54px 76px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.rank-row:hover {
    transform: translateX(4px);
    border-color: rgba(14, 165, 233, 0.45);
}

.rank-index {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
}

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

.rank-content {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.rank-content strong {
    font-size: 18px;
}

.rank-content small,
.rank-content em {
    color: var(--muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-style: normal;
}

.rank-action {
    padding: 8px 14px;
    border-radius: 999px;
    color: #0369a1;
    background: #e0f2fe;
    font-weight: 900;
}

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

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

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background: radial-gradient(circle at 10% 20%, rgba(14, 165, 233, 0.18), transparent 35%), linear-gradient(135deg, #ffffff, #eff6ff);
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    margin-bottom: 24px;
    padding: 16px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

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

.filter-selects select {
    min-width: 138px;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #f8fafc;
    font-weight: 700;
}

.empty-state {
    display: none;
    padding: 36px;
    text-align: center;
    color: var(--muted);
    border-radius: 24px;
    background: #ffffff;
    border: 1px dashed #cbd5e1;
}

.empty-state.is-visible {
    display: block;
}

.overview-list {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    padding: 24px;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
    gap: 24px;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-overview-copy h2 {
    margin: 12px 0;
    font-size: 34px;
    letter-spacing: -0.04em;
}

.category-overview-copy p {
    color: var(--muted);
    line-height: 1.8;
}

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

.detail-main {
    max-width: 1180px;
}

.detail-hero {
    overflow: hidden;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 34px;
    padding: 28px;
    color: #ffffff;
    background: radial-gradient(circle at 12% 15%, rgba(14, 165, 233, 0.45), transparent 32%), linear-gradient(135deg, #020617, #0f172a 52%, #075985);
}

.detail-cover img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.detail-copy {
    align-self: center;
}

.detail-kicker {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.detail-copy h1 {
    margin: 18px 0 16px;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.06em;
}

.detail-copy p {
    max-width: 760px;
    color: #e2e8f0;
    font-size: 18px;
    line-height: 1.85;
}

.player-section {
    padding: 34px 0 0;
}

.player-card {
    position: relative;
    overflow: hidden;
    background: #020617;
    aspect-ratio: 16 / 9;
}

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

.play-layer {
    position: absolute;
    inset: 0;
    border: 0;
    color: #ffffff;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.86), rgba(2, 6, 23, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
}

.play-layer.is-hidden {
    display: none;
}

.play-icon {
    width: 78px;
    height: 78px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    color: #ffffff;
    font-size: 30px;
    background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
    box-shadow: 0 18px 38px rgba(14, 165, 233, 0.35);
}

.play-layer strong {
    font-size: 22px;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    padding-top: 34px;
}

.detail-article,
.detail-side {
    padding: 28px;
}

.detail-article h2,
.detail-side h2 {
    margin: 0 0 16px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.detail-article p {
    margin: 0 0 26px;
    color: #334155;
    line-height: 2;
    font-size: 17px;
}

.detail-side dl {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px 16px;
    margin: 0;
}

.detail-side dt {
    color: var(--muted);
    font-weight: 800;
}

.detail-side dd {
    margin: 0;
    color: #0f172a;
    font-weight: 700;
}

.next-prev {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.next-prev a {
    min-height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0369a1;
    font-weight: 900;
    background: #e0f2fe;
}

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

.site-footer {
    margin-top: 80px;
    padding: 48px 24px 26px;
    background: linear-gradient(180deg, #f8fafc, #e2e8f0);
    border-top: 1px solid var(--line);
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr;
    gap: 36px;
}

.footer-brand {
    margin-bottom: 16px;
}

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

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

.footer-links {
    display: grid;
    gap: 10px;
    color: #475569;
}

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

.footer-links a:hover {
    color: var(--sky-600);
}

.footer-bottom {
    max-width: 1240px;
    margin: 34px auto 0;
    padding-top: 20px;
    color: #64748b;
    border-top: 1px solid #cbd5e1;
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sky-500), var(--blue-600));
    box-shadow: 0 14px 30px rgba(14, 165, 233, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.full-rank-list .rank-row {
    grid-template-columns: 58px 84px minmax(0, 1fr) auto;
}

@media (max-width: 1100px) {
    .desktop-nav {
        gap: 14px;
        font-size: 14px;
    }

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

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

    .two-column-section,
    .detail-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .menu-button {
        display: flex;
    }

    .nav-shell {
        padding: 0 16px;
    }

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

    .hero-content {
        padding: 92px 18px 96px;
    }

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

    .hero-dots {
        left: 18px;
        right: auto;
        bottom: 28px;
    }

    .quick-search-section,
    .content-section,
    .page-main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .quick-search-card,
    .filter-panel,
    .category-overview-card,
    .detail-hero {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .rank-row,
    .full-rank-list .rank-row {
        grid-template-columns: 46px 66px minmax(0, 1fr);
    }

    .rank-action {
        display: none;
    }
}

@media (max-width: 560px) {
    .quick-search-form,
    .filter-search,
    .filter-selects {
        flex-direction: column;
        display: flex;
    }

    .movie-grid,
    .page-grid,
    .category-grid,
    .category-overview-samples,
    .related-list {
        grid-template-columns: 1fr;
    }

    .compact-card .poster-wrap {
        width: 86px;
        min-width: 86px;
    }

    .page-hero,
    .detail-hero,
    .detail-article,
    .detail-side {
        padding: 22px;
    }

    .detail-copy h1 {
        font-size: 42px;
    }

    .rank-content em {
        display: none;
    }
}
