:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --panel: rgba(15, 23, 42, 0.72);
    --panel-strong: rgba(30, 41, 59, 0.9);
    --line: rgba(148, 163, 184, 0.18);
    --line-strong: rgba(148, 163, 184, 0.34);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --accent: #f8fafc;
    --gold: #facc15;
    --blue: #60a5fa;
    --red: #fb7185;
    --green: #34d399;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.14), transparent 35rem),
        radial-gradient(circle at top right, rgba(244, 63, 94, 0.10), transparent 32rem),
        linear-gradient(180deg, #020617 0%, #0f172a 42%, #020617 100%);
    color: var(--text);
}

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

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

button,
input {
    font: inherit;
}

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

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #475569, #0f172a);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 10px 30px rgba(15, 23, 42, 0.5);
    font-weight: 800;
}

.brand-text {
    display: grid;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 20px;
    letter-spacing: -0.03em;
}

.brand-text small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link,
.mobile-link {
    border-radius: 12px;
    color: var(--muted-strong);
    transition: 0.2s ease;
}

.nav-link {
    padding: 10px 16px;
    font-size: 14px;
}

.nav-link:hover,
.nav-link.active,
.mobile-link:hover,
.mobile-link.active {
    background: rgba(51, 65, 85, 0.62);
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.65);
    color: #fff;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

.mobile-nav {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 12px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.92);
}

.mobile-nav.open {
    display: grid;
    gap: 4px;
}

.mobile-link {
    padding: 12px 14px;
}

.hero-slider {
    position: relative;
    min-height: clamp(620px, 78vh, 820px);
    overflow: hidden;
    background: #020617;
}

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

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

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.76) 42%, rgba(2, 6, 23, 0.34) 100%),
        linear-gradient(0deg, #020617 0%, rgba(2, 6, 23, 0.22) 36%, rgba(2, 6, 23, 0.72) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: clamp(620px, 78vh, 820px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 0;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    border: 1px solid rgba(203, 213, 225, 0.22);
    border-radius: 999px;
    padding: 8px 14px;
    color: var(--muted-strong);
    background: rgba(15, 23, 42, 0.58);
    backdrop-filter: blur(12px);
    font-size: 13px;
    letter-spacing: 0.16em;
}

.hero-content h1,
.page-hero h1 {
    max-width: 820px;
    margin: 22px 0 16px;
    font-size: clamp(42px, 8vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p {
    max-width: 680px;
    margin: 0;
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.8;
}

.hero-meta,
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
    color: var(--muted-strong);
    font-size: 14px;
}

.hero-meta span,
.detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    border: 1px solid var(--line);
}

.hero-meta span:first-child,
.detail-meta span:first-child {
    color: #fde68a;
    border-color: rgba(250, 204, 21, 0.28);
    background: rgba(250, 204, 21, 0.12);
}

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

.hero-tags span,
.card-tags span,
.tag-cloud a {
    border-radius: 999px;
    padding: 7px 11px;
    color: #dbeafe;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.18);
    font-size: 12px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.primary-btn,
.ghost-btn,
.search-row button,
.side-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    padding: 0 20px;
    font-weight: 700;
    transition: 0.22s ease;
}

.primary-btn,
.search-row button {
    background: #f8fafc;
    color: #020617;
    border: 0;
}

.primary-btn:hover,
.search-row button:hover,
.side-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(248, 250, 252, 0.16);
}

.ghost-btn {
    border: 1px solid var(--line-strong);
    color: #fff;
    background: rgba(15, 23, 42, 0.62);
}

.ghost-btn:hover {
    border-color: rgba(248, 250, 252, 0.5);
    background: rgba(30, 41, 59, 0.8);
}

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

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    transition: 0.22s ease;
}

.hero-dot.active {
    width: 38px;
    background: #fff;
}

.search-band,
.content-section,
.page-main,
.ranking-list {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.search-band {
    margin-top: -46px;
    position: relative;
    z-index: 8;
}

.search-form,
.inline-filter {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.88);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-form label {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 14px;
}

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

.search-row input,
.inline-filter input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    outline: none;
    padding: 14px 16px;
    color: var(--text);
    background: rgba(2, 6, 23, 0.68);
}

.search-row input:focus,
.inline-filter input:focus {
    border-color: rgba(96, 165, 250, 0.62);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.14);
}

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

.highlighted-section {
    margin-top: 72px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 34px;
    background: rgba(15, 23, 42, 0.52);
    box-shadow: var(--shadow);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    margin-bottom: 26px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 4vw, 38px);
    letter-spacing: -0.04em;
}

.section-heading p {
    max-width: 520px;
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.section-heading span {
    flex: 1;
    height: 1px;
    margin-bottom: 18px;
    background: linear-gradient(90deg, var(--line-strong), transparent);
}

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

.movie-card {
    min-width: 0;
}

.poster-link {
    display: block;
}

.poster-wrap {
    position: relative;
    display: block;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--bg-soft);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

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

.poster-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
    transition: 0.26s ease;
}

.play-icon,
.play-dot {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
}

.poster-link:hover .poster-wrap img,
.horizontal-link:hover img,
.category-card:hover img {
    transform: scale(1.06);
}

.poster-link:hover .poster-overlay {
    opacity: 1;
}

.score-badge {
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 999px;
    padding: 5px 9px;
    color: #fde68a;
    background: rgba(2, 6, 23, 0.72);
    border: 1px solid rgba(250, 204, 21, 0.28);
    font-size: 12px;
    font-weight: 800;
}

.movie-info {
    display: grid;
    gap: 8px;
    padding: 12px 2px 0;
}

.movie-info strong,
.horizontal-body strong,
.rank-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    font-size: 16px;
}

.card-meta,
.card-desc {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.horizontal-grid,
.compact-list {
    display: grid;
    gap: 16px;
}

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

.horizontal-link {
    display: flex;
    align-items: stretch;
    gap: 14px;
    min-height: 132px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.54);
    transition: 0.22s ease;
}

.horizontal-link:hover {
    border-color: var(--line-strong);
    background: rgba(51, 65, 85, 0.62);
    transform: translateY(-2px);
}

.small-thumb {
    position: relative;
    width: 118px;
    flex: 0 0 118px;
    overflow: hidden;
    background: var(--bg-soft);
}

.small-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 420ms ease;
}

.play-dot {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 38px;
    height: 38px;
    transform: translate(-50%, -50%);
    font-size: 13px;
}

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

.rank-num {
    width: fit-content;
    border-radius: 999px;
    padding: 3px 9px;
    color: #fecdd3;
    background: rgba(244, 63, 94, 0.14);
    font-size: 12px;
    font-weight: 800;
}

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

.category-card {
    position: relative;
    min-height: 180px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--bg-soft);
    box-shadow: 0 20px 38px rgba(0, 0, 0, 0.28);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 420ms ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(2, 6, 23, 0.88), rgba(2, 6, 23, 0.18));
}

.category-card span {
    position: absolute;
    inset: auto 16px 16px;
    z-index: 2;
    display: grid;
    gap: 8px;
}

.category-card strong {
    font-size: 20px;
}

.category-card small {
    color: var(--muted-strong);
    line-height: 1.6;
}

.two-column-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.site-footer {
    margin-top: 96px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(2, 6, 23, 0.95));
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 38px 0;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 800;
}

.footer-inner p,
.side-card p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--muted-strong);
}

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

.copyright {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 18px 0 30px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.page-main {
    padding-top: 44px;
}

.page-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: clamp(34px, 6vw, 64px);
    background:
        radial-gradient(circle at right top, rgba(96, 165, 250, 0.22), transparent 26rem),
        linear-gradient(135deg, rgba(30, 41, 59, 0.82), rgba(15, 23, 42, 0.72));
    box-shadow: var(--shadow);
}

.compact-hero h1,
.category-hero h1 {
    font-size: clamp(34px, 5vw, 58px);
}

.inline-filter {
    max-width: 760px;
    margin-top: 28px;
    padding: 12px;
    border-radius: 20px;
    box-shadow: none;
}

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

.category-tile {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.66);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    transition: 0.22s ease;
}

.category-tile:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
}

.tile-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -40px;
    top: -50px;
    border-radius: 999px;
    background: rgba(96, 165, 250, 0.16);
    filter: blur(20px);
}

.category-tile strong {
    position: relative;
    display: block;
    margin-bottom: 14px;
    font-size: 30px;
}

.category-tile em {
    position: relative;
    display: block;
    max-width: 620px;
    color: var(--muted-strong);
    font-style: normal;
    line-height: 1.7;
}

.tile-preview {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.tile-preview span {
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--muted-strong);
    background: rgba(51, 65, 85, 0.54);
    font-size: 12px;
}

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

.ranking-list {
    display: grid;
    gap: 14px;
    padding-top: 36px;
}

.rank-row a {
    display: grid;
    grid-template-columns: 58px 72px minmax(0, 1fr) 70px;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.62);
    transition: 0.2s ease;
}

.rank-row a:hover {
    border-color: var(--line-strong);
    background: rgba(30, 41, 59, 0.82);
    transform: translateY(-2px);
}

.rank-index {
    color: #fecdd3;
    font-size: 24px;
    font-weight: 900;
}

.rank-row img {
    width: 72px;
    height: 96px;
    border-radius: 12px;
    object-fit: cover;
    background: var(--bg-soft);
}

.rank-info {
    min-width: 0;
    display: grid;
    gap: 7px;
}

.rank-info small,
.rank-info em {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--muted);
    font-style: normal;
}

.rank-score {
    justify-self: end;
    border-radius: 999px;
    padding: 7px 11px;
    color: #fde68a;
    background: rgba(250, 204, 21, 0.12);
    border: 1px solid rgba(250, 204, 21, 0.26);
    font-weight: 900;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 14px;
}

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

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

.detail-primary {
    display: grid;
    gap: 22px;
}

.player-card {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: #000;
    box-shadow: var(--shadow);
}

.movie-player {
    width: 100%;
    height: 100%;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0.28));
    cursor: pointer;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.play-overlay span {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
    font-size: 30px;
}

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

.detail-panel,
.side-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    background: rgba(15, 23, 42, 0.68);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.detail-panel h1 {
    margin: 0;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-panel h2 {
    margin: 30px 0 12px;
    font-size: 24px;
}

.detail-panel p {
    margin: 0;
    color: var(--muted-strong);
    line-height: 1.9;
}

.lead-text {
    font-size: 18px;
}

.tag-cloud {
    margin-top: 26px;
}

.detail-side {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 18px;
}

.detail-poster {
    width: 100%;
    aspect-ratio: 2 / 3;
    border: 1px solid var(--line);
    border-radius: 24px;
    object-fit: cover;
    background: var(--bg-soft);
    box-shadow: var(--shadow);
}

.side-card {
    display: grid;
    gap: 12px;
}

.side-card strong {
    font-size: 22px;
}

.side-card a {
    width: fit-content;
    margin-top: 6px;
    color: #020617;
    background: #f8fafc;
}

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

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

@media (max-width: 1100px) {
    .movie-grid,
    .category-movies {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .horizontal-grid,
    .two-column-section {
        grid-template-columns: 1fr;
    }

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

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

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

    .menu-toggle {
        display: block;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: 42px;
    }

    .movie-grid,
    .category-movies,
    .related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

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

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

    .detail-side {
        position: static;
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
    }
}

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

    .brand-text small {
        display: none;
    }

    .hero-slider,
    .hero-content {
        min-height: 640px;
    }

    .hero-content p,
    .page-hero p {
        font-size: 16px;
    }

    .search-row {
        flex-direction: column;
    }

    .search-row button {
        width: 100%;
    }

    .content-section {
        padding-top: 48px;
    }

    .highlighted-section {
        padding: 22px;
        border-radius: 24px;
    }

    .section-heading {
        display: grid;
    }

    .section-heading span {
        display: none;
    }

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

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

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

    .rank-row img {
        width: 58px;
        height: 78px;
    }

    .rank-score {
        grid-column: 3;
        justify-self: start;
    }

    .detail-panel,
    .side-card,
    .page-hero {
        padding: 22px;
        border-radius: 22px;
    }

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

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

    .footer-links {
        flex-wrap: wrap;
    }
}
