:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --blue-500: #3b82f6;
  --ink: #0f172a;
  --muted: #64748b;
  --line: rgba(14, 165, 233, 0.18);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, var(--sky-50), #ffffff 36%, #ffffff);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 0%, rgba(56, 189, 248, 0.18), transparent 35%),
    radial-gradient(circle at 90% 12%, rgba(59, 130, 246, 0.16), transparent 30%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner,
.mobile-panel,
.footer-grid,
.footer-bottom,
.content-section,
.quick-search-panel,
.detail-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 72px;
}

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

.logo-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-400), var(--blue-500));
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 18px;
  color: var(--sky-700);
}

.logo-text small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--sky-500);
}

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

.nav-link {
  padding: 10px 13px;
  color: #334155;
  font-size: 14px;
  font-weight: 650;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sky-700);
  background: var(--sky-100);
  transform: translateY(-1px);
}

.header-search,
.mobile-search,
.home-search,
.search-large {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-search input,
.mobile-search input,
.home-search input,
.search-large input {
  width: 230px;
  height: 42px;
  padding: 0 16px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid var(--sky-200);
  border-radius: 999px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search input:focus,
.mobile-search input:focus,
.home-search input:focus,
.search-large input:focus {
  border-color: var(--sky-400);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

.header-search button,
.mobile-search button,
.home-search button {
  height: 42px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-500));
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.menu-button {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  color: var(--sky-700);
  background: var(--sky-100);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
}

.mobile-panel {
  padding-top: 12px;
  padding-bottom: 18px;
  border-top: 1px solid var(--line);
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  color: #ffffff;
  background: linear-gradient(135deg, #0c4a6e, #0284c7 48%, #38bdf8);
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 90px max(24px, calc((100vw - 1240px) / 2 + 20px)) 80px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(12, 74, 110, 0.94), rgba(2, 132, 199, 0.78), rgba(14, 165, 233, 0.46)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.18), rgba(15, 23, 42, 0.56)),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.18), transparent 28%);
}

.hero-content,
.hero-poster {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: #bae6fd;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
}

.hero h2 {
  margin: 18px 0 0;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 850;
}

.hero-desc {
  max-width: 760px;
  margin: 20px 0 0;
  color: #e0f2fe;
  font-size: 18px;
  line-height: 1.8;
}

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

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

.hero-tags span,
.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  color: var(--sky-700);
  background: var(--sky-100);
  border: 1px solid var(--sky-200);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(10px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 850;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-500));
  box-shadow: 0 14px 28px rgba(14, 165, 233, 0.26);
}

.btn.glass {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}

.btn.ghost {
  color: #e0f2fe;
  background: transparent;
  border: 1px solid rgba(224, 242, 254, 0.5);
}

.btn.small {
  min-height: 38px;
  padding: 0 16px;
}

.btn.full {
  width: 100%;
}

.hero-poster {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3 / 4.2;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.36);
  transform: rotate(2deg);
}

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

.hero-poster span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  color: #ffffff;
  background: rgba(14, 165, 233, 0.86);
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 45px rgba(14, 165, 233, 0.32);
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 36px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.36);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.hero-dot.active {
  background: #ffffff;
}

.quick-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: -54px;
  padding-top: 26px;
  padding-bottom: 26px;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-search-panel h2 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 900;
  color: var(--sky-700);
}

.quick-search-panel p {
  margin: 0;
  color: var(--muted);
}

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

.content-section {
  padding-top: 72px;
  padding-bottom: 10px;
}

.soft-panel {
  margin-top: 56px;
  padding-top: 42px;
  padding-bottom: 52px;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.86), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: 0 22px 58px rgba(14, 165, 233, 0.08);
}

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

.section-heading h2,
.search-toolbar h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: -0.03em;
}

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

.section-more {
  flex-shrink: 0;
  color: var(--sky-700);
  font-size: 14px;
  font-weight: 850;
}

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

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

.movie-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(186, 230, 253, 0.78);
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.movie-card:hover {
  border-color: rgba(56, 189, 248, 0.75);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  transform: translateY(-6px);
}

.poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4.08;
  background: linear-gradient(135deg, var(--sky-100), #dbeafe);
}

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

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

.poster-badge,
.play-float {
  position: absolute;
  z-index: 2;
}

.poster-badge {
  left: 12px;
  top: 12px;
  padding: 5px 10px;
  color: #ffffff;
  background: rgba(2, 132, 199, 0.88);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.play-float {
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 16px;
}

.card-meta,
.rank-meta {
  margin: 0 0 8px;
  color: var(--sky-700);
  font-size: 12px;
  font-weight: 750;
}

.movie-card h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 850;
}

.movie-card h2 a:hover,
.rank-info h2 a:hover {
  color: var(--sky-700);
}

.card-desc {
  min-height: 44px;
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

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

.category-tile,
.category-overview-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 14px 34px rgba(14, 165, 233, 0.09);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(14, 165, 233, 0.15);
}

.tile-covers,
.overview-covers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 120px;
  background: var(--sky-100);
}

.tile-covers img,
.overview-covers img {
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.category-tile strong,
.category-tile span {
  display: block;
  padding-left: 18px;
  padding-right: 18px;
}

.category-tile strong {
  padding-top: 16px;
  font-size: 19px;
  font-weight: 900;
}

.category-tile span {
  padding-top: 8px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.page-hero {
  color: #ffffff;
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
}

.page-hero.compact {
  padding: 72px max(24px, calc((100vw - 920px) / 2 + 20px));
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
  color: #e0f2fe;
  font-size: 17px;
  line-height: 1.8;
}

.page-actions {
  justify-content: center;
}

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

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

.category-overview-card > div {
  padding: 24px;
}

.category-overview-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
}

.category-overview-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.75;
}

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

.rank-row {
  display: grid;
  grid-template-columns: 62px 100px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.rank-num {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-500));
  border-radius: 18px;
  font-weight: 950;
}

.rank-cover {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 3 / 4;
}

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

.rank-info h2 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 900;
}

.rank-info p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.7;
}

.search-large {
  justify-content: center;
  margin-top: 28px;
}

.search-large input {
  width: min(640px, 68vw);
  height: 48px;
}

.search-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.search-toolbar span {
  color: var(--muted);
  font-weight: 700;
}

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

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

.breadcrumbs a {
  color: var(--sky-700);
  font-weight: 800;
}

.player-card,
.detail-card,
.side-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.player-card {
  overflow: hidden;
}

.video-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020617;
}

.video-player video,
.player-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-player video {
  z-index: 1;
  object-fit: contain;
}

.player-cover {
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  background: #020617;
  border: 0;
  cursor: pointer;
}

.player-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: blur(1px) saturate(1.06);
}

.player-cover.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.player-play {
  position: absolute;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--sky-500), var(--blue-500));
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 20px 48px rgba(14, 165, 233, 0.36);
  font-size: 32px;
}

.detail-card {
  margin-top: 22px;
  padding: 28px;
}

.detail-card h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 16px;
}

.detail-meta span {
  padding: 7px 12px;
  color: var(--sky-700);
  background: var(--sky-100);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.detail-tags {
  margin-bottom: 28px;
}

.detail-card h2,
.side-card h2 {
  margin: 22px 0 12px;
  font-size: 22px;
  font-weight: 900;
}

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

.detail-side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.side-card {
  padding: 20px;
}

.poster-side img {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 18px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.info-list div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(186, 230, 253, 0.7);
}

.info-list dt {
  color: var(--muted);
  font-weight: 800;
}

.info-list dd {
  margin: 0;
  color: var(--ink);
}

.site-footer {
  margin-top: 82px;
  background: linear-gradient(180deg, var(--sky-50), var(--sky-100));
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) 1fr 1fr;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 34px;
}

.footer-logo {
  color: var(--sky-700);
  font-size: 20px;
  font-weight: 900;
}

.site-footer p {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.75;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 900;
}

.site-footer section a:not(.footer-logo) {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer section a:hover {
  color: var(--sky-700);
}

.footer-bottom {
  padding-top: 18px;
  padding-bottom: 24px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .movie-grid.wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-slide {
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}

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

  .menu-button {
    display: block;
  }

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

  .hero-slide {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 72px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-poster {
    width: min(300px, 70vw);
    margin: 0 auto;
  }

  .quick-search-panel {
    grid-template-columns: 1fr;
    margin-top: -34px;
  }

  .home-search,
  .search-large {
    width: 100%;
  }

  .home-search input,
  .search-large input {
    width: 100%;
  }

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

  .category-overview-grid,
  .detail-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-overview-card {
    grid-template-columns: 1fr;
  }

  .rank-row {
    grid-template-columns: 52px 84px minmax(0, 1fr);
  }

  .rank-row .btn {
    grid-column: 3;
    justify-self: start;
  }
}

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

  .logo-text small {
    display: none;
  }

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

  .hero-slide {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-desc {
    font-size: 15px;
  }

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

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

  .quick-search-panel,
  .content-section,
  .detail-layout,
  .footer-grid,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .rank-row {
    grid-template-columns: 44px 76px minmax(0, 1fr);
    gap: 12px;
  }

  .rank-num {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    font-size: 13px;
  }

  .rank-info p,
  .rank-info .tag-list {
    display: none;
  }

  .detail-card,
  .side-card {
    padding: 18px;
  }

  .player-play {
    width: 74px;
    height: 74px;
    font-size: 26px;
  }
}
