:root {
    --bg: #fff7ed;
    --bg-soft: #fffbeb;
    --card: #ffffff;
    --text: #1f2937;
    --muted: #6b7280;
    --line: #fde68a;
    --amber: #f59e0b;
    --orange: #f97316;
    --red: #ef4444;
    --purple: #8b5cf6;
    --shadow: 0 18px 55px rgba(146, 64, 14, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: linear-gradient(135deg, #fff7ed 0%, #fffbeb 45%, #fff7ed 100%);
    min-height: 100vh;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.18);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 72px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.brand-mark {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
    transition: transform 0.3s ease;
}

.brand:hover .brand-mark,
.footer-brand:hover .brand-mark {
    transform: rotate(10deg) scale(1.04);
}

.brand-text {
    font-size: 22px;
    background: linear-gradient(90deg, #d97706, var(--orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.nav-link {
    font-weight: 650;
    color: #374151;
    transition: color 0.2s ease;
}

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

.header-search,
.mobile-search,
.search-page-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-search input,
.mobile-search input,
.search-page-form input,
.site-filter-input {
    border: 1px solid rgba(245, 158, 11, 0.34);
    background: #ffffff;
    color: var(--text);
    outline: none;
    border-radius: 999px;
    padding: 11px 16px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
    width: 220px;
}

.header-search input:focus,
.mobile-search input:focus,
.search-page-form input:focus,
.site-filter-input:focus {
    border-color: var(--amber);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.header-search button,
.mobile-search button,
.search-page-form button,
.clear-filter,
.primary-button,
.secondary-button {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-search button,
.mobile-search button,
.search-page-form button,
.primary-button {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.22);
}

.header-search button,
.mobile-search button {
    padding: 10px 18px;
}

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
}

.secondary-button {
    color: #d97706;
    background: #fff7ed;
    border: 1px solid rgba(245, 158, 11, 0.28);
}

.header-search button:hover,
.mobile-search button:hover,
.search-page-form button:hover,
.primary-button:hover,
.secondary-button:hover,
.clear-filter:hover {
    transform: translateY(-1px);
}

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

.mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #9a3412;
    border-radius: 999px;
}

.mobile-panel {
    padding: 0 24px 20px;
    border-top: 1px solid rgba(245, 158, 11, 0.14);
    background: #ffffff;
}

.mobile-panel nav {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.mobile-link {
    padding: 12px 0;
    font-weight: 700;
    color: #374151;
    border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 560px;
    overflow: hidden;
    background: #111827;
}

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

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

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

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(17, 24, 39, 0.86) 0%, rgba(17, 24, 39, 0.62) 48%, rgba(17, 24, 39, 0.10) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    width: min(680px, calc(100% - 48px));
    transform: translateY(-50%);
    color: #ffffff;
}

.hero-kicker,
.detail-kicker,
.page-hero span,
.player-heading span {
    display: inline-flex;
    align-items: center;
    color: #fbbf24;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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

.hero-content p {
    margin: 0 0 24px;
    max-width: 640px;
    color: #e5e7eb;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-meta span {
    padding: 9px 14px;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.hero-meta span:first-child {
    background: rgba(245, 158, 11, 0.92);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.42);
    font-size: 42px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.66);
    transform: translateY(-50%) scale(1.04);
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

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

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

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

.content-section,
.page-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 58px 24px;
}

.no-padding-top {
    padding-top: 0;
}

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    color: #1f2937;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--muted);
}

.section-link {
    flex-shrink: 0;
    color: #d97706;
    font-weight: 800;
}

.scroll-row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 340px);
    gap: 24px;
    padding-bottom: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.scroll-row .movie-card {
    scroll-snap-align: start;
}

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

.movie-card {
    overflow: hidden;
    border-radius: 20px;
    background: var(--card);
    box-shadow: 0 8px 28px rgba(146, 64, 14, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

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

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

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

.poster-badge,
.poster-year {
    position: absolute;
    top: 12px;
    z-index: 2;
    border-radius: 999px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 6px 10px;
    background: rgba(245, 158, 11, 0.94);
}

.poster-badge {
    left: 12px;
}

.poster-year {
    right: 12px;
    background: rgba(17, 24, 39, 0.72);
}

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

.movie-title {
    display: -webkit-box;
    min-height: 50px;
    color: #111827;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-title:hover {
    color: #d97706;
}

.movie-desc {
    display: -webkit-box;
    min-height: 58px;
    margin: 10px 0 14px;
    color: var(--muted);
    line-height: 1.7;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.movie-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #92400e;
    font-size: 13px;
    overflow: hidden;
}

.movie-meta span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tag-row span {
    padding: 6px 9px;
    color: #9a3412;
    font-size: 12px;
    font-weight: 700;
    border-radius: 999px;
    background: #fffbeb;
    border: 1px solid rgba(245, 158, 11, 0.18);
}

.glass-section,
.category-overview-card {
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

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

.category-card {
    display: block;
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(245, 158, 11, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(146, 64, 14, 0.12);
}

.category-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 16px;
}

.category-thumbs img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    background: #fef3c7;
}

.category-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 6px;
}

.category-card span {
    color: #d97706;
    font-weight: 800;
}

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

.split-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
}

.ranking-list,
.compact-list {
    display: grid;
    gap: 12px;
}

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

.compact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 28px rgba(146, 64, 14, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.compact-card:hover {
    transform: translateX(4px);
    box-shadow: 0 16px 36px rgba(146, 64, 14, 0.12);
}

.compact-card img {
    width: 92px;
    height: 62px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 12px;
    background: #fef3c7;
}

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

.compact-card strong {
    margin-bottom: 6px;
    color: #111827;
    font-size: 15px;
    line-height: 1.4;
}

.compact-card em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
}

.rank-num {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--red), var(--orange));
}

.site-footer {
    margin-top: 40px;
    border-top: 1px solid rgba(245, 158, 11, 0.18);
    background: rgba(255, 255, 255, 0.78);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 36px 24px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.footer-inner p,
.copyright {
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-weight: 700;
    color: #92400e;
}

.copyright {
    margin: 0;
    padding: 0 24px 30px;
    text-align: center;
    font-size: 14px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    margin: 22px 0 34px;
    padding: clamp(42px, 7vw, 78px);
    border-radius: 30px;
    color: #ffffff;
    background: linear-gradient(135deg, #f59e0b, #f97316 52%, #ef4444);
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin: 12px 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.12;
}

.page-hero p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.8;
}

.soft-hero {
    background: linear-gradient(135deg, #f59e0b, #f97316);
}

.category-hero {
    background: linear-gradient(135deg, #d97706, #ea580c, #f59e0b);
}

.ranking-hero {
    background: linear-gradient(135deg, #ef4444, #f97316, #f59e0b);
}

.search-hero {
    background: linear-gradient(135deg, #8b5cf6, #f97316, #f59e0b);
}

.filter-panel {
    margin: -8px 0 34px;
    padding: 20px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(146, 64, 14, 0.09);
}

.filter-search-line {
    display: flex;
    gap: 12px;
}

.site-filter-input {
    flex: 1;
    width: 100%;
}

.clear-filter {
    padding: 0 20px;
    color: #9a3412;
    background: #fffbeb;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.filter-chips button {
    border: none;
    cursor: pointer;
    padding: 9px 13px;
    border-radius: 999px;
    color: #92400e;
    font-weight: 700;
    background: #fff7ed;
}

.filter-chips button.is-active {
    color: #ffffff;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.filter-empty,
.search-summary {
    color: var(--muted);
    font-weight: 700;
}

.search-page-form {
    max-width: 720px;
    margin-top: 24px;
}

.search-page-form input {
    flex: 1;
    min-width: 0;
    padding: 15px 18px;
}

.search-page-form button {
    padding: 15px 26px;
}

.search-summary {
    margin-bottom: 22px;
    font-size: 18px;
}

.overview-stack {
    display: grid;
    gap: 28px;
}

.category-overview-card {
    padding: 26px;
}

.category-overview-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.category-overview-head h2 {
    margin: 0 0 8px;
}

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

.detail-page {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin: 16px 0 24px;
    color: var(--muted);
    font-weight: 700;
}

.breadcrumb a {
    color: #d97706;
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(240px, 360px) 1fr;
    gap: 36px;
    align-items: center;
    padding: 34px;
    border-radius: 30px;
    color: #ffffff;
    background: radial-gradient(circle at 18% 20%, rgba(245, 158, 11, 0.32), transparent 30%), linear-gradient(135deg, #111827 0%, #431407 100%);
    box-shadow: var(--shadow);
}

.detail-poster {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
    background: #fef3c7;
}

.detail-poster img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}

.detail-info h1 {
    margin: 14px 0 16px;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.1;
}

.detail-info p {
    max-width: 760px;
    margin: 0 0 22px;
    color: #e5e7eb;
    font-size: 18px;
    line-height: 1.8;
}

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

.detail-meta-grid span {
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
}

.detail-meta-grid strong {
    display: block;
    margin-bottom: 5px;
    color: #fbbf24;
    font-size: 13px;
}

.detail-tags span {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.16);
}

.player-section {
    margin-top: 32px;
    padding: 28px;
    border-radius: 30px;
    background: #111827;
    box-shadow: var(--shadow);
}

.player-heading {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    color: #ffffff;
}

.player-heading h2 {
    margin: 6px 0 0;
    font-size: clamp(24px, 4vw, 38px);
}

.player-heading em {
    color: #fbbf24;
    font-style: normal;
    font-weight: 800;
}

.player-shell {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #000000;
}

.movie-player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
}

.player-start {
    position: absolute;
    left: 50%;
    top: 50%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    border-radius: 999px;
    padding: 16px 26px;
    color: #ffffff;
    font-weight: 900;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 18px 42px rgba(249, 115, 22, 0.33);
    cursor: pointer;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-start:hover {
    transform: translate(-50%, -50%) scale(1.04);
}

.player-shell.is-playing .player-start {
    opacity: 0;
    pointer-events: none;
}

.detail-content {
    display: grid;
    gap: 22px;
    margin-top: 32px;
}

.detail-content article {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(146, 64, 14, 0.08);
}

.detail-content h2 {
    margin: 0 0 14px;
    font-size: 26px;
}

.detail-content p {
    margin: 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.9;
}

.info-table {
    display: grid;
    grid-template-columns: 140px 1fr;
    overflow: hidden;
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 18px;
}

.info-table span,
.info-table strong {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.14);
}

.info-table span:nth-last-child(2),
.info-table strong:last-child {
    border-bottom: none;
}

.info-table span {
    color: #92400e;
    background: #fffbeb;
}

.related-section {
    padding-left: 0;
    padding-right: 0;
}

[hidden] {
    display: none !important;
}

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

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

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

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

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

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

@media (max-width: 760px) {
    .header-inner {
        min-height: 64px;
        padding: 0 16px;
    }

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

    .hero {
        min-height: 620px;
        height: 78vh;
    }

    .hero-content {
        left: 20px;
        width: calc(100% - 40px);
    }

    .hero-meta span {
        padding: 7px 10px;
        font-size: 13px;
    }

    .hero-arrow {
        top: auto;
        bottom: 80px;
        width: 44px;
        height: 44px;
        font-size: 32px;
    }

    .hero-prev {
        left: 20px;
    }

    .hero-next {
        right: 20px;
    }

    .content-section,
    .page-shell,
    .detail-page {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section-heading,
    .category-overview-head,
    .player-heading,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .movie-grid,
    .ranking-grid,
    .category-grid,
    .compact-list.three-columns {
        grid-template-columns: 1fr;
    }

    .scroll-row {
        grid-auto-columns: minmax(250px, 82vw);
    }

    .detail-hero {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .detail-poster {
        max-width: 320px;
    }

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

    .filter-search-line,
    .search-page-form {
        flex-direction: column;
    }

    .clear-filter,
    .search-page-form button {
        width: 100%;
        padding: 13px 18px;
    }

    .player-section {
        padding: 16px;
        border-radius: 22px;
    }

    .player-start {
        width: max-content;
        max-width: calc(100% - 32px);
    }
}
