:root {
    --brand: #ef4444;
    --brand-dark: #dc2626;
    --brand-soft: #fee2e2;
    --ink: #111827;
    --muted: #6b7280;
    --line: #e5e7eb;
    --bg: #f9fafb;
    --card: #ffffff;
    --dark: #0f172a;
    --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    --radius: 20px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", Arial, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(18px);
}

.nav-container {
    width: min(1180px, calc(100% - 32px));
    height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.brand-mark {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #fb7185);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(239, 68, 68, 0.28);
}

.brand-name {
    font-size: 22px;
}

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

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

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

.nav-search {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-search input,
.mobile-search input,
.hero-search input,
.filter-panel input,
.filter-panel select {
    border: 1px solid var(--line);
    background: #ffffff;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-panel input:focus,
.filter-panel select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.nav-search input {
    width: 230px;
    border-radius: 999px;
    padding: 10px 16px;
}

.nav-search button,
.mobile-search button,
.hero-search button {
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #ffffff;
    padding: 10px 18px;
    cursor: pointer;
    font-weight: 800;
}

.menu-button {
    display: none;
    margin-left: auto;
    border: 0;
    background: #f3f4f6;
    color: var(--ink);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 18px;
}

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

.mobile-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.mobile-search input {
    border-radius: 14px;
    padding: 11px 14px;
}

.mobile-link {
    display: block;
    padding: 10px 2px;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 660px;
    color: #ffffff;
    background: radial-gradient(circle at 15% 20%, rgba(248, 113, 113, 0.35), transparent 30%), radial-gradient(circle at 80% 10%, rgba(251, 146, 60, 0.18), transparent 26%), linear-gradient(135deg, #111827 0%, #7f1d1d 58%, #0f172a 100%);
}

.hero-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.48), transparent 42%, rgba(15, 23, 42, 0.5));
    pointer-events: none;
}

.hero-inner {
    position: relative;
    width: min(1180px, calc(100% - 32px));
    min-height: 610px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 28px;
    align-items: center;
    padding: 54px 0 72px;
}

.hero-slides {
    min-width: 0;
}

.hero-slide {
    display: none;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    align-items: center;
}

.hero-slide.is-active {
    display: grid;
    animation: fade-in 0.48s ease both;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: max-content;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: var(--brand);
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero .eyebrow {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.hero-copy h1 {
    margin: 22px 0 18px;
    max-width: 760px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.06em;
}

.hero-copy p {
    max-width: 730px;
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
}

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

.hero-tags {
    margin: 24px 0;
}

.hero-tags span,
.card-tags span,
.tag-cloud a {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

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

.card-tags span,
.tag-cloud a {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.primary-button,
.ghost-button,
.text-link,
.panel-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
    background: linear-gradient(135deg, #ef4444, #fb7185);
    color: #ffffff;
    padding: 13px 22px;
    box-shadow: 0 16px 30px rgba(239, 68, 68, 0.32);
}

.ghost-button {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
}

.ghost-button.dark {
    border-color: var(--line);
    color: var(--ink);
    background: #ffffff;
}

.primary-button:hover,
.ghost-button:hover,
.text-link:hover,
.panel-more:hover {
    transform: translateY(-2px);
}

.hero-poster {
    position: relative;
    display: block;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
    transform: rotate(1.5deg);
}

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

.hero-poster span,
.detail-poster span,
.score-badge,
.year-badge {
    position: absolute;
    border-radius: 999px;
    font-weight: 900;
    color: #ffffff;
}

.hero-poster span,
.detail-poster span {
    left: 18px;
    bottom: 18px;
    background: rgba(239, 68, 68, 0.94);
    padding: 8px 14px;
}

.hero-side {
    display: grid;
    gap: 18px;
}

.hero-search,
.hero-rank,
.side-panel,
.rank-channel {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.15);
}

.hero-search {
    padding: 20px;
}

.hero-search label,
.hero-rank h2 {
    display: block;
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 900;
}

.hero-search div {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
}

.hero-search input {
    min-width: 0;
    border-radius: 14px;
    padding: 12px 14px;
}

.hero-rank {
    padding: 18px;
}

.hero-controls {
    position: absolute;
    left: 50%;
    bottom: 26px;
    width: min(1180px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-controls button {
    border: 0;
    cursor: pointer;
}

.hero-controls > button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 26px;
}

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

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
}

.hero-dots button.active {
    width: 26px;
    background: #ffffff;
}

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

.section-block.narrow {
    width: min(960px, calc(100% - 32px));
}

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

.section-heading span {
    display: block;
    color: var(--brand);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.section-heading a,
.text-link,
.panel-more {
    color: var(--brand);
    font-weight: 900;
}

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

.category-card {
    position: relative;
    min-height: 190px;
    overflow: hidden;
    border-radius: var(--radius);
    color: #ffffff;
    background: var(--dark);
    box-shadow: var(--shadow);
}

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

.category-card span,
.category-card p {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 18px;
}

.category-card span {
    margin-top: 92px;
    font-size: 22px;
    font-weight: 900;
}

.category-card p {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.85), transparent 70%);
}

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

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

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

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

.movie-card {
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.88);
    border-radius: var(--radius);
    background: var(--card);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.movie-card:hover {
    transform: translateY(-6px);
    border-color: rgba(239, 68, 68, 0.26);
    box-shadow: var(--shadow);
}

.poster-link {
    position: relative;
    display: block;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
}

.poster-link img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.score-badge {
    top: 12px;
    left: 12px;
    background: rgba(239, 68, 68, 0.96);
    padding: 5px 9px;
    font-size: 13px;
}

.year-badge {
    right: 12px;
    bottom: 12px;
    background: rgba(17, 24, 39, 0.74);
    padding: 5px 9px;
    font-size: 12px;
}

.card-body {
    padding: 16px;
}

.card-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-title:hover {
    color: var(--brand);
}

.card-desc {
    display: -webkit-box;
    overflow: hidden;
    min-height: 44px;
    margin: 8px 0 12px;
    color: var(--muted);
    font-size: 14px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 12px;
}

.card-meta span:not(:last-child)::after {
    content: "·";
    margin-left: 8px;
    color: #d1d5db;
}

.card-tags {
    margin-top: 12px;
}

.card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
}

.card-actions a {
    color: var(--brand);
    font-weight: 900;
}

.movie-card.compact .card-body {
    padding: 13px;
}

.movie-card.compact .card-title {
    font-size: 15px;
}

.movie-card.compact .card-desc,
.movie-card.compact .card-tags {
    display: none;
}

.side-panel,
.rank-channel {
    border: 1px solid rgba(229, 231, 235, 0.9);
    background: #ffffff;
    padding: 20px;
    color: var(--ink);
}

.side-panel h2,
.rank-channel h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.mini-card {
    display: grid;
    grid-template-columns: auto 52px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.hero-rank .mini-card {
    border-color: rgba(255, 255, 255, 0.12);
}

.mini-card:last-child {
    border-bottom: 0;
}

.mini-card img {
    width: 52px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.mini-card strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

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

.hero-rank .mini-card em {
    color: rgba(255, 255, 255, 0.68);
}

.rank-num {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 900;
}

.panel-more {
    margin-top: 16px;
}

.page-hero,
.detail-hero {
    color: #ffffff;
    background: radial-gradient(circle at 15% 18%, rgba(239, 68, 68, 0.4), transparent 34%), linear-gradient(135deg, #111827 0%, #7f1d1d 62%, #0f172a 100%);
}

.page-hero {
    padding: 76px 0;
}

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

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

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

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
}

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

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

.category-overview-grid {
    display: grid;
    gap: 22px;
}

.category-overview-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.category-cover {
    overflow: hidden;
    border-radius: 18px;
}

.category-cover img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
}

.category-overview-card h2 {
    margin: 2px 0 8px;
    font-size: 28px;
}

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

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

.filter-panel {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) repeat(3, minmax(150px, 190px));
    gap: 14px;
    margin-bottom: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    padding: 16px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.filter-panel label {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.filter-panel input,
.filter-panel select {
    width: 100%;
    min-height: 46px;
    border-radius: 14px;
    padding: 0 14px;
}

.empty-state {
    border: 1px dashed #fecaca;
    border-radius: var(--radius);
    background: #fff1f2;
    color: var(--brand-dark);
    padding: 24px;
    text-align: center;
    font-weight: 900;
}

.ranking-layout .side-column {
    display: grid;
    gap: 18px;
}

.detail-hero {
    padding: 42px 0 64px;
}

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

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

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

.detail-copy h1 {
    margin: 16px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.detail-one-line {
    max-width: 830px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
}

.detail-meta {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
}

.detail-meta div {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.09);
    padding: 12px;
}

.detail-meta dt {
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

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

.detail-actions {
    margin-top: 22px;
}

.watch-section {
    background: #ffffff;
}

.video-shell {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: #020617;
    box-shadow: var(--shadow);
}

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

.player-cover {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    transition: opacity 0.24s ease, visibility 0.24s ease;
    cursor: pointer;
}

.player-cover.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-button {
    width: 86px;
    height: 86px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #fb7185);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(239, 68, 68, 0.35);
}

.play-button span {
    display: inline-block;
    transform: translateX(3px);
    font-size: 34px;
}

.article-section h2 {
    margin: 0 0 12px;
    font-size: 28px;
}

.article-section h2:not(:first-child) {
    margin-top: 28px;
}

.article-section p {
    margin: 0;
    color: #374151;
    font-size: 17px;
}

.site-footer {
    margin-top: 42px;
    background: #111827;
    color: #d1d5db;
}

.footer-inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(170px, 0.6fr));
    gap: 34px;
    padding: 48px 0;
}

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

.footer-about p {
    max-width: 520px;
    margin: 16px 0 0;
    color: #9ca3af;
}

.footer-column h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 18px;
}

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

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

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

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

    .menu-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-inner,
    .split-layout,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .hero-slide {
        grid-template-columns: 1fr 260px;
    }

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

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

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

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

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

@media (max-width: 760px) {
    .nav-container {
        height: 64px;
    }

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

    .hero {
        min-height: auto;
    }

    .hero-inner {
        min-height: auto;
        padding: 34px 0 86px;
    }

    .hero-slide {
        grid-template-columns: 1fr;
    }

    .hero-poster {
        max-width: 260px;
        transform: none;
    }

    .hero-side {
        display: none;
    }

    .section-block {
        padding: 38px 0;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
    }

    .category-grid,
    .movie-grid,
    .compact-grid,
    .mini-list,
    .footer-inner,
    .category-overview-card {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 170px;
    }

    .filter-panel {
        grid-template-columns: 1fr;
    }

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

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

    .play-button {
        width: 70px;
        height: 70px;
    }
}
