* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #e2e8f0;
  background: #0f172a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container.narrow {
  width: min(100% - 32px, 900px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(100, 116, 139, 0.45);
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.96), rgba(15, 23, 42, 0.96));
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.28);
}

.header-inner {
  width: min(100% - 32px, 1280px);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.35);
}

.brand-copy strong,
.footer-brand {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: transparent;
  background: linear-gradient(90deg, #22d3ee, #60a5fa);
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-copy small {
  display: block;
  margin-top: 3px;
  color: #94a3b8;
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  flex: 1;
}

.nav-link,
.mobile-link {
  color: #cbd5e1;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link {
  padding: 10px 12px;
  font-size: 14px;
  white-space: nowrap;
}

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

.top-search,
.mobile-search,
.hero-search,
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-search input,
.mobile-search input,
.hero-search input,
.filter-bar input,
.filter-bar select {
  min-width: 0;
  color: #e2e8f0;
  border: 1px solid rgba(100, 116, 139, 0.7);
  border-radius: 13px;
  background: rgba(51, 65, 85, 0.62);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.top-search input {
  width: 220px;
  padding: 10px 12px;
}

.top-search input:focus,
.mobile-search input:focus,
.hero-search input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(34, 211, 238, 0.86);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
  background: rgba(51, 65, 85, 0.84);
}

.top-search button,
.mobile-search button,
.hero-search button,
.primary-btn,
.rank-action {
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  box-shadow: 0 16px 36px rgba(14, 165, 233, 0.28);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.top-search button,
.mobile-search button {
  padding: 10px 16px;
}

.top-search button:hover,
.mobile-search button:hover,
.hero-search button:hover,
.primary-btn:hover,
.rank-action:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(51, 65, 85, 0.7);
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: #cbd5e1;
}

.mobile-panel {
  display: none;
  border-top: 1px solid rgba(100, 116, 139, 0.35);
  padding: 16px;
  background: rgba(15, 23, 42, 0.98);
}

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

.mobile-search {
  margin-bottom: 14px;
}

.mobile-search input {
  flex: 1;
  padding: 12px;
}

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

.mobile-link {
  padding: 12px;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #020617;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.65s ease;
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(0deg, #0f172a 0%, rgba(15, 23, 42, 0.72) 42%, rgba(15, 23, 42, 0.18) 100%),
    linear-gradient(90deg, rgba(15, 23, 42, 0.86), rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.56));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 32px, 1280px);
  min-height: 72vh;
  margin: 0 auto;
  padding: 110px 0 140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #22d3ee;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1,
.page-hero h1 {
  max-width: 820px;
  margin: 16px 0 18px;
  color: #ffffff;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-content p,
.page-hero p {
  max-width: 760px;
  color: #cbd5e1;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-meta,
.card-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

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

.hero-meta span,
.card-meta span,
.detail-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.52);
}

.hero-meta span {
  padding: 7px 12px;
}

.card-meta span,
.detail-meta span {
  padding: 4px 9px;
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-weight: 800;
}

.ghost-btn {
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  color: #e2e8f0;
  background: rgba(15, 23, 42, 0.52);
  backdrop-filter: blur(12px);
}

.ghost-btn:hover {
  color: #22d3ee;
  border-color: rgba(34, 211, 238, 0.65);
}

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

.hero-dots button {
  width: 30px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(226, 232, 240, 0.36);
}

.hero-dots button.active {
  background: #22d3ee;
}

.hero-search {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  width: min(92%, 760px);
  padding: 10px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(18px);
}

.hero-search input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 13px 18px;
}

.hero-search button {
  padding: 13px 24px;
}

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

.section-muted {
  background: rgba(30, 41, 59, 0.5);
}

.section-gradient {
  background: linear-gradient(180deg, rgba(15, 23, 42, 1), rgba(30, 41, 59, 0.88));
}

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

.section-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 8px 0 0;
  color: #94a3b8;
}

.section-more,
.text-link {
  color: #22d3ee;
  font-weight: 800;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 380px);
  gap: 22px;
  overflow-x: auto;
  padding: 2px 2px 18px;
  scrollbar-width: thin;
}

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

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

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

.card-cover {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #1e293b;
  box-shadow: 0 22px 52px rgba(2, 6, 23, 0.28);
}

.movie-card-wide .card-cover {
  aspect-ratio: 16 / 9;
}

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

.cover-gradient,
.card-cover::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  content: "";
}

.play-chip {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(6, 182, 212, 0.92);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.32);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.movie-card:hover .card-cover img,
.compact-card:hover img,
.rank-item:hover img,
.timeline-item:hover img {
  transform: scale(1.07);
  filter: saturate(1.08);
}

.movie-card:hover .cover-gradient,
.movie-card:hover .card-cover::after,
.movie-card:hover .play-chip {
  opacity: 1;
  transform: translateY(0);
}

.card-body {
  padding: 14px 2px 0;
}

.card-body h2,
.rank-copy h2,
.timeline-item h2 {
  margin: 8px 0 6px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

.card-body h2 a:hover,
.rank-copy h2 a:hover,
.timeline-item h2 a:hover {
  color: #22d3ee;
}

.card-body p,
.rank-copy p,
.timeline-item p {
  margin: 0;
  color: #94a3b8;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag-row span {
  padding: 4px 9px;
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 12px;
  background: rgba(51, 65, 85, 0.78);
}

.rank-list {
  display: grid;
  gap: 14px;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 58px 142px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 18px;
  background: rgba(30, 41, 59, 0.58);
  transition: border 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.rank-item:hover {
  border-color: rgba(34, 211, 238, 0.45);
  background: rgba(51, 65, 85, 0.66);
  transform: translateY(-2px);
}

.rank-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
}

.rank-thumb {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: #1e293b;
}

.rank-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.rank-action {
  padding: 10px 18px;
  font-weight: 800;
}

.timeline-list {
  display: grid;
  gap: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 58px 260px 1fr;
  align-items: center;
  gap: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(30, 41, 59, 0.52);
}

.timeline-index {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
}

.timeline-cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
}

.timeline-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

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

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

.category-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  border-radius: 24px;
  background: #1e293b;
  box-shadow: 0 22px 52px rgba(2, 6, 23, 0.28);
}

.category-card img,
.category-card::after {
  position: absolute;
  inset: 0;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card::after {
  content: "";
  background: linear-gradient(0deg, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.25));
}

.category-card span:last-child {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.category-card strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
}

.category-card small {
  display: block;
  margin-top: 8px;
  color: #cbd5e1;
  line-height: 1.5;
}

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

.category-card-large {
  min-height: 230px;
}

.category-thumbs {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.category-thumbs img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  position: relative;
  min-height: 330px;
  padding: 86px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.page-hero.category-hero {
  text-align: left;
  place-items: end start;
}

.page-hero.category-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero > img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

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

.page-hero-overlay {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.42));
}

.filter-bar {
  align-items: end;
  gap: 14px;
  margin-bottom: 28px;
  padding: 18px;
  border: 1px solid rgba(100, 116, 139, 0.25);
  border-radius: 22px;
  background: rgba(30, 41, 59, 0.55);
}

.filter-bar label {
  display: grid;
  gap: 8px;
  flex: 1;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 700;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  padding: 12px;
}

.empty-state {
  padding: 46px 20px;
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 20px;
  color: #94a3b8;
  text-align: center;
  background: rgba(30, 41, 59, 0.45);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
  padding-top: 32px;
  padding-bottom: 70px;
}

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

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #94a3b8;
  font-size: 14px;
}

.breadcrumb a:hover {
  color: #22d3ee;
}

.player-shell {
  margin-bottom: 22px;
}

.video-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.watch-video {
  width: 100%;
  height: 100%;
  background: #000000;
}

.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000000;
}

.player-cover img,
.player-shade {
  position: absolute;
  inset: 0;
}

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

.player-shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.player-play {
  position: relative;
  z-index: 3;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  margin: auto;
  border-radius: 999px;
  color: #ffffff;
  font-size: 38px;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  box-shadow: 0 24px 56px rgba(34, 211, 238, 0.36);
}

.video-player.is-ready .player-cover {
  display: none;
}

.player-notice {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  color: #ffffff;
  text-align: center;
  pointer-events: none;
}

.player-notice:empty {
  display: none;
}

.detail-card,
.side-card {
  margin-bottom: 22px;
  padding: 26px;
  border: 1px solid rgba(100, 116, 139, 0.22);
  border-radius: 24px;
  background: rgba(30, 41, 59, 0.58);
}

.detail-card h1 {
  margin: 14px 0 14px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.detail-card .lead {
  margin: 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.prose-card h2,
.side-card h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 24px;
}

.prose-card h2::before,
.side-card h2::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 24px;
  margin-right: 10px;
  border-radius: 99px;
  vertical-align: -5px;
  background: linear-gradient(180deg, #22d3ee, #3b82f6);
}

.prose-card p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.9;
  white-space: pre-line;
}

.sticky-card {
  position: sticky;
  top: 104px;
}

.compact-list {
  display: grid;
  gap: 14px;
}

.compact-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.compact-card img {
  width: 120px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  overflow: hidden;
  border-radius: 12px;
  background: #1e293b;
  transition: transform 0.35s ease;
}

.compact-card strong {
  display: block;
  color: #ffffff;
  line-height: 1.35;
}

.compact-card small {
  display: block;
  margin-top: 5px;
  color: #94a3b8;
}

.site-footer {
  border-top: 1px solid rgba(100, 116, 139, 0.22);
  background: #020617;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 34px;
  padding: 44px 0;
}

.site-footer p {
  max-width: 520px;
  color: #94a3b8;
  line-height: 1.8;
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 7px 10px;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(30, 41, 59, 0.78);
}

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

.footer-bottom {
  padding: 18px;
  color: #64748b;
  text-align: center;
  border-top: 1px solid rgba(100, 116, 139, 0.15);
}

[hidden] {
  display: none !important;
}

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

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

  .rank-list-home {
    grid-template-columns: 1fr;
  }

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

  .sticky-card {
    position: static;
  }
}

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

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

  .hero-content {
    padding-bottom: 150px;
  }

  .hero-search {
    border-radius: 24px;
  }

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

  .timeline-item,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .rank-number,
  .rank-action {
    justify-self: start;
  }

  .rank-thumb,
  .timeline-cover {
    width: 100%;
  }
}

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

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 78vh;
  }

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

  .hero-actions,
  .hero-search,
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .hero-search button,
  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .section-head {
    display: block;
  }

  .section-more {
    display: inline-block;
    margin-top: 12px;
  }

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

  .scroll-row {
    grid-auto-columns: 82%;
  }

  .compact-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .compact-card img {
    width: 96px;
  }

  .detail-card,
  .side-card {
    padding: 20px;
    border-radius: 20px;
  }

  .player-play {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }
}
