* {
    box-sizing: border-box;
}

:root {
    --bg: #fff7ed;
    --ink: #0f172a;
    --muted: #64748b;
    --soft: #f8fafc;
    --line: rgba(15, 23, 42, 0.1);
    --orange: #f97316;
    --pink: #ec4899;
    --rose: #f43f5e;
    --slate: #111827;
    --card: #ffffff;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.13), transparent 30rem),
        radial-gradient(circle at top right, rgba(236, 72, 153, 0.12), transparent 30rem),
        linear-gradient(180deg, #fff7ed 0%, #ffffff 42%, #fff1f2 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, #fb923c 0%, #f472b6 55%, #fb7185 100%);
    box-shadow: 0 16px 35px rgba(244, 63, 94, 0.26);
}

.main-nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 68px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand {
    color: #ffffff;
    font-size: 26px;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--orange);
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links,
.nav-cats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link,
.nav-cats a {
    border-radius: 14px;
    color: #ffffff;
    transition: 0.22s ease;
}

.nav-link {
    padding: 9px 14px;
    font-weight: 700;
}

.nav-cats a {
    padding: 7px 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
}

.nav-link:hover,
.nav-cats a:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.92);
    color: var(--orange);
    box-shadow: 0 8px 22px rgba(255, 255, 255, 0.25);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #ffffff;
}

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

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

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

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

.hero-bg,
.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.04);
}

.hero-mask {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.66) 45%, rgba(15, 23, 42, 0.16) 100%),
        radial-gradient(circle at 22% 25%, rgba(249, 115, 22, 0.44), transparent 28rem),
        radial-gradient(circle at 70% 55%, rgba(236, 72, 153, 0.38), transparent 26rem);
}

.hero-content {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 60px;
    padding: 96px 0 90px;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff7ed;
    background: linear-gradient(90deg, rgba(249, 115, 22, 0.95), rgba(236, 72, 153, 0.95));
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.25);
}

.hero h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 74px);
    line-height: 1.04;
    letter-spacing: -0.07em;
}

.hero p,
.page-hero p,
.lead-text {
    max-width: 760px;
    margin: 24px 0 0;
    font-size: clamp(17px, 2.2vw, 23px);
    color: rgba(255, 255, 255, 0.9);
}

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

.hero-tags,
.detail-tags {
    margin-top: 24px;
}

.hero-tag,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.hero-tag {
    padding: 6px 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(12px);
}

.tag {
    padding: 5px 10px;
    color: #be123c;
    background: #fff1f2;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-top: 32px;
}

.primary-btn,
.ghost-btn,
.intro-strip a,
.section-heading a,
.category-card em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 850;
    transition: 0.22s ease;
}

.primary-btn {
    padding: 0 24px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 16px 35px rgba(249, 115, 22, 0.3);
}

.ghost-btn {
    padding: 0 22px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(14px);
}

.primary-btn:hover,
.ghost-btn:hover,
.intro-strip a:hover,
.section-heading a:hover,
.category-card:hover em {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.42);
    transform: rotate(2deg);
}

.hero-poster:after,
.movie-card .poster-link:after,
.detail-poster:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(15, 23, 42, 0.62));
    pointer-events: none;
}

.hero-poster img,
.movie-card img,
.detail-poster img {
    width: 100%;
    aspect-ratio: 2 / 3;
    object-fit: cover;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 18px;
    transform: translateX(-50%);
}

.hero-arrow,
.hero-dot {
    border: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
    transition: 0.2s ease;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    font-size: 32px;
    line-height: 1;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border-radius: 999px;
}

.hero-dot.active,
.hero-arrow:hover {
    background: #ffffff;
    color: var(--orange);
}

.intro-strip {
    width: min(1180px, calc(100% - 32px));
    margin: -36px auto 0;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(90deg, #f97316, #ec4899, #f43f5e);
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.24);
}

.intro-strip strong {
    display: block;
    font-size: 22px;
}

.intro-strip span {
    color: rgba(255, 255, 255, 0.86);
}

.intro-strip a {
    flex: 0 0 auto;
    padding: 0 20px;
    color: var(--orange);
    background: #ffffff;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.section-heading p {
    max-width: 680px;
    margin: 10px 0 0;
    color: var(--muted);
}

.section-heading a {
    flex: 0 0 auto;
    padding: 0 18px;
    color: var(--orange);
    background: #ffffff;
    box-shadow: var(--shadow);
}

.search-panel {
    display: grid;
    grid-template-columns: minmax(280px, 460px) 1fr;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(249, 115, 22, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    background: #fff7ed;
    border: 1px solid rgba(249, 115, 22, 0.16);
}

.search-box span {
    color: var(--orange);
    font-size: 24px;
}

.search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.filter-pill {
    min-height: 40px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    color: #be123c;
    background: #fff1f2;
    font-weight: 750;
    transition: 0.2s ease;
}

.filter-pill:hover,
.filter-pill.active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.2);
}

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

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

.movie-card {
    overflow: hidden;
    border-radius: 26px;
    background: var(--card);
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(244, 63, 94, 0.16);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: #111827;
}

.poster-link img {
    transition: transform 0.5s ease;
}

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

.play-chip,
.rank-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #ffffff;
    font-weight: 850;
}

.play-chip {
    right: 12px;
    bottom: 12px;
    min-height: 34px;
    padding: 0 12px;
    background: linear-gradient(90deg, var(--orange), var(--pink));
}

.rank-badge {
    left: 12px;
    top: 12px;
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(12px);
}

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

.meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

.movie-card h2 {
    margin: 0;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.movie-card h2 a:hover {
    color: var(--orange);
}

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

.card-large h2 {
    font-size: 22px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.rank-panel {
    position: sticky;
    top: 92px;
    padding: 22px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.rank-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.rank-head span {
    padding: 5px 9px;
    border-radius: 999px;
    color: #ffffff;
    background: var(--rose);
    font-size: 12px;
    font-weight: 900;
}

.rank-head h2 {
    margin: 0 auto 0 0;
    font-size: 24px;
}

.rank-head a {
    color: var(--orange);
    font-weight: 850;
}

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

.compact-card {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px;
    align-items: center;
    padding: 8px;
    border-radius: 18px;
    transition: 0.2s ease;
}

.compact-card:hover {
    background: #fff7ed;
}

.compact-card img {
    width: 64px;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    border-radius: 14px;
}

.compact-card strong,
.compact-card em {
    display: block;
}

.compact-card strong {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.35;
}

.compact-card em {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

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

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 210px;
    padding: 22px;
    border-radius: 28px;
    color: #ffffff;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.28), transparent 9rem),
        linear-gradient(135deg, #f97316, #ec4899 58%, #f43f5e);
    box-shadow: 0 18px 45px rgba(236, 72, 153, 0.18);
    transition: 0.22s ease;
}

.category-card:nth-child(even) {
    background:
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.26), transparent 9rem),
        linear-gradient(135deg, #fb7185, #f472b6 58%, #fb923c);
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 900;
}

.category-card h2 {
    margin: 24px 0 10px;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.87);
}

.category-card em {
    width: max-content;
    margin-top: 24px;
    padding: 0 16px;
    color: var(--orange);
    background: #ffffff;
    font-style: normal;
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    color: #ffffff;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.22), transparent 18rem),
        linear-gradient(120deg, #111827, #f97316 48%, #ec4899 100%);
}

.page-hero > div {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0;
}

.page-hero.small-hero {
    min-height: 330px;
}

.category-hero,
.rank-hero {
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22rem),
        linear-gradient(135deg, #f97316, #ec4899 58%, #111827);
}

.detail-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background: #111827;
}

.detail-backdrop {
    position: absolute;
    inset: 0;
    opacity: 0.32;
}

.detail-backdrop:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.72)),
        radial-gradient(circle at 80% 30%, rgba(236, 72, 153, 0.36), transparent 22rem);
}

.detail-layout {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    padding: 76px 0;
}

.detail-poster {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    box-shadow: 0 28px 75px rgba(0, 0, 0, 0.42);
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.detail-copy h1 {
    max-width: 840px;
}

.watch-section {
    padding-top: 70px;
}

.video-frame {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #020617;
    box-shadow: 0 28px 75px rgba(15, 23, 42, 0.24);
}

.video-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020617;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    gap: 14px;
    border: 0;
    color: #ffffff;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.66));
    cursor: pointer;
}

.play-overlay span {
    width: 86px;
    height: 86px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(90deg, var(--orange), var(--pink));
    box-shadow: 0 20px 45px rgba(236, 72, 153, 0.32);
    font-size: 36px;
    padding-left: 5px;
}

.play-overlay strong {
    font-size: 20px;
}

.play-overlay.is-hidden {
    display: none;
}

.detail-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.content-card {
    padding: 26px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
}

.content-card h2 {
    margin: 0 0 14px;
    font-size: 26px;
    letter-spacing: -0.03em;
}

.content-card p {
    margin: 0;
    color: #475569;
    font-size: 16px;
}

.info-card {
    grid-column: 1 / -1;
}

.info-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.info-card dl div {
    padding: 14px;
    border-radius: 16px;
    background: #fff7ed;
}

.info-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.info-card dd {
    margin: 4px 0 0;
    color: var(--ink);
    font-weight: 800;
}

.site-footer {
    margin-top: 48px;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 58%, #111827 100%);
}

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

.footer-logo {
    margin-bottom: 14px;
    font-size: 25px;
    color: #fb923c;
}

.footer-brand p,
.footer-group p,
.footer-group a {
    color: #cbd5e1;
}

.footer-group h2 {
    margin: 0 0 16px;
    color: #fb923c;
    font-size: 17px;
}

.footer-group ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-group a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 18px 16px;
    color: #94a3b8;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

[data-filter-card].is-hidden {
    display: none;
}

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

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

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

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

    .rank-panel {
        position: static;
    }
}

@media (max-width: 820px) {
    .main-nav {
        min-height: 62px;
    }

    .brand {
        font-size: 22px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-panel {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 76px;
        display: none;
        padding: 18px;
        border-radius: 24px;
        background: rgba(15, 23, 42, 0.94);
        box-shadow: 0 18px 45px rgba(15, 23, 42, 0.34);
        backdrop-filter: blur(18px);
    }

    body.menu-open .nav-panel {
        display: block;
    }

    .nav-links {
        align-items: stretch;
        flex-direction: column;
    }

    .nav-cats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 12px;
    }

    .hero {
        min-height: 760px;
    }

    .hero-content,
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hero-poster,
    .detail-poster {
        max-width: 270px;
    }

    .hero-controls {
        bottom: 20px;
    }

    .intro-strip,
    .section-heading,
    .search-panel {
        align-items: stretch;
        flex-direction: column;
        display: flex;
    }

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

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

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

    .detail-text,
    .info-card dl,
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .hero h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 38px;
    }

    .hero {
        min-height: 700px;
    }

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

    .page-section {
        padding: 40px 0;
    }

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

    .content-card,
    .movie-card-body,
    .rank-panel,
    .search-panel {
        padding: 18px;
    }

    .intro-strip {
        margin-top: -18px;
        padding: 20px;
    }
}
