html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #111827;
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

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

button,
a,
input {
    -webkit-tap-highlight-color: transparent;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78));
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    flex: 0 0 auto;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, #d97706, #f97316);
    box-shadow: 0 12px 28px rgba(245, 158, 11, 0.32);
}

.brand-mark.small {
    width: 34px;
    height: 34px;
    border-radius: 12px;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong,
.footer-brand strong {
    font-size: 24px;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, #b45309, #ea580c);
    -webkit-background-clip: text;
    color: transparent;
}

.brand-copy small {
    margin-top: 3px;
    color: #6b7280;
    font-size: 12px;
}

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

.nav-link,
.mobile-link {
    color: #374151;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    color: #d97706;
}

.header-search {
    width: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #fde68a;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(245, 158, 11, 0.10);
}

.header-search input,
.mobile-search input,
.page-filter-form input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: #111827;
}

.header-search input {
    padding: 10px 14px;
}

.header-search button,
.mobile-search button,
.page-filter-form button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #d97706, #f97316);
    font-weight: 800;
    cursor: pointer;
}

.header-search button {
    padding: 10px 16px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 14px;
    background: #fff7ed;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #b45309;
    border-radius: 99px;
}

.mobile-panel {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

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

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

.mobile-link {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff7ed;
}

.mobile-search {
    display: flex;
    overflow: hidden;
    border: 1px solid #fed7aa;
    border-radius: 999px;
}

.mobile-search input {
    padding: 12px 14px;
}

.mobile-search button {
    padding: 12px 16px;
}

.page-main {
    min-height: 100vh;
}

.home-main {
    padding-top: 0;
}

.hero-carousel {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #111827;
}

.hero-slides,
.hero-slide,
.hero-background {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.65s ease;
}

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

.hero-background {
    background-size: cover;
    background-position: center;
    filter: blur(10px) saturate(1.2);
    transform: scale(1.08);
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 78% 34%, rgba(251, 191, 36, 0.28), transparent 34%), linear-gradient(90deg, rgba(17, 24, 39, 0.96) 0%, rgba(17, 24, 39, 0.78) 46%, rgba(17, 24, 39, 0.22) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 132px 0 76px;
    color: #ffffff;
}

.hero-eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 7px 13px;
    border-radius: 999px;
    color: #92400e;
    background: #fef3c7;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 760px;
    margin: 22px 0 18px;
    font-size: clamp(42px, 8vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.hero-content p {
    max-width: 650px;
    margin: 0 0 26px;
    color: #fffbeb;
    font-size: 19px;
    line-height: 1.8;
}

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

.hero-tags span,
.detail-tags span,
.tag-row span,
.movie-meta span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-weight: 800;
}

.hero-tags span,
.detail-tags span {
    padding: 7px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
}

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

.primary-button,
.ghost-button,
.small-button,
.section-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    min-height: 48px;
    padding: 0 26px;
    color: #d97706;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(255, 255, 255, 0.22);
}

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

.ghost-button {
    min-height: 48px;
    padding: 0 24px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.36);
    backdrop-filter: blur(10px);
}

.hero-cover {
    position: absolute;
    right: max(32px, calc((100% - 1180px) / 2));
    bottom: 90px;
    z-index: 2;
    width: min(330px, 28vw);
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, 0.22);
    border-radius: 38px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

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

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

.hero-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

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

.stats-strip {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    margin: -54px auto 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.13);
}

.stats-strip a {
    padding: 28px;
    color: inherit;
    text-decoration: none;
    border-right: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}

.stats-strip a:hover {
    background: #fffbeb;
}

.stats-strip strong {
    display: block;
    color: #111827;
    font-size: 22px;
}

.stats-strip span {
    display: block;
    margin-top: 5px;
    color: #6b7280;
}

.content-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 74px 0;
}

.warm-section {
    width: 100%;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
    background: linear-gradient(180deg, #ffffff, #fff7ed);
}

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

.section-heading h2 {
    margin: 14px 0 8px;
    color: #111827;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 650px;
    margin: 0;
    color: #6b7280;
    line-height: 1.8;
}

.section-more,
.small-button {
    color: #ffffff;
    background: linear-gradient(135deg, #d97706, #f97316);
    box-shadow: 0 12px 26px rgba(245, 158, 11, 0.24);
}

.section-more {
    padding: 12px 18px;
    white-space: nowrap;
}

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid #f3f4f6;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 36px 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(-7px);
    border-color: #fed7aa;
    box-shadow: 0 26px 60px rgba(217, 119, 6, 0.18);
}

.movie-poster {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #111827;
}

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

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

.movie-poster::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.72));
    opacity: 0.82;
}

.play-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    padding: 8px 13px;
    color: #ffffff;
    background: rgba(245, 158, 11, 0.88);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    transform: translateY(12px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.movie-card:hover .play-badge {
    transform: translateY(0);
    opacity: 1;
}

.movie-poster em {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    padding: 6px 10px;
    color: #ffffff;
    background: rgba(17, 24, 39, 0.78);
    border-radius: 999px;
    font-style: normal;
    font-size: 12px;
    font-weight: 900;
}

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

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

.movie-card-body h3 a,
.rank-info h2 a {
    color: #111827;
    text-decoration: none;
    transition: color 0.2s ease;
}

.movie-card-body h3 a:hover,
.rank-info h2 a:hover {
    color: #d97706;
}

.movie-card-body p {
    min-height: 48px;
    margin: 0 0 14px;
    color: #6b7280;
    line-height: 1.65;
    font-size: 14px;
}

.movie-meta span {
    padding: 5px 9px;
    color: #92400e;
    background: #fffbeb;
    font-size: 12px;
}

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

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

.category-tile,
.category-card-large {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    border-radius: 28px;
    color: #ffffff;
    text-decoration: none;
    background: #111827;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.category-card-large {
    min-height: 280px;
}

.category-tile img,
.category-card-large img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.62;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.category-tile:hover img,
.category-card-large:hover img {
    transform: scale(1.08);
    opacity: 0.78;
}

.category-tile::after,
.category-card-large::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.1), rgba(17, 24, 39, 0.82));
}

.category-tile span,
.category-tile small,
.category-card-large div {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
}

.category-tile span {
    bottom: 68px;
    font-size: 24px;
    font-weight: 900;
}

.category-tile small {
    bottom: 24px;
    color: #fffbeb;
    line-height: 1.55;
}

.category-card-large div {
    bottom: 28px;
}

.category-card-large span {
    display: block;
    font-size: 30px;
    font-weight: 900;
}

.category-card-large p {
    margin: 12px 0 0;
    color: #fffbeb;
    line-height: 1.75;
}

.inner-main {
    padding-top: 96px;
}

.inner-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 72px 0 28px;
}

.inner-hero > span {
    display: inline-flex;
    padding: 7px 13px;
    color: #92400e;
    background: #fef3c7;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.inner-hero h1 {
    margin: 18px 0 14px;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.inner-hero p {
    max-width: 760px;
    margin: 0;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.85;
}

.page-filter-form {
    width: min(720px, 100%);
    margin-top: 26px;
    display: flex;
    overflow: hidden;
    border: 1px solid #fed7aa;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 16px 34px rgba(245, 158, 11, 0.12);
}

.page-filter-form input {
    padding: 15px 20px;
    font-size: 16px;
}

.page-filter-form button {
    padding: 0 24px;
    white-space: nowrap;
}

.filter-chips {
    margin-top: 18px;
}

.tag-filter-button {
    border: 0;
    border-radius: 999px;
    padding: 9px 14px;
    color: #92400e;
    background: #fffbeb;
    font-weight: 800;
    cursor: pointer;
}

.tag-filter-button.active {
    color: #ffffff;
    background: linear-gradient(135deg, #d97706, #f97316);
}

.ranking-list {
    display: grid;
    gap: 18px;
}

.rank-card {
    display: grid;
    grid-template-columns: 58px 92px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 16px;
}

.rank-number {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, #d97706, #f97316);
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
}

.rank-poster {
    display: block;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 18px;
}

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

.rank-info h2 {
    margin: 0 0 8px;
    font-size: 22px;
}

.rank-info p {
    margin: 0 0 12px;
    color: #6b7280;
    line-height: 1.75;
}

.small-button {
    min-width: 82px;
    padding: 11px 16px;
}

.detail-main {
    padding-top: 96px;
}

.detail-hero {
    padding: 42px 0 58px;
    background: radial-gradient(circle at 80% 0%, rgba(251, 191, 36, 0.20), transparent 34%), linear-gradient(180deg, #fff7ed, #ffffff);
}

.breadcrumb {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: #6b7280;
    font-size: 14px;
}

.breadcrumb a {
    color: #b45309;
    text-decoration: none;
    font-weight: 800;
}

.detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-poster {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    border-radius: 36px;
    box-shadow: 0 28px 64px rgba(15, 23, 42, 0.18);
}

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

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

.detail-one-line {
    max-width: 760px;
    margin: 0 0 22px;
    color: #4b5563;
    font-size: 19px;
    line-height: 1.85;
}

.detail-tags span {
    color: #92400e;
    background: #fef3c7;
    border-color: #fde68a;
}

.tag-row {
    margin: 18px 0 28px;
}

.tag-row span {
    padding: 7px 12px;
    color: #374151;
    background: #f3f4f6;
    font-size: 13px;
}

.player-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0 20px;
}

.video-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 32px;
    background: #020617;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24);
}

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

.player-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 0;
    color: #ffffff;
    background: radial-gradient(circle at center, rgba(245, 158, 11, 0.28), rgba(2, 6, 23, 0.82));
    cursor: pointer;
}

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

.player-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    border-radius: 50%;
    color: #d97706;
    background: #ffffff;
    font-size: 30px;
    box-shadow: 0 18px 38px rgba(255, 255, 255, 0.18);
}

.player-overlay strong {
    max-width: min(720px, calc(100% - 40px));
    font-size: clamp(20px, 4vw, 38px);
    line-height: 1.25;
}

.detail-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 42px;
}

.article-block {
    padding: 30px;
    border: 1px solid #f3f4f6;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.article-block h2 {
    margin: 0 0 14px;
    color: #111827;
    font-size: 26px;
}

.article-block p {
    margin: 0;
    color: #4b5563;
    line-height: 2;
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid #f3f4f6;
    background: linear-gradient(180deg, #ffffff, #f9fafb);
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 620px;
}

.footer-brand p {
    margin: 8px 0 0;
    color: #6b7280;
    line-height: 1.75;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.footer-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 800;
}

.footer-links a:hover {
    color: #d97706;
}

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

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

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

    .hero-cover {
        opacity: 0.34;
        right: 18px;
        width: min(300px, 48vw);
    }

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

@media (max-width: 820px) {
    .site-header-inner {
        height: 68px;
    }

    .brand-copy strong {
        font-size: 21px;
    }

    .hero-carousel,
    .hero-content {
        min-height: 640px;
    }

    .hero-content {
        padding-top: 112px;
    }

    .hero-cover {
        display: none;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -36px;
    }

    .stats-strip a {
        padding: 22px;
    }

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

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

    .rank-card {
        grid-template-columns: 46px 76px minmax(0, 1fr);
    }

    .rank-card .small-button {
        grid-column: 3;
        width: fit-content;
    }

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

    .detail-poster {
        width: min(310px, 70vw);
    }

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

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .hero-content h1 {
        font-size: 44px;
    }

    .hero-tags span,
    .detail-tags span {
        font-size: 12px;
    }

    .stats-strip,
    .movie-grid,
    .featured-grid,
    .category-grid,
    .category-grid.large {
        grid-template-columns: 1fr;
    }

    .page-filter-form {
        border-radius: 24px;
        flex-direction: column;
    }

    .page-filter-form button {
        padding: 14px;
    }

    .rank-card {
        grid-template-columns: 42px 72px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .rank-info h2 {
        font-size: 18px;
    }

    .rank-info p {
        display: none;
    }

    .video-shell {
        border-radius: 22px;
    }
}
