:root {
    --purple-950: #3b0764;
    --purple-900: #581c87;
    --purple-700: #7e22ce;
    --purple-600: #9333ea;
    --pink-600: #db2777;
    --pink-500: #ec4899;
    --pink-100: #fce7f3;
    --purple-100: #f3e8ff;
    --text: #1f2937;
    --muted: #6b7280;
    --soft: #faf5ff;
    --line: #ead7f7;
    --shadow: 0 20px 45px rgba(88, 28, 135, 0.16);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background: linear-gradient(180deg, #faf5ff 0%, #fdf2f8 42%, #ffffff 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    color: #ffffff;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-500), #a855f7);
    box-shadow: 0 12px 30px rgba(126, 34, 206, 0.24);
}

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

.site-logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-500);
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(255, 255, 255, 0.18);
}

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

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

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

.header-search,
.mobile-search,
.big-search,
.inline-search {
    display: flex;
    align-items: center;
}

.header-search input,
.mobile-search input {
    width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    outline: none;
    border-radius: 999px 0 0 999px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.header-search input::placeholder,
.mobile-search input::placeholder {
    color: rgba(255, 255, 255, 0.78);
}

.header-search button,
.mobile-search button,
.big-search button {
    border: 0;
    color: var(--purple-700);
    font-weight: 800;
    border-radius: 0 999px 999px 0;
    padding: 10px 16px;
    background: #ffffff;
    cursor: pointer;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 16px;
    flex-direction: column;
    gap: 12px;
}

.mobile-search input {
    width: 100%;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-stage {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--purple-950);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.9s ease;
}

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

.hero-slide img {
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(17, 12, 28, 0.92), rgba(17, 12, 28, 0.52), rgba(17, 12, 28, 0.12));
}

.hero-content {
    position: absolute;
    left: max(24px, calc((100vw - 1180px) / 2));
    bottom: 96px;
    width: min(760px, calc(100% - 48px));
    color: #ffffff;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 14px;
    padding: 6px 14px;
    border-radius: 999px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-500));
    box-shadow: 0 10px 24px rgba(236, 72, 153, 0.25);
}

.hero h1,
.hero h2,
.page-hero h1 {
    margin: 0;
    font-size: clamp(36px, 7vw, 64px);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.hero .featured-title {
    margin-top: 14px;
    font-size: clamp(28px, 5vw, 48px);
}

.hero p,
.page-hero p {
    max-width: 780px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.75;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.hero-meta span,
.hero-meta a,
.detail-meta span,
.movie-badges span {
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    padding: 6px 12px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

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

.primary-button,
.ghost-button,
.text-link,
.rank-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    color: #ffffff;
    padding: 13px 26px;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-600));
    box-shadow: 0 16px 35px rgba(219, 39, 119, 0.32);
}

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

.primary-button:hover,
.ghost-button:hover,
.rank-action:hover {
    transform: translateY(-2px) scale(1.02);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transform: translateY(-50%);
}

.hero-prev {
    left: 22px;
}

.hero-next {
    right: 22px;
}

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

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

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

.search-panel,
.content-section,
.detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.search-panel {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 520px);
    gap: 24px;
    align-items: center;
    margin-top: -42px;
    position: relative;
    z-index: 5;
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-panel h2,
.section-heading h2,
.category-overview-card h2,
.detail-card h1,
.detail-card h2,
.related-card h2,
.poster-card h2 {
    margin: 0;
    color: var(--text);
    font-weight: 900;
}

.search-panel p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.big-search input,
.inline-search input {
    width: 100%;
    border: 1px solid var(--line);
    outline: none;
    padding: 14px 18px;
    border-radius: 999px 0 0 999px;
    background: #ffffff;
}

.big-search button {
    color: #ffffff;
    padding: 14px 24px;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-600));
}

.content-section {
    padding: 64px 0 0;
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.section-heading h2 {
    font-size: clamp(24px, 4vw, 34px);
}

.section-heading a {
    margin-left: auto;
    color: var(--purple-700);
    font-weight: 800;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-500));
    box-shadow: 0 12px 26px rgba(147, 51, 234, 0.22);
}

.category-grid,
.movie-grid,
.category-overview-grid,
.rank-top-grid {
    display: grid;
    gap: 22px;
}

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

.category-card,
.category-overview-card,
.movie-card,
.rank-hero-card,
.rank-row,
.detail-card,
.poster-card,
.related-card,
.player-card {
    border: 1px solid rgba(234, 215, 247, 0.88);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 30px rgba(88, 28, 135, 0.1);
}

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #ffffff;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(59, 7, 100, 0.88), rgba(219, 39, 119, 0.2));
}

.category-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card span,
.category-card p {
    position: relative;
    z-index: 2;
}

.category-card span {
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.65;
}

.category-card:hover,
.movie-card:hover,
.category-overview-card:hover,
.rank-hero-card:hover,
.rank-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-card:hover img,
.movie-card:hover .movie-cover img {
    transform: scale(1.08);
}

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

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

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

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

.movie-card {
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.movie-cover {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--purple-100), var(--pink-100));
}

.movie-card-large .movie-cover {
    aspect-ratio: 16 / 10;
}

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

.movie-play {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--purple-700);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.movie-info {
    padding: 16px;
}

.movie-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.movie-badges span {
    border-color: #ead7f7;
    color: var(--purple-700);
    font-size: 12px;
    padding: 4px 8px;
    background: #faf5ff;
}

.movie-info h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 900;
}

.movie-info h3 a:hover,
.category-overview-card h2 a:hover,
.rank-info h3 a:hover {
    color: var(--purple-700);
}

.movie-info p {
    min-height: 46px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.movie-meta {
    margin-top: 12px;
    color: #9333ea;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.movie-card-horizontal {
    display: grid;
    grid-template-columns: 168px 1fr;
}

.movie-card-horizontal .movie-cover {
    aspect-ratio: auto;
    height: 100%;
    min-height: 150px;
}

.movie-card-compact .movie-info h3 {
    font-size: 16px;
}

.movie-card-compact .movie-info p,
.movie-card-compact .movie-meta {
    display: none;
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 38px auto 0;
    padding: clamp(34px, 6vw, 72px);
    border-radius: 30px;
    color: #ffffff;
    background: radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.28), transparent 26%), linear-gradient(135deg, var(--purple-700), var(--pink-600) 55%, #c084fc);
    box-shadow: var(--shadow);
}

.compact-hero {
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.listing-section {
    padding-top: 36px;
}

.listing-toolbar {
    position: sticky;
    top: 78px;
    z-index: 8;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 14px;
    border: 1px solid rgba(234, 215, 247, 0.9);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px);
}

.inline-search {
    min-width: 260px;
}

.inline-search input {
    border-radius: 999px;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.filter-button {
    border: 0;
    border-radius: 999px;
    color: var(--purple-700);
    font-weight: 800;
    padding: 9px 14px;
    background: #f3e8ff;
    cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
    color: #ffffff;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-600));
}

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

.category-overview-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 18px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.category-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    overflow: hidden;
    border-radius: 18px;
}

.category-preview img {
    height: 92px;
    object-fit: cover;
}

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

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

.text-link {
    color: var(--purple-700);
    font-weight: 900;
}

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

.rank-hero-card {
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-hero-card img {
    height: 220px;
    object-fit: cover;
}

.rank-hero-card div {
    padding: 18px;
}

.rank-hero-card span,
.rank-number {
    color: var(--pink-600);
    font-weight: 900;
}

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

.rank-hero-card p,
.rank-info p {
    color: var(--muted);
    line-height: 1.65;
}

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

.rank-row {
    display: grid;
    grid-template-columns: 56px 120px 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.rank-poster img {
    height: 80px;
    border-radius: 14px;
    object-fit: cover;
}

.rank-info h3 {
    margin: 0 0 6px;
    font-size: 18px;
}

.rank-info p {
    margin: 0 0 6px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.rank-info div {
    color: var(--purple-700);
    font-size: 13px;
    font-weight: 750;
}

.rank-action {
    color: #ffffff;
    padding: 10px 16px;
    background: linear-gradient(90deg, var(--purple-600), var(--pink-600));
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
    gap: 26px;
    padding-top: 34px;
}

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

.breadcrumb a {
    color: var(--purple-700);
    font-weight: 800;
}

.player-card {
    overflow: hidden;
    margin-bottom: 22px;
    background: #0b0614;
}

.video-shell {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #000000;
    cursor: pointer;
}

.play-overlay {
    position: absolute;
    inset: 0;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-700);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.08));
    cursor: pointer;
}

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

.play-overlay span {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 34px;
    color: var(--purple-700);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease;
}

.play-overlay:hover span {
    transform: scale(1.08);
}

.detail-card,
.poster-card,
.related-card {
    padding: 24px;
}

.detail-card h1 {
    font-size: clamp(28px, 5vw, 42px);
}

.detail-card section {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.detail-card h2,
.related-card h2,
.poster-card h2 {
    margin-bottom: 12px;
    font-size: 22px;
}

.detail-card p,
.poster-card p {
    color: #4b5563;
    line-height: 1.85;
    text-align: justify;
}

.detail-meta span {
    border-color: #ead7f7;
    color: var(--purple-700);
    background: #faf5ff;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag-list a {
    border-radius: 999px;
    color: var(--purple-700);
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
    background: #f3e8ff;
}

.detail-side {
    display: grid;
    gap: 22px;
    align-content: start;
}

.poster-card {
    position: sticky;
    top: 92px;
}

.poster-card img {
    border-radius: 18px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-bottom: 16px;
}

.related-card .movie-card-horizontal {
    grid-template-columns: 128px 1fr;
    box-shadow: none;
}

.related-card .movie-card-horizontal .movie-cover {
    min-height: 104px;
}

.related-list {
    display: grid;
    gap: 14px;
}

.site-footer {
    margin-top: 72px;
    color: #ffffff;
    background: linear-gradient(180deg, var(--purple-900), var(--purple-950));
}

.footer-grid {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 48px 0;
}

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

.site-footer p,
.site-footer a,
.footer-bottom {
    color: #e9d5ff;
    line-height: 1.75;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li + li {
    margin-top: 8px;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(233, 213, 255, 0.22);
    font-size: 14px;
}

.is-hidden-by-filter {
    display: none !important;
}

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

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

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

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

    .grid-three,
    .grid-two,
    .category-overview-grid,
    .rank-top-grid,
    .detail-layout {
        grid-template-columns: 1fr;
    }

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

    .poster-card {
        position: static;
    }
}

@media (max-width: 760px) {
    .header-inner {
        height: 62px;
    }

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

    .hero-stage {
        min-height: 540px;
    }

    .hero-content {
        bottom: 82px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

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

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

    .movie-card-horizontal,
    .category-overview-card,
    .rank-row {
        grid-template-columns: 1fr;
    }

    .movie-card-horizontal .movie-cover {
        min-height: 190px;
    }

    .category-preview {
        grid-template-columns: repeat(4, 1fr);
    }

    .category-preview img {
        height: 78px;
    }

    .listing-toolbar {
        position: static;
        flex-direction: column;
        align-items: stretch;
    }

    .inline-search {
        min-width: 0;
    }

    .filter-bar {
        justify-content: flex-start;
    }

    .rank-row {
        align-items: start;
    }

    .rank-poster img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 520px) {
    .content-section,
    .detail-layout,
    .search-panel,
    .page-hero {
        width: calc(100% - 24px);
    }

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

    .big-search {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .big-search input,
    .big-search button {
        border-radius: 999px;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .play-overlay span {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }
}
