:root {
    --bg: #f9fafb;
    --text: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --panel: #ffffff;
    --orange: #f97316;
    --red: #ef4444;
    --pink: #ec4899;
    --amber: #facc15;
    --dark: #111827;
    --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    --soft-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 68px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    white-space: nowrap;
}

.brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 8px 18px rgba(239, 68, 68, 0.25);
    font-size: 14px;
}

.brand-text {
    font-size: 24px;
    background: linear-gradient(90deg, #ea580c, #dc2626);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
}

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

.nav-link {
    color: #374151;
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange);
}

.header-search {
    width: 260px;
    display: flex;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    overflow: hidden;
    background: #ffffff;
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 10px 12px 10px 16px;
    background: transparent;
}

.header-search button,
.mobile-search button,
.search-page-form button,
.big-search button {
    border: 0;
    color: #ffffff;
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #fff7ed;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: #ea580c;
    border-radius: 10px;
}

.mobile-menu {
    display: none;
    padding: 0 16px 18px;
    border-top: 1px solid #f3f4f6;
    background: #ffffff;
}

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

.mobile-link {
    font-weight: 800;
    color: #374151;
    padding: 6px 0;
}

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

.mobile-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 10px 14px;
}

.hero {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: linear-gradient(135deg, #f97316, #ef4444 52%, #ec4899);
}

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

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

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

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 22% 26%, rgba(250, 204, 21, 0.32), transparent 28%), linear-gradient(90deg, rgba(15, 23, 42, 0.76), rgba(15, 23, 42, 0.32), rgba(15, 23, 42, 0.72));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    filter: saturate(1.08);
}

.hero-content {
    position: relative;
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 360px;
    align-items: center;
    gap: 60px;
    color: #ffffff;
}

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

.eyebrow,
.section-kicker,
.mini-rank {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border-radius: 999px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff7ed;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.hero h1 {
    margin: 18px 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.hero h1 span {
    color: var(--amber);
}

.hero p {
    max-width: 680px;
    margin: 0 0 24px;
    font-size: clamp(18px, 2vw, 24px);
    color: rgba(255, 255, 255, 0.9);
}

.hero-tags,
.detail-tags,
.quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.hero-tags span,
.detail-tags a,
.quick-tags a {
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
}

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

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 999px;
    padding: 0 26px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-btn {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 16px 30px rgba(239, 68, 68, 0.28);
}

.secondary-btn {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.13);
}

.primary-btn:hover,
.secondary-btn:hover,
.movie-card:hover,
.category-card:hover,
.horizontal-card:hover {
    transform: translateY(-3px);
}

.hero-poster {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.22);
    aspect-ratio: 2 / 3;
}

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

.hero-poster span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    color: #ffffff;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(0, 0, 0, 0.68);
    font-weight: 800;
}

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

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
}

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

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

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    transition: width 0.2s ease, background 0.2s ease;
}

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

.section {
    padding: 66px 0;
}

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

.section-kicker {
    margin-bottom: 10px;
    color: #ea580c;
    background: #ffedd5;
}

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

.section-head p {
    margin: 8px 0 0;
    color: var(--muted);
    max-width: 700px;
}

.section-head > a {
    color: #ea580c;
    font-weight: 900;
    white-space: nowrap;
}

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

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

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

.movie-card {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
    box-shadow: var(--shadow);
}

.poster-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #fed7aa, #fecaca);
}

.movie-card.large .poster-wrap {
    aspect-ratio: 16 / 9;
}

.movie-card.compact .poster-wrap {
    aspect-ratio: 16 / 10;
}

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

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

.poster-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.62));
}

.card-category,
.card-duration,
.rank-badge {
    position: absolute;
    z-index: 2;
    border-radius: 999px;
    padding: 5px 10px;
    color: #ffffff;
    font-weight: 900;
    font-size: 12px;
}

.card-category {
    left: 12px;
    top: 12px;
    background: var(--orange);
}

.card-duration {
    right: 12px;
    bottom: 12px;
    background: rgba(0, 0, 0, 0.72);
}

.rank-badge {
    right: 12px;
    top: 12px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
}

.card-body {
    display: grid;
    gap: 7px;
    padding: 16px;
}

.card-body strong {
    font-size: 18px;
    line-height: 1.35;
}

.card-line,
.card-meta {
    color: var(--muted);
    font-size: 14px;
}

.card-line {
    min-height: 44px;
}

.tinted-section {
    background: linear-gradient(135deg, #fff7ed, #fef2f2);
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 34px;
    align-items: start;
}

.rank-list,
.rank-board {
    display: grid;
    gap: 14px;
}

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

.horizontal-card {
    display: flex;
    gap: 16px;
    padding: 14px;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.horizontal-card:hover {
    box-shadow: var(--shadow);
}

.horizontal-poster {
    flex: 0 0 142px;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    background: #fed7aa;
}

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

.horizontal-body {
    min-width: 0;
    display: grid;
    align-content: center;
    gap: 5px;
}

.horizontal-body strong {
    font-size: 18px;
}

.horizontal-body span,
.horizontal-body em {
    color: var(--muted);
    font-size: 14px;
    font-style: normal;
}

.mini-rank {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.search-panel {
    position: sticky;
    top: 92px;
    padding: 30px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #7f1d1d);
    box-shadow: var(--shadow);
}

.search-panel h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

.search-panel p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.78);
}

.big-search,
.search-page-form {
    display: flex;
    overflow: hidden;
    border-radius: 999px;
    background: #ffffff;
}

.big-search input,
.search-page-form input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    padding: 14px 18px;
}

.quick-tags a {
    background: rgba(255, 255, 255, 0.16);
}

.category-strip:nth-of-type(even) {
    background: #ffffff;
}

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

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 95px 0 88px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red) 54%, var(--pink));
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-image, none) center / cover no-repeat;
    opacity: 0.22;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 25%, rgba(250, 204, 21, 0.24), transparent 30%), rgba(17, 24, 39, 0.30);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    max-width: 880px;
    margin: 16px 0 12px;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 19px;
}

.compact-hero,
.search-hero,
.rankings-hero {
    min-height: 320px;
}

.crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

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

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

.category-card {
    overflow: hidden;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 220px 1fr;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card:hover {
    box-shadow: var(--shadow);
}

.category-art {
    min-height: 210px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    padding: 4px;
    background: #fed7aa;
}

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

.category-art img:first-child {
    grid-row: span 2;
}

.category-info {
    display: grid;
    align-content: center;
    gap: 9px;
    padding: 24px;
}

.category-info strong {
    font-size: 28px;
}

.category-info em {
    color: #ea580c;
    font-style: normal;
    font-weight: 900;
}

.category-info span {
    color: var(--muted);
}

.filter-bar,
.search-tools {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
}

.filter-chip {
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    color: #9a3412;
    background: #ffedd5;
    font-weight: 900;
    cursor: pointer;
}

.filter-chip.active,
.filter-chip:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
}

.result-line {
    margin-bottom: 20px;
    color: var(--muted);
    font-weight: 800;
}

.search-tools select {
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 10px 16px;
    color: #374151;
    background: #ffffff;
    outline: 0;
}

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

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

.detail-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.94), rgba(17, 24, 39, 0.66), rgba(17, 24, 39, 0.94));
}

.detail-backdrop img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(4px) saturate(1.2);
    transform: scale(1.04);
}

.detail-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    gap: 42px;
    align-items: center;
}

.detail-cover {
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 2 / 3;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

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

.detail-info h1 {
    margin: 18px 0 14px;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.detail-info p {
    max-width: 860px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 19px;
}

.detail-tags a {
    background: rgba(255, 255, 255, 0.14);
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0;
}

.detail-meta div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
}

.detail-meta dt {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.detail-meta dd {
    margin: 0;
    font-weight: 900;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    aspect-ratio: 16 / 9;
    background: #020617;
    box-shadow: var(--shadow);
}

.player-shell video {
    width: 100%;
    height: 100%;
    display: block;
    background: #020617;
}

.play-layer {
    position: absolute;
    inset: 0;
    z-index: 4;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.18), rgba(2, 6, 23, 0.58));
}

.play-layer span {
    width: 86px;
    height: 86px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 5px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 16px 36px rgba(239, 68, 68, 0.36);
    font-size: 36px;
}

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

.player-shell.playing .play-layer {
    opacity: 0;
    pointer-events: none;
}

.player-message {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 5;
    color: #ffffff;
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(0, 0, 0, 0.56);
    font-size: 13px;
    display: none;
}

.player-message.show {
    display: block;
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.story-card {
    padding: 28px;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: var(--soft-shadow);
}

.story-card h2 {
    margin: 0 0 14px;
    font-size: 28px;
}

.story-card p {
    margin: 0;
    color: #374151;
}

.site-footer {
    color: #d1d5db;
    background: linear-gradient(135deg, #111827, #1f2937 54%, #111827);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 34px;
    padding: 52px 0;
}

.footer-brand {
    color: #ffffff;
    font-size: 21px;
    margin-bottom: 16px;
}

.site-footer p {
    margin: 0;
    color: #9ca3af;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: #9ca3af;
}

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

.back-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 55;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: var(--soft-shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

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

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

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

    .hero-content {
        grid-template-columns: 1fr 270px;
        gap: 28px;
    }

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

    .featured-grid,
    .rank-board,
    .category-grid,
    .split-section,
    .detail-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .search-panel {
        position: static;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .brand-text {
        font-size: 20px;
    }

    .hero {
        height: auto;
        min-height: 680px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        padding: 70px 0 110px;
    }

    .hero-poster {
        width: min(260px, 76vw);
        justify-self: start;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section {
        padding: 48px 0;
    }

    .section-head {
        display: grid;
        align-items: start;
    }

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

    .card-body {
        padding: 13px;
    }

    .card-body strong {
        font-size: 16px;
    }

    .card-line {
        min-height: 0;
    }

    .rank-board {
        grid-template-columns: 1fr;
    }

    .horizontal-card {
        gap: 12px;
        padding: 12px;
    }

    .horizontal-poster {
        flex-basis: 112px;
    }

    .category-card {
        grid-template-columns: 1fr;
    }

    .category-art {
        min-height: 180px;
    }

    .page-hero {
        padding: 72px 0 64px;
    }

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

    .detail-cover {
        width: min(270px, 72vw);
    }

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

    .story-card {
        padding: 22px;
    }

    .search-page-form,
    .big-search {
        border-radius: 24px;
        flex-direction: column;
    }

    .search-page-form button,
    .big-search button {
        padding: 12px 16px;
    }
}

@media (max-width: 480px) {
    .movie-grid,
    .featured-grid,
    .small-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .primary-btn,
    .secondary-btn {
        width: 100%;
    }

    .primary-btn,
    .secondary-btn {
        padding: 0 18px;
    }

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