:root {
    --fog-50: #f8f9fa;
    --fog-100: #f1f3f5;
    --fog-200: #e9ecef;
    --fog-300: #dee2e6;
    --fog-400: #ced4da;
    --fog-500: #adb5bd;
    --fog-600: #868e96;
    --fog-700: #495057;
    --fog-800: #343a40;
    --fog-900: #212529;
    --steel-50: #f0f4f8;
    --steel-200: #bcccdc;
    --steel-400: #829ab1;
    --steel-500: #627d98;
    --steel-600: #486581;
    --steel-700: #334e68;
    --steel-800: #243b53;
    --moss-50: #f0f4f0;
    --moss-100: #dce8dc;
    --moss-200: #bdd2bd;
    --moss-600: #3d663d;
    --moss-800: #234323;
    --accent-400: #fb923c;
    --white: #ffffff;
    --black: #000000;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(33, 37, 41, 0.12);
    --shadow-lg: 0 20px 45px rgba(33, 37, 41, 0.22);
    --radius: 0.5rem;
}

* {
    box-sizing: border-box;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", sans-serif;
    color: var(--fog-900);
    background: var(--fog-50);
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(100% - 2rem, 88rem);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--fog-200);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(14px);
}

.nav-row {
    min-height: 5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: var(--fog-900);
    white-space: nowrap;
}

.logo-mark {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--steel-600), var(--steel-800));
    font-size: 0.8rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.7rem;
    margin-left: 1rem;
}

.main-nav a,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: var(--fog-700);
    font-weight: 500;
    padding: 0.35rem 0;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown:hover > button {
    color: var(--steel-600);
}

.nav-dropdown {
    position: relative;
}

.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 13rem;
    padding: 0.5rem;
    border: 1px solid var(--fog-200);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: 0.2s ease;
}

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

.dropdown-panel a {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 0.4rem;
}

.dropdown-panel a:hover {
    background: var(--fog-50);
}

.nav-search {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-search input,
.mobile-search input,
.search-page-form input,
.filter-bar input,
.filter-bar select {
    border: 1px solid var(--fog-300);
    border-radius: var(--radius);
    background: var(--white);
    padding: 0.65rem 0.9rem;
    color: var(--fog-900);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
    border-color: var(--steel-500);
    box-shadow: 0 0 0 3px rgba(72, 101, 129, 0.14);
}

.nav-search button,
.mobile-search button {
    border: 0;
    border-radius: var(--radius);
    color: var(--white);
    background: var(--steel-600);
    padding: 0.65rem 1rem;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    border-radius: var(--radius);
    background: var(--fog-100);
    color: var(--fog-800);
    padding: 0.65rem 0.85rem;
}

.mobile-menu {
    display: none;
    border-top: 1px solid var(--fog-200);
    padding: 1rem;
    background: var(--white);
}

.mobile-menu.open {
    display: block;
}

.mobile-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.mobile-search input {
    flex: 1;
}

.mobile-menu nav {
    display: grid;
    gap: 0.35rem;
}

.mobile-menu a {
    padding: 0.65rem 0.8rem;
    border-radius: var(--radius);
    color: var(--fog-700);
}

.mobile-menu a:hover {
    background: var(--fog-100);
    color: var(--steel-600);
}

.hero {
    position: relative;
    height: 78vh;
    min-height: 34rem;
    overflow: hidden;
    background: var(--fog-900);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(33, 37, 41, 1), rgba(33, 37, 41, 0.62), rgba(33, 37, 41, 0.12)),
        linear-gradient(to right, rgba(33, 37, 41, 0.82), rgba(33, 37, 41, 0.15));
}

.hero-content {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 24rem);
    align-items: end;
    gap: 3rem;
    padding-bottom: clamp(4rem, 9vw, 7rem);
}

.hero-copy {
    max-width: 48rem;
    color: var(--white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--accent-400);
    font-weight: 600;
    margin-bottom: 1rem;
}

.eyebrow::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--accent-400);
}

.hero h1,
.hero h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.055em;
}

.hero p {
    margin: 0;
    max-width: 46rem;
    color: var(--fog-200);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.75;
}

.hero-tags {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.hero-tags span,
.tag-list span {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    padding: 0.42rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: var(--radius);
    padding: 0.72rem 1.35rem;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn.primary {
    color: var(--white);
    background: var(--steel-600);
}

.btn.primary:hover {
    background: var(--steel-700);
}

.btn.ghost {
    color: var(--white);
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-poster {
    align-self: end;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: translateY(1rem);
}

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

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.hero-arrow,
.hero-dot {
    pointer-events: auto;
}

.hero-arrow {
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 1.7rem;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.hero-dots {
    display: flex;
    gap: 0.55rem;
}

.hero-dot {
    width: 0.65rem;
    height: 0.65rem;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
}

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

.home-section {
    padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.white-section {
    background: var(--white);
}

.alt-section {
    background: linear-gradient(to bottom, var(--fog-50), var(--white));
}

.dark-section {
    background: var(--fog-900);
    color: var(--white);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-head h2,
.center-title {
    margin: 0;
    color: var(--fog-900);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.035em;
}

.section-head.dark h2,
.dark-section .movie-card h3 {
    color: var(--white);
}

.section-head a {
    color: var(--steel-600);
    font-weight: 600;
}

.section-head.dark a {
    color: var(--steel-200);
}

.center-title {
    text-align: center;
    margin-bottom: 2rem;
}

.movie-grid {
    display: grid;
    gap: 1.5rem;
}

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

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

.movie-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.movie-card-link {
    display: block;
    height: 100%;
}

.movie-thumb {
    position: relative;
    height: 14rem;
    overflow: hidden;
    background: var(--fog-200);
}

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

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

.thumb-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.movie-card:hover .thumb-mask {
    opacity: 1;
}

.movie-card-body {
    padding: 1rem;
}

.movie-card-top {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.channel-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 0.35rem;
    background: var(--steel-50);
    color: var(--steel-600);
    padding: 0.25rem 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
}

.year-badge {
    color: var(--fog-500);
    font-size: 0.78rem;
}

.movie-card h3 {
    margin: 0 0 0.55rem;
    color: var(--fog-900);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.38;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.movie-card p {
    margin: 0;
    color: var(--fog-600);
    font-size: 0.92rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.horizontal-list,
.related-list {
    display: grid;
    gap: 1rem;
}

.movie-card.horizontal .movie-card-link {
    display: grid;
    grid-template-columns: 12rem minmax(0, 1fr);
    gap: 1rem;
    height: 100%;
}

.horizontal-thumb {
    height: 100%;
    min-height: 10rem;
}

.movie-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    color: var(--fog-500);
    font-size: 0.82rem;
    margin-top: 0.85rem;
}

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

.category-tile,
.category-card a {
    position: relative;
    min-height: 8rem;
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--steel-600), var(--steel-800));
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover,
.category-card a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.category-tile span,
.category-card h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.category-tile strong {
    margin-top: 0.5rem;
    color: var(--steel-200);
    font-size: 0.95rem;
}

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

.category-card p {
    color: var(--fog-100);
    line-height: 1.7;
    margin: 0.9rem 0 1.1rem;
}

.category-card span {
    color: var(--steel-200);
    font-weight: 600;
}

.page-hero {
    color: var(--white);
    padding: clamp(3rem, 7vw, 4.5rem) 0;
}

.steel-hero {
    background: linear-gradient(to right, var(--steel-600), var(--steel-800));
}

.moss-hero {
    background: linear-gradient(to right, var(--moss-600), var(--moss-800));
}

.page-hero h1 {
    margin: 0 0 0.8rem;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.page-hero p {
    max-width: 55rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.75;
}

.crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.93rem;
}

.crumbs a:hover {
    color: var(--white);
}

.crumbs.dark {
    color: var(--fog-400);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(16rem, 1fr) repeat(3, minmax(8rem, 12rem));
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.empty-filter {
    display: none;
    text-align: center;
    padding: 3rem;
    color: var(--fog-600);
}

.empty-filter.show {
    display: block;
}

.rank-list {
    display: grid;
    gap: 1rem;
}

.rank-card a {
    display: grid;
    grid-template-columns: 4rem 7rem minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 0.9rem;
}

.rank-card img {
    width: 7rem;
    height: 5.6rem;
    border-radius: 0.45rem;
    object-fit: cover;
}

.rank-number {
    width: 2.8rem;
    height: 2.8rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--steel-600), var(--steel-800));
    font-weight: 700;
}

.search-page-form {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.search-page-form input {
    flex: 1;
}

.search-status {
    color: var(--fog-600);
    margin: 0.8rem 0 1.5rem;
}

.detail-top {
    background: var(--fog-900);
    padding: 1.6rem 0 1rem;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
    gap: 2rem;
    padding-top: 2rem;
}

.player-shell {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--black);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16 / 9;
}

.movie-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
}

.player-cover {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    padding: 0;
    background: var(--black);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-cover.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.player-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
}

.player-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.play-ring {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: clamp(4rem, 9vw, 6.5rem);
    height: clamp(4rem, 9vw, 6.5rem);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--white);
    background: rgba(72, 101, 129, 0.88);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
    font-size: 2.4rem;
}

.detail-card,
.side-card {
    margin-top: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: clamp(1.25rem, 3vw, 2rem);
}

.detail-card h1 {
    margin: 0 0 1rem;
    color: var(--fog-900);
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    letter-spacing: -0.035em;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--fog-200);
    color: var(--fog-600);
}

.detail-meta span,
.detail-meta a {
    border-radius: 999px;
    background: var(--fog-100);
    padding: 0.35rem 0.7rem;
    font-size: 0.9rem;
}

.detail-meta a {
    color: var(--steel-600);
    font-weight: 600;
}

.content-block {
    margin-top: 1.5rem;
}

.content-block h2 {
    margin: 0 0 0.8rem;
    font-size: 1.35rem;
    color: var(--fog-900);
}

.content-block p {
    margin: 0 0 1rem;
    color: var(--fog-700);
    line-height: 1.9;
}

.lead-text {
    font-weight: 600;
}

.review-block {
    border-radius: var(--radius);
    background: var(--fog-50);
    padding: 1.25rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-list span {
    background: var(--fog-100);
    color: var(--fog-700);
    backdrop-filter: none;
}

.detail-side {
    min-width: 0;
}

.detail-side .side-card:first-child {
    margin-top: 0;
}

.poster-card img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 3 / 4;
    object-fit: cover;
    margin-bottom: 1rem;
}

.poster-card h2,
.side-card h2 {
    margin: 0 0 0.75rem;
    font-size: 1.25rem;
}

.poster-card p {
    color: var(--fog-600);
    line-height: 1.7;
    margin: 0;
}

.info-card dl {
    display: grid;
    grid-template-columns: 4.5rem minmax(0, 1fr);
    gap: 0.65rem 1rem;
    margin: 0;
}

.info-card dt {
    color: var(--fog-500);
}

.info-card dd {
    margin: 0;
    color: var(--fog-800);
}

.info-card a {
    color: var(--steel-600);
    font-weight: 600;
}

.related-side .movie-card.horizontal .movie-card-link {
    grid-template-columns: 6.5rem minmax(0, 1fr);
}

.related-side .horizontal-thumb {
    min-height: 7rem;
}

.related-side .movie-card-body {
    padding: 0.75rem 0.75rem 0.75rem 0;
}

.site-footer {
    margin-top: 5rem;
    color: var(--fog-300);
    background: var(--fog-900);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    padding: 3.5rem 0;
}

.footer-logo {
    color: var(--fog-100);
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 34rem;
    color: var(--fog-400);
    line-height: 1.8;
}

.site-footer h2 {
    font-size: 1.05rem;
    margin: 0 0 1rem;
    color: var(--fog-100);
}

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

.site-footer a:hover {
    color: var(--steel-200);
}

.footer-bottom {
    border-top: 1px solid var(--fog-800);
    text-align: center;
    color: var(--fog-500);
    padding: 1.35rem;
    font-size: 0.9rem;
}

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

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

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

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

@media (max-width: 800px) {
    .nav-row {
        min-height: 4rem;
    }

    .hero {
        height: auto;
        min-height: 38rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        padding-top: 6rem;
        padding-bottom: 5rem;
        gap: 2rem;
    }

    .hero-poster {
        display: none;
    }

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

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

    .rank-card a {
        grid-template-columns: 3rem 5.8rem minmax(0, 1fr);
    }

    .rank-card img {
        width: 5.8rem;
        height: 4.8rem;
    }

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

@media (max-width: 560px) {
    .container {
        width: min(100% - 1.25rem, 88rem);
    }

    .hero h1,
    .hero h2 {
        font-size: 2.25rem;
    }

    .hero-actions,
    .section-head,
    .search-page-form {
        flex-direction: column;
        align-items: stretch;
    }

    .movie-grid.three,
    .movie-grid.four,
    .category-grid,
    .category-overview {
        grid-template-columns: 1fr;
    }

    .movie-card.horizontal .movie-card-link,
    .related-side .movie-card.horizontal .movie-card-link {
        grid-template-columns: 1fr;
    }

    .horizontal-thumb,
    .related-side .horizontal-thumb {
        min-height: 12rem;
    }

    .rank-card a {
        grid-template-columns: 2.7rem minmax(0, 1fr);
    }

    .rank-card img {
        display: none;
    }
}
