:root {
  color-scheme: light;
  --page-bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eff6ff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --teal: #0d9488;
  --orange: #f97316;
  --amber: #f59e0b;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body.nav-open {
  overflow: hidden;
}

img {
  background: linear-gradient(135deg, #dbeafe, #e0f2fe);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}

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

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.logo-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.3);
}

.logo-text {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.main-nav a,
.mobile-panel a {
  border-radius: 999px;
  color: #334155;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.main-nav a {
  padding: 10px 14px;
}

.main-nav a:hover,
.main-nav a.active {
  background: #eff6ff;
  color: var(--blue);
}

.header-search {
  position: relative;
  display: flex;
  width: 260px;
  align-items: center;
}

.header-search input,
.page-search input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.header-search input {
  padding: 11px 42px 11px 16px;
}

.header-search input:focus,
.page-search input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.search-submit {
  position: absolute;
  right: 6px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: #f1f5f9;
  color: #0f172a;
}

.mobile-panel {
  display: none;
  padding: 0 16px 18px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.mobile-panel a {
  display: block;
  padding: 13px 16px;
}

.mobile-panel a:hover,
.mobile-panel a.active {
  background: #eff6ff;
  color: var(--blue);
}

.mobile-panel .header-search {
  width: 100%;
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  background: linear-gradient(120deg, #1d4ed8 0%, #0891b2 48%, #0f766e 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 26%), radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.16), transparent 28%), linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.06) 75%, transparent 75%, transparent);
  background-size: auto, auto, 60px 60px;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.1));
}

.hero-stage {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 660px;
  align-items: center;
  padding: 70px 0 110px;
}

.hero-slide {
  position: absolute;
  inset: 70px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 44px;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hero-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #dffafe;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.hero h1 span {
  color: #bae6fd;
}

.hero-summary {
  max-width: 700px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.72;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  padding: 15px 24px;
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 38px rgba(15, 23, 42, 0.24);
}

.btn-ghost {
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

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

.hero-art {
  position: relative;
}

.hero-poster {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.36);
  transform: rotate(1.5deg);
}

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

.hero-poster::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.82));
}

.hero-meta-card {
  position: absolute;
  right: -10px;
  bottom: 28px;
  left: 26px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.58);
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.hero-meta-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
}

.hero-meta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.hero-dot.is-active {
  width: 34px;
  background: #ffffff;
}

.section {
  padding: 64px 0;
}

.section-soft {
  background: linear-gradient(90deg, #f8fafc, #eff6ff);
}

.section-warm {
  background: linear-gradient(90deg, #fffbeb, #fff7ed);
}

.lifted-grid {
  position: relative;
  z-index: 6;
  margin-top: -78px;
}

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

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.15;
  font-weight: 950;
  color: #0f172a;
}

.section-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.22);
}

.section-subtitle,
.page-lead {
  margin-top: 10px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 900;
}

.view-link:hover {
  color: #1d4ed8;
}

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

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

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.86);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.movie-card.large {
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 270px;
}

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

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.movie-card:not(.horizontal):not(.large) .poster-link {
  aspect-ratio: 3 / 4;
}

.movie-card.large .poster-link,
.movie-card.horizontal .poster-link {
  height: 100%;
  min-height: 220px;
  aspect-ratio: auto;
}

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

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

.poster-link::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(15, 23, 42, 0.7));
}

.badge,
.rating-badge,
.duration-badge,
.rank-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.badge {
  padding: 6px 10px;
  background: #dbeafe;
  color: #1d4ed8;
  font-size: 12px;
}

.rating-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  background: rgba(255, 251, 235, 0.95);
  color: #92400e;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.duration-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 12px;
}

.card-body {
  padding: 18px;
}

.movie-card.large .card-body,
.movie-card.horizontal .card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
}

.movie-title {
  margin-bottom: 9px;
  color: #0f172a;
  font-size: 19px;
  font-weight: 950;
  line-height: 1.35;
}

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

.movie-desc {
  display: -webkit-box;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.movie-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.tag-list span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 800;
}

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

.category-card {
  display: block;
  min-height: 170px;
  padding: 22px;
  border: 1px solid #dbeafe;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.category-card .category-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.category-card h3 {
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 950;
}

.category-card p {
  color: #64748b;
  line-height: 1.7;
}

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

.rank-item {
  display: grid;
  grid-template-columns: 64px 116px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid #fde68a;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(146, 64, 14, 0.07);
}

.rank-number {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--amber), var(--orange));
  color: #ffffff;
  font-size: 18px;
}

.rank-item img {
  width: 116px;
  height: 76px;
  border-radius: 14px;
  object-fit: cover;
}

.rank-item h3 {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 950;
}

.rank-item h3 a:hover {
  color: var(--blue);
}

.rank-item p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.page-hero {
  padding: 58px 0;
  background: linear-gradient(120deg, #eff6ff, #ecfeff);
  border-bottom: 1px solid #dbeafe;
}

.page-hero h1 {
  color: #0f172a;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

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

.page-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.page-search {
  position: relative;
  width: min(100%, 520px);
}

.page-search input {
  padding: 15px 18px;
  font-size: 16px;
}

.filter-result {
  color: #64748b;
  font-weight: 800;
}

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

.player-card,
.detail-card,
.side-card {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.player-card {
  overflow: hidden;
}

.player-wrap {
  position: relative;
  overflow: hidden;
  background: #000000;
  aspect-ratio: 16 / 9;
}

.player-wrap video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000000;
}

.play-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.16), rgba(15, 23, 42, 0.62));
  color: #ffffff;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

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

.play-icon {
  display: inline-flex;
  width: 86px;
  height: 86px;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.38);
  font-size: 38px;
}

.player-titlebar {
  padding: 18px 22px;
}

.player-titlebar h1 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.2;
  font-weight: 950;
}

.detail-card {
  padding: 26px;
}

.detail-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 950;
}

.detail-card p {
  color: #334155;
  font-size: 16px;
  line-height: 1.9;
}

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

.fact {
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
}

.fact span {
  display: block;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.fact strong {
  display: block;
  margin-top: 4px;
  color: #0f172a;
  font-size: 16px;
}

.side-card {
  position: sticky;
  top: 96px;
  padding: 20px;
}

.side-card h2,
.side-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 950;
}

.side-movie {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #e2e8f0;
}

.side-movie:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.side-movie img {
  width: 112px;
  height: 74px;
  border-radius: 14px;
  object-fit: cover;
}

.side-movie h4 {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 6px;
  color: #0f172a;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.side-movie h4:hover {
  color: var(--blue);
}

.side-movie p {
  color: #64748b;
  font-size: 12px;
}

.site-footer {
  margin-top: 64px;
  background: #0f172a;
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 40px;
  padding: 46px 0;
}

.footer-inner .logo-text {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.footer-inner p {
  max-width: 440px;
  margin-top: 14px;
  color: #94a3b8;
  line-height: 1.75;
}

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

.footer-links a {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  font-weight: 800;
}

.footer-links a:hover {
  background: rgba(37, 99, 235, 0.38);
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  color: #94a3b8;
  text-align: center;
}

.empty-state {
  padding: 42px;
  border: 1px dashed #cbd5e1;
  border-radius: 24px;
  background: #ffffff;
  color: #64748b;
  text-align: center;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .header-search {
    width: 210px;
  }

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

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

  .side-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .main-nav,
  .site-header > .container > .header-inner > .header-search {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

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

  .hero,
  .hero-stage {
    min-height: 780px;
  }

  .hero-stage {
    align-items: flex-start;
    padding: 34px 0 92px;
  }

  .hero-slide {
    inset: 34px 0 92px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-poster,
  .hero-poster img {
    min-height: 310px;
  }

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

  .movie-card.large,
  .movie-card.horizontal,
  .rank-item {
    grid-template-columns: 1fr;
  }

  .movie-card.large .poster-link,
  .movie-card.horizontal .poster-link {
    min-height: 250px;
    aspect-ratio: 16 / 10;
  }

  .rank-item img {
    width: 100%;
    height: 180px;
  }

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

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

  .logo {
    font-size: 19px;
  }

  .hero,
  .hero-stage {
    min-height: 820px;
  }

  .hero-summary {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .movie-grid,
  .movie-grid.compact,
  .movie-grid.three,
  .category-grid,
  .rank-list {
    grid-template-columns: 1fr;
  }

  .section-head,
  .page-tools {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .side-movie img {
    width: 96px;
    height: 68px;
  }
}
