* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #020617;
    color: #e2e8f0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
    line-height: 1.6;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 10%, rgba(34, 211, 238, 0.16), transparent 30%),
        radial-gradient(circle at 80% 0%, rgba(168, 85, 247, 0.12), transparent 30%),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.09) 1px, transparent 1px);
    background-size: 54px 54px;
    pointer-events: none;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(2, 6, 23, 0.78);
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    width: min(1240px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #001018;
    background: linear-gradient(135deg, #22d3ee, #3b82f6 55%, #a855f7);
    box-shadow: 0 18px 40px rgba(34, 211, 238, 0.25);
}

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

.desktop-nav a {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 650;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #22d3ee;
}

.header-search {
    margin-left: auto;
    position: relative;
    width: 280px;
}

.header-search input,
.mobile-menu input,
.filter-panel input,
.filter-panel select {
    width: 100%;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid rgba(51, 65, 85, 0.9);
    border-radius: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search input {
    height: 42px;
    padding: 0 46px 0 16px;
}

.header-search input:focus,
.mobile-menu input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: rgba(34, 211, 238, 0.75);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.1);
    background: rgba(15, 23, 42, 0.95);
}

.header-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 10px;
    color: #94a3b8;
    background: transparent;
}

.header-search button:hover {
    color: #22d3ee;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(51, 65, 85, 0.9);
    border-radius: 12px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.76);
}

.mobile-menu {
    display: none;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto 14px;
    padding: 14px;
    border: 1px solid rgba(51, 65, 85, 0.8);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.92);
}

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

.mobile-menu form {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.mobile-menu input {
    height: 42px;
    padding: 0 14px;
}

.mobile-menu button {
    border: 0;
    border-radius: 12px;
    padding: 0 16px;
    color: #001018;
    font-weight: 800;
    background: #22d3ee;
}

.mobile-menu nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.mobile-menu nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: #cbd5e1;
    background: rgba(30, 41, 59, 0.72);
}

.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(51, 65, 85, 0.85);
}

.hero-glow {
    position: absolute;
    inset: -20% -10% auto;
    height: 420px;
    background:
        radial-gradient(circle at 30% 40%, rgba(34, 211, 238, 0.22), transparent 40%),
        radial-gradient(circle at 70% 20%, rgba(168, 85, 247, 0.18), transparent 42%);
    filter: blur(10px);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    background-image: radial-gradient(rgba(34, 211, 238, 0.25) 1px, transparent 1px);
    background-size: 24px 24px;
}

.hero-stage {
    position: relative;
    width: min(1240px, calc(100% - 32px));
    min-height: 660px;
    margin: 0 auto;
    padding: 70px 0 82px;
}

.hero-slide {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: 44px;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    inset: 70px 0 82px;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    inset: auto;
    transform: translateY(0);
}

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

.hero-eyebrow,
.page-hero-small span,
.section-head span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #22d3ee;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-copy h1,
.hero-copy h2 {
    margin: 18px 0 20px;
    font-size: clamp(42px, 8vw, 78px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(90deg, #67e8f9, #60a5fa 45%, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-copy p {
    max-width: 680px;
    margin: 0 0 22px;
    color: #cbd5e1;
    font-size: 18px;
}

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

.hero-tags span,
.tag-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid rgba(34, 211, 238, 0.25);
    border-radius: 999px;
    color: #cbd5e1;
    background: rgba(15, 23, 42, 0.72);
}

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

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
    color: #001018;
    background: linear-gradient(135deg, #22d3ee, #3b82f6);
    box-shadow: 0 18px 42px rgba(34, 211, 238, 0.25);
}

.btn-ghost {
    color: #e2e8f0;
    border: 1px solid rgba(51, 65, 85, 0.95);
    background: rgba(15, 23, 42, 0.7);
}

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

.btn-ghost:hover {
    border-color: rgba(34, 211, 238, 0.55);
}

.hero-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid rgba(34, 211, 238, 0.24);
    border-radius: 32px;
    background: rgba(15, 23, 42, 0.75);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 38%, rgba(2, 6, 23, 0.85));
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-media:hover img {
    transform: scale(1.06);
}

.hero-media span {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 12px;
    color: #e2e8f0;
    font-weight: 750;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(10px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(51, 65, 85, 0.88);
    border-radius: 999px;
    color: #e2e8f0;
    font-size: 32px;
    line-height: 1;
    background: rgba(15, 23, 42, 0.72);
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.hero-prev {
    left: 0;
}

.hero-next {
    right: 0;
}

.hero-dots {
    position: absolute;
    left: 0;
    bottom: 38px;
    display: flex;
    gap: 10px;
}

.hero-dots button {
    width: 34px;
    height: 5px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(100, 116, 139, 0.75);
}

.hero-dots button.active {
    background: #22d3ee;
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.6);
}

.section-wrap,
.page-shell {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

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

.section-wrap.no-top {
    padding-top: 34px;
}

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

.section-head h2 {
    margin: 4px 0 0;
    color: #ffffff;
    font-size: clamp(26px, 4vw, 36px);
    line-height: 1.15;
}

.section-head a {
    color: #22d3ee;
    font-weight: 800;
}

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

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

.movie-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(51, 65, 85, 0.76);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.5);
    box-shadow: 0 24px 68px rgba(8, 145, 178, 0.12);
}

.poster-link {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f172a;
}

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

.poster-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(2, 6, 23, 0.84));
}

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

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

.type-badge,
.year-badge,
.rank-badge {
    position: absolute;
    z-index: 1;
    padding: 5px 9px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 850;
    background: rgba(2, 6, 23, 0.78);
    backdrop-filter: blur(8px);
}

.type-badge {
    left: 12px;
    top: 12px;
    color: #67e8f9;
    border: 1px solid rgba(34, 211, 238, 0.28);
}

.year-badge {
    right: 12px;
    bottom: 12px;
    color: #e2e8f0;
    border: 1px solid rgba(148, 163, 184, 0.24);
}

.rank-badge {
    right: 12px;
    top: 12px;
    color: #001018;
    background: linear-gradient(135deg, #fbbf24, #22d3ee);
}

.movie-info {
    padding: 16px;
}

.movie-info h3 {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card-large .movie-info h3 {
    font-size: 21px;
}

.movie-info h3 a:hover {
    color: #22d3ee;
}

.movie-info p {
    min-height: 45px;
    margin: 0 0 12px;
    color: #94a3b8;
    font-size: 14px;
}

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(51, 65, 85, 0.72);
    color: #94a3b8;
    font-size: 12px;
}

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

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

.category-tile {
    display: block;
    overflow: hidden;
    border: 1px solid rgba(51, 65, 85, 0.78);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
    transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 211, 238, 0.5);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    height: 132px;
    background: #0f172a;
}

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

.category-tile div:last-child {
    padding: 16px;
}

.category-tile h2 {
    margin: 0 0 8px;
    color: #f8fafc;
    font-size: 20px;
}

.category-tile p {
    margin: 0;
    color: #94a3b8;
    font-size: 14px;
}

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

.rank-grid-long {
    margin-top: 22px;
}

.rank-row a {
    display: grid;
    grid-template-columns: 48px 64px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 86px;
    padding: 12px;
    border: 1px solid rgba(51, 65, 85, 0.78);
    border-radius: 20px;
    background: rgba(15, 23, 42, 0.72);
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.rank-row a:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.5);
}

.rank-number {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #001018;
    font-weight: 900;
    background: linear-gradient(135deg, #22d3ee, #a855f7);
}

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

.rank-row strong {
    display: block;
    color: #f8fafc;
    font-size: 16px;
}

.rank-row span:not(.rank-number) {
    display: block;
    color: #94a3b8;
    font-size: 13px;
}

.rank-row em {
    color: #67e8f9;
    font-size: 13px;
    font-style: normal;
    white-space: nowrap;
}

.page-shell {
    padding: 34px 0 72px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 22px;
}

.breadcrumb a:hover {
    color: #22d3ee;
}

.page-hero-small {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border: 1px solid rgba(51, 65, 85, 0.82);
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 20%, rgba(34, 211, 238, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.75));
}

.page-hero-small h1 {
    margin: 10px 0 12px;
    color: #ffffff;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.1;
}

.page-hero-small p {
    max-width: 760px;
    margin: 0;
    color: #cbd5e1;
    font-size: 17px;
}

.filter-panel {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.filter-panel input,
.filter-panel select {
    height: 48px;
    padding: 0 16px;
}

.filter-panel-wide input {
    flex: 1 1 auto;
}

.filter-panel-wide select {
    width: 170px;
}

.hidden-card {
    display: none !important;
}

.detail-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.7fr);
    gap: 26px;
}

.player-shell {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-radius: 28px;
    background: #000000;
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.36);
}

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

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.08), rgba(2, 6, 23, 0.72));
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-icon {
    width: 76px;
    height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    border-radius: 999px;
    color: #001018;
    font-size: 34px;
    background: linear-gradient(135deg, #22d3ee, #60a5fa);
    box-shadow: 0 20px 50px rgba(34, 211, 238, 0.32);
}

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

.watch-title {
    margin-top: 20px;
    padding: 24px;
    border: 1px solid rgba(51, 65, 85, 0.76);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.72);
}

.watch-title h1 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
}

.watch-title p {
    margin: 0;
    color: #cbd5e1;
}

.detail-aside {
    align-self: start;
    padding: 18px;
    border: 1px solid rgba(51, 65, 85, 0.78);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.72);
}

.detail-poster {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    object-fit: cover;
    background: #0f172a;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 12px;
}

.detail-meta span {
    padding: 6px 10px;
    border-radius: 10px;
    color: #67e8f9;
    background: rgba(14, 116, 144, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.22);
}

.detail-aside h2 {
    margin: 0 0 10px;
    color: #f8fafc;
    font-size: 24px;
}

.detail-aside p {
    margin: 0 0 16px;
    color: #94a3b8;
}

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

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

.mini-card {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 8px;
    border-radius: 14px;
    background: rgba(30, 41, 59, 0.72);
}

.mini-card img {
    width: 46px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
}

.mini-card span {
    color: #cbd5e1;
    font-size: 13px;
}

.article-section {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid rgba(51, 65, 85, 0.78);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.72);
}

.article-section h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 26px;
}

.article-section h2:not(:first-child) {
    margin-top: 26px;
}

.article-section p {
    margin: 0;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.9;
    white-space: pre-line;
}

.related-section {
    width: 100%;
}

.site-footer {
    margin-top: 24px;
    border-top: 1px solid rgba(51, 65, 85, 0.78);
    background: rgba(2, 6, 23, 0.86);
}

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

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

.site-footer p {
    margin: 0;
    color: #94a3b8;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #ffffff;
}

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

.footer-links a {
    color: #94a3b8;
    font-size: 14px;
}

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

.footer-bottom {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 28px;
    color: #64748b;
    font-size: 14px;
}

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .hero-slide,
    .detail-panel {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 380px;
    }

    .hero-media img {
        min-height: 380px;
    }

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

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

@media (max-width: 780px) {
    .nav-wrap {
        height: 64px;
    }

    .hero-stage {
        min-height: 0;
        padding: 42px 0 64px;
    }

    .hero-copy h1,
    .hero-copy h2 {
        font-size: 42px;
    }

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

    .hero-media {
        min-height: 300px;
        border-radius: 24px;
    }

    .hero-media img {
        min-height: 300px;
    }

    .hero-arrow {
        display: none;
    }

    .movie-grid,
    .feature-grid,
    .category-grid,
    .rank-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .rank-row a {
        grid-template-columns: 42px 58px minmax(0, 1fr);
    }

    .rank-row em {
        grid-column: 3;
    }

    .page-hero-small,
    .article-section,
    .watch-title {
        padding: 24px;
        border-radius: 22px;
    }

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

    .filter-panel-wide select {
        width: 100%;
    }

    .mini-related {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .brand {
        font-size: 17px;
    }

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

    .hero-actions {
        display: grid;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
    }

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