:root {
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-light: #ccfbf1;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 25px 50px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--gray-900);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: linear-gradient(135deg, #0f172a, #0f766e);
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(16px);
}

.nav-shell,
.page-shell,
.footer-shell,
.player-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 21px;
  font-weight: 800;
  color: var(--gray-900);
  white-space: nowrap;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), #06b6d4);
  box-shadow: 0 12px 24px rgba(13, 148, 136, 0.28);
}

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

.nav-link {
  padding: 8px 2px;
  border: 0;
  background: transparent;
  color: var(--gray-700);
  font-weight: 650;
  transition: color 0.2s ease;
}

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

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 36px;
  left: -16px;
  min-width: 160px;
  padding: 10px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--gray-700);
  font-size: 14px;
}

.dropdown-menu a:hover {
  color: var(--teal);
  background: #ecfeff;
}

.top-search {
  position: relative;
  width: 246px;
}

.top-search input,
.mobile-search input,
.catalog-tools input,
.catalog-tools select,
.search-large input {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.top-search input {
  padding: 10px 14px;
}

.top-search input:focus,
.mobile-search input:focus,
.catalog-tools input:focus,
.catalog-tools select:focus,
.search-large input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.12);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  border-radius: 12px;
  background: var(--gray-100);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gray-800);
}

.mobile-nav {
  display: none;
  padding: 0 16px 18px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}

.mobile-nav.open {
  display: block;
}

.mobile-search input {
  padding: 12px 14px;
  margin: 16px 0;
}

.mobile-links,
.mobile-categories {
  display: grid;
  gap: 8px;
}

.mobile-categories {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 12px;
}

.mobile-link,
.mobile-categories a {
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--gray-700);
  background: var(--gray-50);
}

.mobile-link.active,
.mobile-link:hover,
.mobile-categories a:hover {
  color: var(--teal);
  background: #ecfeff;
}

.hero-carousel {
  position: relative;
  height: 560px;
  overflow: hidden;
  color: var(--white);
  background: var(--gray-900);
}

.hero-track,
.hero-slide,
.hero-slide img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  transform: scale(1.04);
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  margin-left: max(16px, calc((100vw - 1180px) / 2));
  padding-right: 32px;
}

.hero-pill,
.pill-row span,
.badge,
.tag-row span,
.detail-tags a {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
}

.hero-pill {
  width: fit-content;
  padding: 7px 13px;
  background: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.hero-content h1 {
  margin: 18px 0 16px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1.2px;
}

.hero-content p {
  max-width: 660px;
  margin: 0;
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1.8;
}

.hero-meta,
.hero-tags,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.hero-meta span,
.hero-tags span {
  color: #e5e7eb;
  font-size: 14px;
}

.hero-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.primary-btn,
.ghost-btn,
.search-large button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.primary-btn,
.search-large button {
  border: 0;
  color: var(--white);
  background: var(--teal);
}

.primary-btn:hover,
.search-large button:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.ghost-btn {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
}

.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  font-size: 30px;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: var(--white);
}

.quick-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

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

.quick-grid a {
  padding: 12px 16px;
  border-radius: 16px;
  color: var(--gray-700);
  text-align: center;
  font-weight: 750;
  background: var(--gray-50);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.quick-grid a:hover {
  color: var(--teal);
  background: #ecfeff;
  transform: translateY(-2px);
}

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

.section-heading,
.category-preview-head,
.horizontal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-heading {
  margin-bottom: 26px;
}

.section-heading h2,
.category-preview h2,
.content-card h2,
.side-card h2 {
  margin: 0;
  color: var(--gray-900);
  font-weight: 900;
}

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

.section-link,
.category-preview-head a {
  color: var(--teal);
  font-weight: 800;
}

.panel-block {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto;
  padding: 38px;
  border-radius: 32px;
}

.teal-panel {
  background: linear-gradient(135deg, #f0fdfa, #eff6ff);
}

.orange-panel {
  background: linear-gradient(135deg, #fff7ed, #fdf2f8);
}

.dark-block {
  width: min(1180px, calc(100% - 32px));
  margin: 26px auto;
  padding: 38px;
  border-radius: 32px;
  background: var(--gray-900);
}

.dark-block .section-heading h2,
.dark-block .horizontal-top a,
.dark-block .horizontal-card p {
  color: var(--white);
}

.dark-block .horizontal-card {
  background: rgba(255, 255, 255, 0.06);
}

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

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

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

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

.movie-card {
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a, #115e59);
}

.movie-card img,
.horizontal-card img,
.category-tile img,
.detail-title-row img {
  transition: transform 0.38s ease;
}

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

.badge {
  position: absolute;
  padding: 5px 9px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  background: rgba(13, 148, 136, 0.92);
}

.badge-left {
  top: 10px;
  left: 10px;
}

.badge-right {
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, 0.68);
}

.movie-info {
  padding: 17px;
}

.movie-title {
  display: -webkit-box;
  min-height: 48px;
  overflow: hidden;
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  transition: color 0.2s ease;
}

.movie-title:hover {
  color: var(--teal);
}

.movie-info p,
.horizontal-card p,
.category-preview p,
.inner-hero p,
.footer-brand p,
.content-card p {
  line-height: 1.75;
}

.movie-info p {
  display: -webkit-box;
  min-height: 48px;
  margin: 10px 0 14px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag-row span {
  padding: 5px 9px;
  color: var(--gray-600);
  font-size: 12px;
  background: var(--gray-100);
}

.compact-card .poster-link {
  aspect-ratio: 4 / 3;
}

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

.category-tile {
  position: relative;
  height: 132px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background: var(--gray-900);
  box-shadow: var(--shadow);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.05), rgba(17, 24, 39, 0.78));
}

.category-tile span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: 18px;
  font-weight: 900;
}

.wide-recommend-list,
.ranking-list,
.side-list {
  display: grid;
  gap: 16px;
}

.horizontal-card {
  display: grid;
  grid-template-columns: 176px 1fr;
  gap: 18px;
  overflow: hidden;
  border-radius: 18px;
  padding: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, background 0.2s ease;
}

.horizontal-card:hover {
  transform: translateY(-2px);
}

.horizontal-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: var(--gray-900);
}

.horizontal-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.horizontal-top {
  justify-content: flex-start;
  margin-bottom: 8px;
}

.horizontal-top a {
  color: var(--gray-900);
  font-size: 18px;
  font-weight: 900;
}

.horizontal-top a:hover {
  color: var(--teal);
}

.rank-number {
  min-width: 42px;
  color: var(--teal);
  font-size: 22px;
  font-weight: 950;
}

.horizontal-card p {
  display: -webkit-box;
  margin: 0 0 8px;
  overflow: hidden;
  color: var(--gray-600);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.meta-line {
  color: var(--gray-500);
  font-size: 14px;
}

.inner-hero {
  padding: 62px 0;
  color: var(--white);
  background: linear-gradient(135deg, #0f172a, #0f766e);
}

.category-hero {
  background: linear-gradient(135deg, #0f766e, #1d4ed8);
}

.ranking-hero {
  background: linear-gradient(135deg, #111827, #7c2d12);
}

.search-hero {
  background: linear-gradient(135deg, #0f172a, #4338ca);
}

.inner-hero h1 {
  margin: 14px 0 12px;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 950;
}

.inner-hero p {
  max-width: 760px;
  margin: 0;
  color: #e5e7eb;
  font-size: 18px;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.detail-main .crumbs {
  color: var(--gray-500);
}

.crumbs a::after {
  content: "/";
  margin-left: 8px;
  color: currentColor;
  opacity: 0.5;
}

.crumbs a:hover {
  color: var(--teal-light);
}

.detail-main .crumbs a:hover {
  color: var(--teal);
}

.catalog-tools {
  display: grid;
  grid-template-columns: 1fr 180px 180px;
  gap: 14px;
  margin-bottom: 26px;
}

.catalog-tools input,
.catalog-tools select {
  height: 48px;
  padding: 0 14px;
}

.categories-overview {
  display: grid;
  gap: 30px;
}

.category-preview {
  padding: 26px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.category-preview-head {
  margin-bottom: 22px;
}

.category-preview h2 {
  font-size: 26px;
}

.category-preview p {
  margin: 8px 0 0;
  color: var(--gray-600);
}

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

.light-list .horizontal-card {
  box-shadow: none;
  border: 1px solid var(--gray-200);
}

.search-large {
  display: flex;
  gap: 12px;
  max-width: 680px;
  margin-top: 28px;
}

.search-large input {
  min-height: 52px;
  padding: 0 18px;
}

.search-large button {
  min-width: 112px;
}

.player-section {
  background: #000000;
}

.player-shell {
  padding: 0;
}

.player-box {
  position: relative;
  background: #000000;
}

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

.big-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 82px;
  height: 82px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(13, 148, 136, 0.88);
  font-size: 34px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.big-play:hover {
  background: var(--teal-dark);
  transform: translate(-50%, -50%) scale(1.06);
}

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

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.86fr);
  gap: 30px;
  padding: 46px 0 20px;
}

.detail-main,
.detail-side {
  min-width: 0;
}

.detail-title-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
  margin: 22px 0 26px;
}

.detail-title-row img {
  height: 310px;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 14px;
}

.pill-row span {
  padding: 7px 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  background: var(--teal);
}

.detail-title-row h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 950;
  line-height: 1.12;
}

.lead-text {
  margin: 0 0 16px;
  color: var(--gray-600);
  font-size: 18px;
  line-height: 1.75;
}

.strong-meta {
  font-weight: 800;
}

.content-card,
.side-card {
  margin-bottom: 22px;
  padding: 26px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.content-card h2,
.side-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.content-card p {
  margin: 0;
  color: var(--gray-700);
  font-size: 16px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-tags a {
  padding: 9px 13px;
  color: var(--gray-700);
  font-weight: 700;
  background: var(--gray-100);
}

.detail-tags a:hover {
  color: var(--teal);
  background: #ecfeff;
}

.side-card .horizontal-card {
  grid-template-columns: 112px 1fr;
  gap: 12px;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  background: transparent;
}

.side-card .horizontal-cover {
  border-radius: 12px;
}

.side-card .horizontal-top a {
  font-size: 15px;
}

.side-card .horizontal-card p {
  display: none;
}

.side-card .meta-line {
  font-size: 12px;
}

.site-footer {
  margin-top: 30px;
  color: #d1d5db;
  background: var(--gray-900);
}

.footer-shell {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 44px;
  padding: 46px 0;
}

.footer-logo {
  color: var(--white);
}

.footer-brand p {
  max-width: 520px;
  color: #9ca3af;
}

.footer-column h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 17px;
}

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

.footer-column li {
  margin: 9px 0;
}

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

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

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

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

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

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

  .featured-grid,
  .ranking-columns,
  .detail-layout,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

  .catalog-tools {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-tools input {
    grid-column: 1 / -1;
  }
}

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

  .brand {
    font-size: 18px;
  }

  .hero-carousel {
    height: 620px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.92));
  }

  .hero-content {
    justify-content: flex-end;
    margin-left: auto;
    padding: 0 0 76px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-arrow {
    display: none;
  }

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

  .section-block,
  .panel-block,
  .dark-block {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .panel-block,
  .dark-block {
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 24px;
  }

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

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

  .movie-info {
    padding: 13px;
  }

  .movie-title {
    min-height: auto;
    font-size: 16px;
  }

  .movie-info p {
    min-height: auto;
    font-size: 13px;
  }

  .horizontal-card {
    grid-template-columns: 116px 1fr;
    gap: 12px;
    padding: 12px;
  }

  .horizontal-top a {
    font-size: 16px;
  }

  .horizontal-card p {
    font-size: 13px;
  }

  .catalog-tools,
  .search-large,
  .detail-title-row {
    grid-template-columns: 1fr;
  }

  .search-large {
    display: grid;
  }

  .detail-title-row img {
    width: 220px;
    max-width: 100%;
    height: 300px;
  }

  .player-shell {
    width: 100%;
  }

  .big-play {
    width: 64px;
    height: 64px;
    font-size: 28px;
  }
}

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

  .quick-grid,
  .mobile-categories {
    grid-template-columns: 1fr;
  }

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