:root {
    color-scheme: dark;
    --bg: #020617;
    --bg-soft: #0f172a;
    --bg-card: rgba(15, 23, 42, 0.72);
    --bg-card-strong: rgba(30, 41, 59, 0.9);
    --line: rgba(148, 163, 184, 0.18);
    --text: #f8fafc;
    --muted: #94a3b8;
    --muted-strong: #cbd5e1;
    --amber: #f59e0b;
    --orange: #ea580c;
    --rose: #f43f5e;
    --cyan: #06b6d4;
    --green: #10b981;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius: 22px;
    font-family: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, 0.13), transparent 30rem),
        radial-gradient(circle at top right, rgba(244, 63, 94, 0.12), transparent 34rem),
        linear-gradient(180deg, #020617 0%, #0f172a 45%, #020617 100%);
    color: var(--text);
    min-height: 100vh;
}

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

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

button,
input {
    font: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.94), rgba(15, 23, 42, 0.96));
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

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

.brand-mark {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 16px 30px rgba(245, 158, 11, 0.26);
}

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

.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a {
    padding: 10px 13px;
    border-radius: 12px;
    color: #e2e8f0;
    transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: #fbbf24;
    background: rgba(30, 41, 59, 0.75);
}

.menu-toggle {
    display: none;
    color: var(--text);
    background: rgba(15, 23, 42, 0.78);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 8px 12px;
}

.spotlight {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
    isolation: isolate;
}

.spotlight::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.68) 42%, rgba(2, 6, 23, 0.2) 100%),
        linear-gradient(0deg, var(--bg), transparent 34%);
    z-index: -1;
}

.spotlight-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 70% 35%, rgba(245, 158, 11, 0.18), transparent 28rem),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.12), transparent 24rem);
    z-index: -2;
}

.spotlight-track {
    min-height: 72vh;
}

.spotlight-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    align-items: center;
    gap: 48px;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.spotlight-copy {
    max-width: 690px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 14px;
}

.spotlight-copy h1,
.page-hero h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.spotlight-copy p,
.page-hero p,
.lead-text {
    color: var(--muted-strong);
    font-size: 18px;
    line-height: 1.85;
}

.spotlight-meta,
.detail-meta,
.card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    color: var(--muted);
}

.spotlight-meta span:first-child,
.rank-score {
    color: #fbbf24;
    font-weight: 700;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 18px 0;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    color: #fcd34d;
    background: rgba(245, 158, 11, 0.13);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.spotlight-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.primary-button,
.ghost-button,
.search-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.primary-button,
.search-bar button {
    color: white;
    background: linear-gradient(90deg, var(--amber), var(--orange));
    box-shadow: 0 18px 38px rgba(245, 158, 11, 0.25);
}

.primary-button:hover,
.search-bar button:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 24px 48px rgba(245, 158, 11, 0.36);
}

.ghost-button {
    color: #e2e8f0;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.68);
}

.ghost-button:hover {
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.42);
}

.poster-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(244, 63, 94, 0.1)),
        #1e293b;
    box-shadow: var(--shadow);
}

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

.poster-frame.is-missing img {
    opacity: 0;
}

.poster-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: rgba(248, 250, 252, 0.86);
    text-align: center;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    background:
        radial-gradient(circle at top, rgba(251, 191, 36, 0.24), transparent 42%),
        linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.86));
}

.wide-poster {
    aspect-ratio: 4 / 3;
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.spotlight-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.45);
    color: white;
    font-size: 34px;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.spotlight-arrow.prev {
    left: 22px;
}

.spotlight-arrow.next {
    right: 22px;
}

.spotlight-dots {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    gap: 9px;
}

.spotlight-dot {
    width: 18px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: 0.2s ease;
}

.spotlight-dot.is-active {
    width: 38px;
    background: var(--amber);
}

.quick-search-panel {
    transform: translateY(-24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(15, 23, 42, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.search-bar,
.filter-row {
    display: flex;
    width: 100%;
    gap: 12px;
}

.search-bar input,
.local-search {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 14px;
    outline: none;
    background: rgba(2, 6, 23, 0.64);
}

.search-bar input:focus,
.local-search:focus {
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.quick-links {
    display: flex;
    gap: 10px;
    white-space: nowrap;
}

.quick-links a {
    color: #fbbf24;
    padding: 8px 10px;
}

.content-section {
    margin: 72px auto;
}

.no-margin {
    margin: 0;
}

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

.section-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    color: white;
    font-weight: 900;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(26px, 3vw, 36px);
}

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

.rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 290px);
    gap: 20px;
    overflow-x: auto;
    padding: 6px 4px 18px;
    scroll-snap-type: x proximity;
}

.movie-grid {
    display: grid;
    gap: 22px;
}

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

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

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

.movie-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.14);
    transition: 0.25s ease;
}

.movie-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(245, 158, 11, 0.46);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.movie-card .poster-frame {
    aspect-ratio: 3 / 4;
    border-radius: 0;
    box-shadow: none;
}

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

.score-badge,
.rank-badge {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    color: #fef3c7;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(8px);
    font-weight: 800;
    font-size: 13px;
}

.rank-badge {
    left: 12px;
    right: auto;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--orange));
}

.movie-card-body {
    padding: 14px 14px 16px;
}

.movie-card-body h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.35;
}

.movie-card-body p {
    min-height: 44px;
    margin: 0 0 12px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 13px;
}

.card-meta {
    gap: 8px;
    font-size: 12px;
}

.card-meta span {
    padding: 4px 7px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
}

.feature-panel,
.rank-panel,
.filter-panel,
.table-panel,
.text-panel,
.category-overview-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.68), rgba(15, 23, 42, 0.8));
    box-shadow: var(--shadow);
}

.feature-panel {
    padding: 34px;
}

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

.category-tile {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: rgba(15, 23, 42, 0.74);
    transition: 0.2s ease;
}

.category-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.45);
}

.category-tile span {
    color: #fbbf24;
    font-weight: 800;
}

.category-tile strong {
    font-size: 42px;
    line-height: 1;
}

.category-tile p,
.category-tile small {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 28px;
    margin: 72px auto;
}

.rank-panel {
    padding: 24px;
    align-self: start;
    position: sticky;
    top: 92px;
}

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

.rank-head h2 {
    margin: 0;
}

.rank-head a {
    color: #fbbf24;
}

.rank-panel ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.rank-panel li a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 58px;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border-radius: 14px;
    background: rgba(2, 6, 23, 0.42);
}

.rank-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.rank-number {
    color: #fbbf24;
    font-weight: 900;
}

.page-shell {
    padding: 54px 0 80px;
}

.page-hero {
    padding: 54px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(245, 158, 11, 0.18), transparent 28rem),
        linear-gradient(135deg, rgba(30, 41, 59, 0.78), rgba(15, 23, 42, 0.82));
    box-shadow: var(--shadow);
}

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

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

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

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

.category-overview-head h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

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

.mini-card-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.filter-panel {
    padding: 22px;
    margin-top: 28px;
}

.year-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.year-filters button {
    color: var(--muted-strong);
    background: rgba(2, 6, 23, 0.55);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 13px;
    cursor: pointer;
}

.year-filters button.is-active,
.year-filters button:hover {
    color: #fbbf24;
    border-color: rgba(245, 158, 11, 0.45);
}

.filter-count,
.empty-state {
    color: var(--muted);
}

.empty-state {
    text-align: center;
    padding: 42px;
    border: 1px dashed var(--line);
    border-radius: 24px;
}

.table-panel {
    padding: 24px;
    margin-top: 30px;
}

.responsive-table {
    overflow-x: auto;
    margin-top: 18px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

th,
td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

th {
    color: #fbbf24;
    font-size: 14px;
}

td {
    color: #e2e8f0;
}

td a:hover {
    color: #fbbf24;
}

.detail-shell {
    padding-bottom: 80px;
}

.detail-hero {
    padding: 58px 0;
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.38), transparent),
        radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.15), transparent 30rem);
}

.detail-grid {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
}

.detail-poster {
    aspect-ratio: 3 / 4;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--muted);
    margin-bottom: 18px;
}

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

.detail-copy h1 {
    font-size: clamp(36px, 5vw, 64px);
}

.detail-meta {
    margin-top: 18px;
}

.detail-meta span {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.1);
}

.player-section {
    margin-top: 12px;
}

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

.site-video {
    width: 100%;
    height: 100%;
    background: #000;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 10px;
    color: white;
    border: 0;
    cursor: pointer;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.74)),
        radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 22rem);
}

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

.play-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--amber), var(--orange));
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.34);
    font-size: 32px;
}

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

.play-overlay small,
.player-message {
    color: var(--muted-strong);
}

.player-message {
    position: absolute;
    left: 20px;
    bottom: 16px;
    margin: 0;
    padding: 8px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.55);
}

.detail-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    margin-top: 34px;
}

.text-panel {
    padding: 28px;
}

.text-panel h2 {
    margin: 0 0 14px;
    color: #fbbf24;
}

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

.directory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
    margin-top: 34px;
}

.link-directory {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.68);
}

.link-directory h2 {
    margin: 0 0 18px;
}

.link-directory h2 a {
    color: #fbbf24;
}

.link-directory ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
    max-height: 520px;
    overflow: auto;
}

.link-directory li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.link-directory li a:hover {
    color: #fbbf24;
}

.link-directory li span {
    color: var(--muted);
}

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(2, 6, 23, 0.72);
    padding: 46px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 36px;
}

.site-footer p,
.site-footer a,
.site-footer li {
    color: var(--muted);
    line-height: 1.8;
}

.site-footer a:hover {
    color: #fbbf24;
}

.site-footer h2 {
    margin: 0 0 14px;
    font-size: 18px;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-cats {
    columns: 2;
}

.footer-bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 32px auto 0;
    padding-top: 20px;
    color: #64748b;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.12);
}

[hidden] {
    display: none !important;
}

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

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

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

    .rank-panel {
        position: static;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: 68px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 16px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(15, 23, 42, 0.98);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spotlight-slide {
        position: relative;
        min-height: 74vh;
        grid-template-columns: 1fr;
        align-content: center;
        gap: 22px;
        padding: 28px 0 86px;
    }

    .spotlight-slide:not(.is-active) {
        display: none;
    }

    .wide-poster {
        min-height: 260px;
        order: -1;
    }

    .spotlight-arrow {
        display: none;
    }

    .quick-search-panel,
    .search-bar,
    .filter-row,
    .category-overview-head {
        flex-direction: column;
        align-items: stretch;
    }

    .four-grid,
    .six-grid,
    .three-grid,
    .mini-card-row,
    .footer-grid,
    .directory-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .page-hero {
        padding: 34px 24px;
    }
}

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

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

    .spotlight-copy h1,
    .page-hero h1,
    .detail-copy h1 {
        font-size: 34px;
    }

    .spotlight-copy p,
    .page-hero p,
    .lead-text {
        font-size: 15px;
    }

    .four-grid,
    .six-grid,
    .three-grid,
    .mini-card-row,
    .category-grid,
    .footer-grid,
    .directory-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .movie-card-body h3 {
        font-size: 15px;
    }

    .movie-card-body p {
        display: none;
    }

    .category-grid,
    .footer-grid,
    .directory-grid,
    .detail-content {
        grid-template-columns: 1fr;
    }

    .player-panel {
        border-radius: 18px;
    }
}
