:root {
  --bg: #020617;
  --panel: rgba(15, 23, 42, 0.86);
  --panel-soft: rgba(30, 41, 59, 0.72);
  --line: rgba(148, 163, 184, 0.18);
  --text: #f8fafc;
  --muted: #94a3b8;
  --muted-strong: #cbd5e1;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --orange: #f97316;
  --yellow: #facc15;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.28), transparent 26rem),
    radial-gradient(circle at 85% 8%, rgba(34, 211, 238, 0.18), transparent 30rem),
    linear-gradient(135deg, #020617 0%, #0f172a 48%, #020617 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(59, 130, 246, 0.28);
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: 68px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 20px;
}

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

.brand-icon,
.footer-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}

.brand-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #93c5fd, #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

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

.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: white;
  background: rgba(37, 99, 235, 0.22);
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.intro-search,
.inline-filter {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-search input,
.mobile-search input,
.intro-search input,
.inline-filter input {
  width: 240px;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 999px;
  outline: none;
  padding: 11px 16px;
  color: white;
  background: rgba(15, 23, 42, 0.78);
}

.header-search input:focus,
.mobile-search input:focus,
.intro-search input:focus,
.inline-filter input:focus {
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.header-search button,
.mobile-search button,
.intro-search button,
.inline-filter button,
.primary-btn,
.ghost-btn,
.section-more,
.category-preview-head a {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #0891b2);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.2);
}

.header-search button:hover,
.mobile-search button:hover,
.intro-search button:hover,
.inline-filter button:hover,
.primary-btn:hover,
.ghost-btn:hover,
.section-more:hover,
.category-preview-head a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(37, 99, 235, 0.3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.7);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: white;
  border-radius: 999px;
}

.mobile-panel {
  display: none;
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.98);
}

.mobile-panel.is-open {
  display: block;
}

.mobile-search input {
  width: 100%;
}

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

.quick-nav {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(15, 23, 42, 0.56);
  overflow-x: auto;
}

.quick-nav-inner {
  display: flex;
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
}

.quick-nav a {
  color: var(--muted);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.quick-nav a:hover {
  color: var(--cyan);
}

main {
  min-height: 60vh;
}

.hero {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 34px;
  background: #0f172a;
  box-shadow: var(--shadow);
}

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

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

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) brightness(0.55);
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.72) 46%, rgba(2, 6, 23, 0.35) 100%),
    radial-gradient(circle at 76% 24%, rgba(34, 211, 238, 0.26), transparent 21rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: center;
  gap: 44px;
  min-height: 610px;
  padding: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.16);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.hero h1,
.home-intro h1,
.page-hero h1,
.play-info h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.hero p,
.home-intro p,
.page-hero p,
.play-info p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 17px;
}

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

.hero-tags {
  margin-top: 22px;
}

.hero-tags span,
.tag-row span,
.tag-cloud span {
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: #dbeafe;
  background: rgba(15, 23, 42, 0.58);
  font-size: 12px;
}

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

.ghost-btn {
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.26);
}

.hero-poster {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  transform: rotate(2deg);
}

.hero-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-poster span,
.play-mark,
.big-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.84);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.34);
}

.hero-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
}

.hero-controls button {
  border: 1px solid rgba(148, 163, 184, 0.2);
  color: white;
  background: rgba(15, 23, 42, 0.8);
  cursor: pointer;
}

.hero-controls > button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 26px;
  line-height: 1;
}

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

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  padding: 0;
}

.hero-dot.is-active {
  width: 28px;
  background: var(--cyan);
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-rail-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.64);
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-rail-card:hover {
  transform: translateY(-2px);
  background: rgba(30, 41, 59, 0.82);
}

.hero-rail-card img {
  width: 72px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
}

.hero-rail-card span {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-intro,
.page-hero,
.content-section,
.category-band,
.category-preview,
.ranking-layout,
.detail-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding-top: 58px;
  padding-bottom: 20px;
}

.intro-search input {
  width: min(420px, 50vw);
}

.category-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.page-band {
  padding-top: 0;
}

.category-chip {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.18), rgba(8, 145, 178, 0.1)),
    rgba(15, 23, 42, 0.72);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.category-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.34);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(8, 145, 178, 0.18)),
    rgba(30, 41, 59, 0.72);
}

.category-chip span {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 800;
}

.category-chip em {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

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

.section-heading,
.category-preview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading h2,
.category-preview-head h2,
.detail-content h2,
.footer-group h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

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

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

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

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

.movie-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: var(--radius);
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(96, 165, 250, 0.36);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.card-cover {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.38s ease, filter 0.38s ease;
}

.movie-card:hover .card-cover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

.play-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%) scale(0.82);
  border-radius: 999px;
  color: white;
  background: rgba(37, 99, 235, 0.84);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.movie-card:hover .play-mark {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.rank-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.26);
}

.card-content {
  padding: 16px;
}

.card-title {
  display: block;
  min-height: 48px;
  color: white;
  font-weight: 800;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.card-title:hover {
  color: #93c5fd;
}

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

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  color: #64748b;
  font-size: 13px;
}

.card-meta span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.72);
}

.tag-row {
  margin-top: 12px;
}

.movie-card-wide {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.movie-card-wide .card-cover {
  aspect-ratio: auto;
  min-height: 160px;
}

.movie-card-wide .card-title {
  min-height: 0;
  font-size: 19px;
}

.page-hero {
  padding-top: 54px;
  padding-bottom: 24px;
}

.small-hero {
  min-height: 280px;
  margin-top: 28px;
  padding: 46px;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 80% 16%, rgba(34, 211, 238, 0.24), transparent 21rem),
    linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(30, 58, 138, 0.38));
  box-shadow: var(--shadow);
}

.small-hero h1 {
  max-width: 840px;
  font-size: clamp(34px, 5vw, 58px);
}

.inline-filter {
  flex-wrap: wrap;
  margin-top: 26px;
}

.inline-filter input {
  width: min(520px, 100%);
}

.category-preview {
  padding-top: 42px;
}

.ranking-layout {
  display: grid;
  gap: 16px;
  padding-top: 32px;
  padding-bottom: 30px;
}

.detail-shell {
  padding-top: 30px;
}

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

.breadcrumb a:hover {
  color: var(--cyan);
}

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

.player-panel,
.detail-side,
.detail-content {
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.74);
  box-shadow: var(--shadow);
}

.player-panel {
  overflow: hidden;
}

.player-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: black;
}

.movie-video {
  width: 100%;
  height: 100%;
  background: black;
}

.player-cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: black;
  cursor: pointer;
  z-index: 2;
}

.player-cover.is-hidden {
  display: none;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.48);
}

.big-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  color: white;
  font-size: 36px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.42);
}

.play-info {
  padding: 24px 28px 28px;
}

.play-info h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.detail-side {
  padding: 18px;
  height: fit-content;
}

.detail-poster {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 22px;
}

.detail-score {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(250, 204, 21, 0.1);
}

.detail-score strong {
  color: var(--yellow);
  font-size: 34px;
  line-height: 1;
}

.detail-score span {
  color: var(--muted);
}

.detail-meta-list {
  margin: 16px 0 0;
}

.detail-meta-list div {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.detail-meta-list dt {
  color: var(--muted);
}

.detail-meta-list dd {
  margin: 0;
  color: var(--muted-strong);
}

.detail-content {
  margin-top: 24px;
  padding: 28px;
}

.detail-content h2 {
  margin-top: 26px;
  font-size: 24px;
}

.detail-content h2:first-child {
  margin-top: 0;
}

.detail-content p {
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 16px;
}

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

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

.site-footer {
  margin-top: 70px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(2, 6, 23, 0.86);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 42px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 24px 32px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
}

.footer-brand p {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--muted);
}

.footer-group h2 {
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cyan);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 24px 30px;
  color: #64748b;
  font-size: 14px;
}

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

@media (max-width: 1160px) {
  .header-search {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr 260px;
    padding: 46px;
  }

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

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

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

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

  .menu-toggle {
    display: inline-block;
  }

  .header-inner {
    padding: 0 16px;
  }

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

  .hero {
    padding: 18px 14px 0;
  }

  .hero-stage {
    min-height: 620px;
    border-radius: 26px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 620px;
    padding: 34px 24px;
  }

  .hero-poster {
    display: none;
  }

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

  .home-intro,
  .section-heading,
  .category-preview-head {
    display: block;
  }

  .intro-search {
    margin-top: 20px;
  }

  .intro-search input,
  .inline-filter input {
    width: 100%;
  }

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

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

  .detail-side {
    max-width: 420px;
  }

  .home-intro,
  .page-hero,
  .content-section,
  .category-band,
  .category-preview,
  .ranking-layout,
  .detail-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .small-hero {
    margin-top: 18px;
    padding: 30px 20px;
  }
}

@media (max-width: 560px) {
  .brand-icon,
  .footer-logo span {
    width: 38px;
    height: 38px;
  }

  .quick-nav-inner {
    padding: 9px 16px;
  }

  .hero-stage {
    min-height: 590px;
  }

  .hero-content {
    min-height: 590px;
  }

  .hero h1,
  .home-intro h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero p,
  .home-intro p,
  .page-hero p {
    font-size: 15px;
  }

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

  .category-band,
  .movie-grid,
  .category-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .movie-card-wide {
    grid-template-columns: 1fr;
  }

  .detail-content,
  .play-info {
    padding: 22px 18px;
  }

  .big-play {
    width: 72px;
    height: 72px;
    font-size: 30px;
  }
}
