:root {
    --pink: #ec4899;
    --pink-dark: #be185d;
    --purple: #8b5cf6;
    --purple-dark: #6d28d9;
    --orange: #fb923c;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #fdf2f8;
    --line: rgba(148, 163, 184, 0.28);
    --card: rgba(255, 255, 255, 0.88);
    --shadow: 0 24px 80px rgba(109, 40, 217, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans SC", "PingFang SC", sans-serif;
    background:
        radial-gradient(circle at 10% 0%, rgba(236, 72, 153, 0.18), transparent 32rem),
        radial-gradient(circle at 90% 8%, rgba(139, 92, 246, 0.18), transparent 34rem),
        linear-gradient(135deg, #fff7fb 0%, #f6edff 48%, #fff7ed 100%);
    min-height: 100vh;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(22px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 14px 22px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 20px;
    font-weight: 800;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 12px 28px rgba(236, 72, 153, 0.28);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
    color: #4b5563;
    font-size: 14px;
    font-weight: 650;
    border-radius: 999px;
    transition: 0.22s ease;
}

.desktop-nav a {
    padding: 9px 12px;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.mobile-nav a:hover,
.mobile-nav a.active {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.top-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 280px;
    padding: 5px;
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.top-search input,
.mobile-nav input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--text);
    background: transparent;
}

.top-search input {
    padding: 7px 7px 7px 12px;
}

.top-search button,
.mobile-nav button {
    flex: 0 0 auto;
    border: 0;
    color: #fff;
    padding: 8px 15px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(139, 92, 246, 0.14));
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--pink-dark);
}

.mobile-nav {
    display: none;
    padding: 0 22px 18px;
}

.mobile-nav.open {
    display: grid;
    gap: 10px;
}

.mobile-nav a {
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.62);
}

.mobile-nav form {
    display: flex;
    gap: 10px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.home-hero {
    position: relative;
    max-width: 1280px;
    height: 560px;
    margin: 28px auto 64px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111827;
}

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

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

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background-position: center;
    background-size: cover;
    filter: saturate(1.15) blur(1px);
    transform: scale(1.04);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(88, 28, 135, 0.72), rgba(236, 72, 153, 0.38)),
        linear-gradient(0deg, rgba(17, 24, 39, 0.78), transparent 52%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: center;
    gap: 44px;
    height: 100%;
    padding: 58px 64px;
}

.hero-copy {
    max-width: 760px;
    color: #fff;
}

.eyebrow,
.hero-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 13px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 12px 26px rgba(236, 72, 153, 0.22);
}

.hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.hero-copy h2 {
    margin: 0 0 18px;
    color: #fbcfe8;
    font-size: clamp(24px, 3vw, 40px);
    line-height: 1.16;
    font-weight: 850;
}

.hero-copy p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    line-height: 1.78;
}

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

.hero-tags {
    margin-top: 22px;
}

.hero-tags span,
.detail-tags span,
.tag-list span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(253, 242, 248, 0.92);
}

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

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

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 18px 40px rgba(236, 72, 153, 0.28);
}

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

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

.hero-poster {
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
    transform: rotate(2deg);
}

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

.hero-dots {
    position: absolute;
    left: 64px;
    bottom: 30px;
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 32px;
    height: 8px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dots button.active {
    width: 54px;
    background: #fff;
}

.section-wrap,
.page-main,
.detail-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 22px 64px;
}

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

.section-head.compact {
    margin-bottom: 18px;
}

.section-head h2,
.page-hero h1,
.detail-info h1,
.player-section h2,
.detail-content h2 {
    margin: 0;
    color: var(--text);
    font-weight: 900;
    letter-spacing: -0.03em;
}

.section-head h2 {
    font-size: clamp(26px, 3vw, 40px);
}

.section-head a {
    color: var(--pink-dark);
    font-weight: 800;
}

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

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

.movie-card {
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    overflow: hidden;
    background: var(--card);
    box-shadow: 0 18px 52px rgba(109, 40, 217, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(236, 72, 153, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #fce7f3, #ede9fe);
}

.movie-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.poster-badge,
.poster-type {
    position: absolute;
    top: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 4px 9px;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    border-radius: 999px;
    backdrop-filter: blur(12px);
}

.poster-badge {
    left: 10px;
    background: rgba(236, 72, 153, 0.86);
}

.poster-type {
    right: 10px;
    background: rgba(109, 40, 217, 0.78);
}

.movie-body {
    padding: 14px;
}

.movie-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 20px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.movie-meta a {
    color: var(--pink-dark);
}

.movie-body h3 {
    display: -webkit-box;
    min-height: 48px;
    margin: 9px 0 8px;
    overflow: hidden;
    color: var(--text);
    font-size: 17px;
    line-height: 1.38;
    font-weight: 900;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-body p {
    display: -webkit-box;
    min-height: 44px;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.tag-list span {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 11px;
}

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

.category-card,
.category-overview-card,
.filter-panel,
.ranking-panel,
.detail-hero,
.player-section,
.detail-content article,
.page-hero {
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.category-card {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 18px;
    padding: 22px;
}

.category-main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 160px;
    padding: 22px;
    color: #fff;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 35%),
        linear-gradient(135deg, var(--pink), var(--purple));
}

.category-main strong {
    margin-bottom: 12px;
    font-size: 28px;
    font-weight: 900;
}

.category-main span {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.7;
}

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

.compact-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: #fce7f3;
}

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

.compact-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 8px 8px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    background: linear-gradient(0deg, rgba(17, 24, 39, 0.88), transparent);
}

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

.ranking-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
}

.rank-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.rank-row a {
    display: grid;
    grid-template-columns: 38px 56px minmax(0, 1fr) 48px;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(253, 242, 248, 0.72);
    transition: transform 0.22s ease, background 0.22s ease;
}

.rank-row a:hover {
    transform: translateX(4px);
    background: rgba(243, 232, 255, 0.95);
}

.rank-number {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: #fff;
    font-weight: 900;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.rank-row img {
    width: 56px;
    height: 74px;
    object-fit: cover;
    border-radius: 12px;
}

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

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

.rank-title strong {
    margin-bottom: 4px;
    font-size: 15px;
    font-weight: 900;
}

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

.rank-score {
    color: var(--pink-dark);
    font-size: 18px;
    font-weight: 950;
    text-align: right;
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    margin-bottom: 28px;
    padding: 52px;
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -110px;
    top: -110px;
    width: 320px;
    height: 320px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.22), rgba(139, 92, 246, 0.22));
}

.page-hero h1 {
    position: relative;
    z-index: 2;
    margin-bottom: 14px;
    font-size: clamp(32px, 4vw, 54px);
}

.page-hero p {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(130px, 180px));
    gap: 12px;
    margin-bottom: 26px;
    padding: 14px;
}

.filter-panel input,
.filter-panel select {
    min-height: 46px;
    padding: 0 15px;
    border: 1px solid rgba(236, 72, 153, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.82);
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    padding: 28px;
}

.category-overview-text h2 {
    margin: 0 0 12px;
    font-size: 30px;
    font-weight: 900;
}

.category-overview-text p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

.pill-link {
    min-height: 40px;
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.rank-page-list {
    max-width: 920px;
    margin: 0 auto;
}

.rank-page-list .rank-row a {
    grid-template-columns: 56px 84px minmax(0, 1fr) 72px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.82);
}

.rank-page-list .rank-row img {
    width: 84px;
    height: 112px;
}

.rank-page-list .rank-title strong {
    font-size: 20px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 30px 0 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.breadcrumb a {
    color: var(--pink-dark);
}

.detail-hero {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    margin-bottom: 28px;
    padding: 28px;
}

.detail-poster {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 24px 70px rgba(109, 40, 217, 0.16);
}

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

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

.detail-info h1 {
    margin-bottom: 16px;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.08;
}

.detail-one-line {
    margin: 0 0 20px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.8;
}

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

.detail-meta span {
    padding: 8px 12px;
    color: #4b5563;
    font-weight: 800;
    border-radius: 999px;
    background: rgba(243, 232, 255, 0.9);
}

.detail-tags {
    margin-bottom: 26px;
}

.player-section {
    margin-bottom: 28px;
    padding: 24px;
}

.player-section h2 {
    margin-bottom: 18px;
    font-size: 28px;
}

.player-box {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #111827;
    box-shadow: 0 28px 88px rgba(17, 24, 39, 0.28);
}

.player-video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #111827;
    object-fit: contain;
    cursor: pointer;
}

.player-start {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    border: 0;
    background: radial-gradient(circle, rgba(17, 24, 39, 0.12), rgba(17, 24, 39, 0.68));
    cursor: pointer;
}

.player-start span {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 20px 54px rgba(236, 72, 153, 0.35);
    clip-path: polygon(32% 22%, 32% 78%, 80% 50%);
}

.player-box.is-playing .player-start {
    display: none;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
    padding: 0;
}

.detail-content article {
    padding: 28px;
}

.detail-content h2 {
    margin-bottom: 16px;
    font-size: 28px;
}

.detail-content p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
}

.related-wrap {
    padding-left: 0;
    padding-right: 0;
}

.site-footer {
    margin-top: 30px;
    color: #4b5563;
    background: rgba(255, 255, 255, 0.82);
    border-top: 1px solid rgba(236, 72, 153, 0.12);
}

.footer-inner {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 34px 22px;
}

.footer-inner p {
    margin: 12px 0 0;
    line-height: 1.7;
}

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

.footer-links a {
    padding: 8px 12px;
    background: rgba(253, 242, 248, 0.86);
}

.footer-links a:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.footer-bottom {
    padding: 18px 22px;
    text-align: center;
    border-top: 1px solid rgba(236, 72, 153, 0.1);
}

.movie-card.hidden,
.rank-row.hidden {
    display: none;
}

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

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

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

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

    .ranking-panel {
        position: static;
    }
}

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

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

    .home-hero {
        height: auto;
        margin: 18px 14px 42px;
        border-radius: 28px;
    }

    .hero-slide {
        position: relative;
        display: none;
        min-height: 720px;
    }

    .hero-slide.active {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 34px 24px 70px;
    }

    .hero-poster {
        max-width: 260px;
        transform: none;
    }

    .hero-dots {
        left: 24px;
        bottom: 24px;
    }

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

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

    .category-grid,
    .category-card,
    .category-overview-card,
    .detail-hero,
    .detail-content,
    .footer-inner {
        grid-template-columns: 1fr;
    }

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

    .page-hero {
        padding: 32px 24px;
    }

    .detail-hero {
        padding: 22px;
    }

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

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

@media (max-width: 560px) {
    .nav-wrap,
    .section-wrap,
    .page-main,
    .detail-main {
        padding-left: 14px;
        padding-right: 14px;
    }

    .brand {
        font-size: 17px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
    }

    .hero-copy h1 {
        font-size: 34px;
    }

    .hero-copy p,
    .page-hero p,
    .detail-one-line {
        font-size: 16px;
    }

    .movie-grid,
    .movie-grid.slim {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .movie-body {
        padding: 12px;
    }

    .movie-body h3 {
        font-size: 15px;
    }

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

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

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

    .rank-row img,
    .rank-page-list .rank-row img {
        width: 54px;
        height: 72px;
    }

    .rank-score {
        display: none;
    }
}
