:root {
  --bg: #f9fafb;
  --paper: #ffffff;
  --ink: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --amber: #d97706;
  --amber-dark: #b45309;
  --amber-soft: #fffbeb;
  --orange-soft: #fff7ed;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fafb 0%, #ffffff 46%, #fff7ed 100%);
  font-family: 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,
video {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #f59e0b, #c2410c);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.28);
}

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

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

.nav-link,
.mobile-nav-link {
  padding: 9px 13px;
  border-radius: 12px;
  color: #4b5563;
  font-weight: 650;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active,
.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--amber-dark);
  background: var(--amber-soft);
}

.nav-link.subtle {
  font-size: 14px;
  color: #6b7280;
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #374151;
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
}

.mobile-nav.open {
  display: grid;
  gap: 4px;
}

.hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #111827;
}

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

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(245, 158, 11, 0.22), transparent 34%),
    linear-gradient(90deg, rgba(17, 24, 39, 0.92) 0%, rgba(17, 24, 39, 0.70) 42%, rgba(17, 24, 39, 0.18) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.hero-copy {
  max-width: 680px;
  color: white;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fcd34d;
  background: rgba(0, 0, 0, 0.35);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero p {
  max-width: 620px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 2.2vw, 22px);
}

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

.hero-tags span,
.tag-row span,
.detail-tags span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 10px;
  color: #92400e;
  background: #fef3c7;
  font-size: 12px;
  font-weight: 700;
}

.hero-tags span {
  color: white;
  background: rgba(245, 158, 11, 0.28);
  border: 1px solid rgba(253, 230, 138, 0.35);
}

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

.primary-btn,
.ghost-btn,
.section-more,
.ranking-action,
.category-block-head a,
.home-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.primary-btn,
.ranking-action,
.category-block-head a,
.home-search button {
  color: white;
  background: var(--amber);
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.24);
}

.primary-btn:hover,
.ranking-action:hover,
.category-block-head a:hover,
.home-search button:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
}

.ghost-btn,
.section-more {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.section-more {
  color: var(--amber-dark);
  border-color: #fcd34d;
  background: #fffbeb;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.42);
  font-size: 38px;
  line-height: 1;
  backdrop-filter: blur(8px);
}

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

.hero-arrow.prev {
  left: 24px;
}

.hero-arrow.next {
  right: 24px;
}

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

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

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

.page-section {
  padding: 64px 0;
}

.no-top {
  padding-top: 22px;
}

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

.section-heading h2,
.category-block-head h2,
.side-card h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

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

.quick-search {
  position: relative;
  z-index: 5;
  margin-top: -54px;
}

.quick-search-card,
.filter-panel,
.detail-card,
.side-card,
.category-block,
.page-hero {
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.quick-search-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px;
}

.quick-search-card h2 {
  margin: 0 0 4px;
  font-size: 28px;
}

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

.home-search {
  display: flex;
  gap: 10px;
  min-width: min(520px, 100%);
}

.home-search input,
.search-box input,
.filter-select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
  color: #374151;
  background: #ffffff;
  outline: none;
}

.home-search input:focus,
.search-box input:focus,
.filter-select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.14);
}

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

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

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

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

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

.movie-card {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: 18px;
  background: white;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.13);
}

.poster-wrap {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fef3c7, #e5e7eb);
}

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

.movie-card:hover .poster-wrap img {
  transform: scale(1.06);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.movie-card:hover .poster-shade {
  opacity: 1;
}

.type-badge,
.rank-badge,
.play-badge {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.type-badge {
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  color: #fef3c7;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.rank-badge {
  top: 10px;
  left: 10px;
  width: 36px;
  height: 36px;
  color: white;
  background: linear-gradient(135deg, #f59e0b, #b45309);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.play-badge {
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  color: white;
  background: rgba(217, 119, 6, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-card-body {
  padding: 14px;
}

.movie-card h3 {
  min-height: 48px;
  margin: 0 0 8px;
  color: #111827;
  font-size: 16px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card h3 a:hover {
  color: var(--amber-dark);
}

.meta-line,
.movie-one-line {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.movie-one-line {
  display: -webkit-box;
  min-height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.movie-card.compact {
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: stretch;
}

.movie-card.compact .poster-wrap {
  height: 100%;
  aspect-ratio: auto;
}

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

.movie-card.compact h3 {
  min-height: 0;
}

.warm-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.pastel-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, #f5f3ff, #fdf2f8, #fffbeb);
}

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

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

.category-tile {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #fffbeb);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.45);
}

.category-name {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 850;
}

.category-intro {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.category-preview {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: flex;
  gap: 0;
}

.category-preview img {
  width: 52px;
  height: 72px;
  margin-left: -14px;
  border: 3px solid white;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14);
}

.inner-page {
  padding-top: 34px;
  padding-bottom: 70px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  margin: 0 0 26px;
  padding: 42px;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 158, 11, 0.22), transparent 30%),
    linear-gradient(135deg, #ffffff, #fffbeb);
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.category-blocks {
  display: grid;
  gap: 26px;
}

.category-block {
  padding: 26px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  margin: 0 0 24px;
  padding: 18px;
}

.search-box span {
  display: block;
  margin-bottom: 6px;
  color: #4b5563;
  font-weight: 750;
}

.filter-row {
  display: flex;
  gap: 10px;
}

.filter-select {
  min-width: 150px;
}

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

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

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

.ranking-row {
  display: grid;
  grid-template-columns: 92px 54px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
}

.ranking-cover {
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 2 / 3;
}

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

.ranking-index {
  color: #b45309;
  font-size: 28px;
  font-weight: 900;
}

.ranking-main h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.ranking-main h2 a:hover {
  color: var(--amber-dark);
}

.ranking-main p {
  margin: 0 0 10px;
  color: var(--muted);
}

.ranking-meta span {
  padding: 4px 9px;
  border-radius: 999px;
  color: #7c2d12;
  background: #ffedd5;
  font-size: 12px;
  font-weight: 700;
}

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

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

.player-shell {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 24px;
  background: #000000;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
  aspect-ratio: 16 / 9;
}

.movie-player,
.player-cover,
.player-cover img {
  width: 100%;
  height: 100%;
}

.movie-player {
  background: #000000;
  object-fit: contain;
}

.player-cover {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  color: white;
  background: #000000;
}

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

.player-cover img {
  object-fit: cover;
  opacity: 0.82;
}

.player-cover-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62));
}

.player-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.94);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  font-size: 34px;
  transform: translate(-50%, -50%);
}

.player-error {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  color: white;
  background: rgba(127, 29, 29, 0.86);
}

.player-error.show {
  display: block;
}

.detail-card {
  padding: 28px;
}

.detail-card h1 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

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

.detail-meta span {
  padding: 6px 10px;
  border-radius: 10px;
  color: #92400e;
  background: #fffbeb;
  font-weight: 750;
}

.lead-text {
  margin: 0 0 20px;
  padding: 18px;
  border-radius: 18px;
  color: #78350f;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
  font-size: 18px;
  font-weight: 700;
}

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

.text-block {
  margin-top: 28px;
}

.text-block h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.text-block p {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.9;
}

.review-block {
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.detail-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.side-card {
  padding: 18px;
}

.poster-card {
  display: grid;
  gap: 14px;
}

.poster-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.poster-card strong,
.poster-card span {
  display: block;
}

.poster-card strong {
  font-size: 20px;
}

.poster-card span {
  color: var(--amber-dark);
  font-weight: 800;
}

.side-related {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.side-related .movie-card {
  box-shadow: none;
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: #111827;
  color: #d1d5db;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner p {
  margin: 0;
  color: #9ca3af;
}

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

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

.is-hidden-card {
  display: none !important;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px dashed #f59e0b;
  border-radius: 18px;
  color: #92400e;
  background: #fffbeb;
  text-align: center;
}

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

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

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

  .detail-side {
    position: static;
  }
}

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

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

  .hero {
    min-height: 560px;
  }

  .hero-content {
    align-items: flex-end;
    padding-bottom: 88px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.20), rgba(17, 24, 39, 0.92));
  }

  .hero-arrow {
    display: none;
  }

  .quick-search-card,
  .section-heading,
  .category-block-head,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .home-search,
  .filter-panel,
  .filter-row {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .movie-grid.six-cols,
  .movie-grid.five-cols,
  .movie-grid.four-cols,
  .category-grid,
  .list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .warm-section,
  .pastel-section,
  .page-hero,
  .category-block {
    padding: 24px;
  }

  .ranking-row {
    grid-template-columns: 70px 42px 1fr;
  }

  .ranking-action {
    grid-column: 3;
    width: fit-content;
  }
}

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

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

  .hero {
    min-height: 520px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .movie-grid.six-cols,
  .movie-grid.five-cols,
  .movie-grid.four-cols,
  .category-grid,
  .list-grid {
    grid-template-columns: 1fr;
  }

  .movie-card.compact {
    grid-template-columns: 92px 1fr;
  }

  .quick-search {
    margin-top: -30px;
  }

  .ranking-row {
    grid-template-columns: 70px 1fr;
  }

  .ranking-index {
    position: absolute;
    margin: 8px;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  }

  .ranking-action {
    grid-column: 2;
  }

  .player-icon {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }
}
