:root {
  --bg: #0f172a;
  --panel: rgba(15, 23, 42, 0.78);
  --panel-solid: #111827;
  --card: rgba(30, 41, 59, 0.78);
  --card-soft: rgba(15, 23, 42, 0.72);
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(34, 211, 238, 0.36);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --soft: #cbd5e1;
  --cyan: #22d3ee;
  --blue: #3b82f6;
  --violet: #8b5cf6;
  --gold: #fbbf24;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 8%, rgba(34, 211, 238, 0.16), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(59, 130, 246, 0.14), transparent 30rem),
    linear-gradient(180deg, #020617 0%, var(--bg) 36%, #0b1120 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 {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

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

.nav-shell {
  display: flex;
  align-items: center;
  gap: 26px;
  width: min(1280px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: #05141f;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.34);
}

.brand-text,
.footer-brand span:last-child {
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.nav-link {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--soft);
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
}

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

.nav-search input,
.mobile-search input,
.filter-search input,
.search-page-form input,
.filter-selects select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(15, 23, 42, 0.92);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search input {
  width: 240px;
  padding: 11px 14px;
}

.nav-search input:focus,
.mobile-search input:focus,
.filter-search input:focus,
.search-page-form input:focus,
.filter-selects select:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}

.nav-search button,
.mobile-search button,
.search-page-form button,
.hero-action,
.section-more,
.player-start,
.load-more-btn {
  border: 0;
  border-radius: 14px;
  color: #04111d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-search button,
.mobile-search button,
.search-page-form button {
  padding: 11px 14px;
}

.nav-search button:hover,
.mobile-search button:hover,
.search-page-form button:hover,
.hero-action:hover,
.section-more:hover,
.player-start:hover,
.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(14, 165, 233, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 8px;
  background: var(--text);
}

.mobile-panel {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.96);
}

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

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

.mobile-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.mobile-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--soft);
  background: rgba(30, 41, 59, 0.66);
}

main {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
}

.hero-carousel,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.7s ease, transform 0.7s ease;
  background-position: center;
  background-size: cover;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, 0.96) 0%, rgba(2, 6, 23, 0.74) 43%, rgba(2, 6, 23, 0.26) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.14) 0%, rgba(2, 6, 23, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 56px;
  width: min(1280px, calc(100% - 32px));
  min-height: 640px;
  margin: 0 auto;
  padding: 72px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: var(--cyan);
}

.hero h1 {
  max-width: 830px;
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 720px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

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

.hero-tags {
  margin: 24px 0 30px;
}

.hero-tags span,
.detail-tags span,
.tag-row span,
.category-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(34, 211, 238, 0.24);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(15, 23, 42, 0.62);
  font-size: 0.82rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
}

.hero-action.secondary {
  color: var(--text);
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid var(--line-strong);
}

.hero-poster-stack {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 16px;
  align-items: end;
}

.hero-poster-main,
.hero-poster-side {
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.48);
  box-shadow: var(--shadow);
}

.hero-poster-main {
  aspect-ratio: 3 / 4.05;
}

.hero-poster-side {
  aspect-ratio: 3 / 4.35;
  transform: translateY(36px);
  opacity: 0.82;
}

.hero-poster-main img,
.hero-poster-side img,
.poster-link img,
.detail-cover img,
.category-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.hero-dot {
  width: 42px;
  height: 4px;
  border: 0;
  border-radius: 99px;
  background: rgba(203, 213, 225, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
}

.content-section,
.page-hero,
.detail-layout,
.detail-content,
.player-section,
.categories-wrap,
.search-wrap,
.rank-wrap,
.movies-wrap {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

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

.content-section:last-child {
  padding-bottom: 72px;
}

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

.section-head h2,
.page-hero h1,
.detail-title h1,
.search-head h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-head p,
.page-hero p,
.search-head p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
}

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

.movie-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.76), rgba(15, 23, 42, 0.92));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.movie-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.42);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.poster-link {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4.15;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
}

.poster-link img {
  transition: transform 0.35s ease, filter 0.35s ease;
}

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

.movie-badge,
.rank-badge,
.play-dot {
  position: absolute;
  z-index: 2;
}

.movie-badge {
  left: 12px;
  top: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 800;
}

.rank-badge {
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 12px;
  color: #1e1200;
  background: linear-gradient(135deg, #fde68a, var(--gold));
  font-style: normal;
  font-weight: 900;
}

.play-dot {
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #06121f;
  background: rgba(34, 211, 238, 0.92);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

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

.movie-body {
  padding: 16px;
}

.movie-kicker {
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.movie-body h2,
.movie-body h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.32;
}

.movie-body p {
  display: -webkit-box;
  min-height: 48px;
  margin: 0 0 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.92rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-row {
  gap: 6px;
}

.tag-row span {
  min-height: 24px;
  padding: 3px 8px;
  font-size: 0.75rem;
}

.page-hero {
  padding: 72px 0 34px;
}

.page-hero-inner {
  overflow: hidden;
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 15%, rgba(34, 211, 238, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(30, 41, 59, 0.86), rgba(15, 23, 42, 0.96));
  box-shadow: var(--shadow);
}

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.94));
}

.category-card a {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
  gap: 20px;
  height: 100%;
  padding: 24px;
}

.category-card h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}

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

.category-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-self: stretch;
}

.category-preview figure {
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.8);
}

.category-preview figure:first-child {
  transform: translateY(18px);
}

.filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.95fr) minmax(0, 1.5fr);
  gap: 18px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.72);
}

.filter-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.filter-search input {
  width: 100%;
  padding: 13px 14px;
}

.filter-selects {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.filter-selects select {
  width: 100%;
  padding: 13px 14px;
}


.category-chip {
  display: flex;
  flex: 1 1 220px;
  flex-direction: column;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.74), rgba(15, 23, 42, 0.92));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.category-chip:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.42);
}

.category-chip strong {
  color: var(--text);
  font-size: 1rem;
}

.category-chip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.78);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(160px, 0.55fr));
  gap: 34px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 42px 0;
}

.footer-shell p {
  max-width: 540px;
  margin: 16px 0 0;
  color: var(--muted);
}

.footer-group {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-group h2 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 1rem;
}

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

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

.footer-bottom {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.no-results {
  display: none;
  width: min(1280px, calc(100% - 32px));
  margin: 24px auto 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  color: var(--muted);
  background: rgba(15, 23, 42, 0.72);
  text-align: center;
}

.no-results.show {
  display: block;
}

.detail-hero {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.player-section {
  padding-top: 18px;
}

.player-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.26);
  border-radius: 30px;
  background: #000;
  box-shadow: var(--shadow);
}

.player-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 0;
  color: #06121f;
  background:
    radial-gradient(circle at center, rgba(34, 211, 238, 0.32), rgba(2, 6, 23, 0.78) 48%, rgba(2, 6, 23, 0.9) 100%);
}

.player-start span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  font-size: 2rem;
  box-shadow: 0 0 46px rgba(34, 211, 238, 0.42);
}

.player-start strong {
  color: #fff;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.player-start.is-hidden {
  pointer-events: none;
  opacity: 0;
}

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

.detail-content,
.detail-side-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.detail-content {
  padding: 30px;
}

.detail-title h1 {
  margin-bottom: 16px;
}

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

.detail-meta span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--soft);
  background: rgba(30, 41, 59, 0.78);
}

.detail-content h2 {
  margin: 30px 0 12px;
  color: var(--text);
  font-size: 1.45rem;
}

.detail-content p {
  margin: 0;
  color: var(--soft);
}

.detail-cover {
  overflow: hidden;
  aspect-ratio: 3 / 4.1;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.9);
}

.detail-side-card {
  position: sticky;
  top: 94px;
  height: fit-content;
  padding: 18px;
}

.side-info {
  padding: 16px 2px 4px;
}

.side-info h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.side-info p {
  margin: 0;
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.related-grid .movie-card .movie-body p {
  min-height: 0;
}

.search-wrap,
.rank-wrap,
.movies-wrap,
.categories-wrap {
  padding-bottom: 72px;
}

.search-head {
  padding: 72px 0 26px;
}

.search-page-form {
  display: flex;
  gap: 12px;
  max-width: 760px;
  margin-top: 24px;
}

.search-page-form input {
  flex: 1;
  padding: 15px 16px;
}

.search-page-form button {
  padding: 0 22px;
}

.search-status {
  margin: 0 0 22px;
  color: var(--muted);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.load-more-btn {
  min-height: 46px;
  padding: 0 22px;
}

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

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

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

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

  .menu-toggle {
    display: block;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
  }

  .hero-poster-stack {
    max-width: 420px;
  }

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

  .category-list,
  .category-card a,
  .filter-panel,
  .footer-shell {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .nav-shell {
    min-height: 64px;
  }

  .brand-text {
    font-size: 1rem;
  }

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

  .hero-actions,
  .search-page-form {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-action,
  .search-page-form button {
    width: 100%;
  }

  .hero-poster-stack {
    grid-template-columns: 1fr 0.82fr;
  }

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

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

  .movie-body {
    padding: 12px;
  }

  .movie-body h2,
  .movie-body h3 {
    font-size: 0.98rem;
  }

  .page-hero-inner,
  .detail-content {
    padding: 24px;
  }

  .filter-selects,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .player-start span {
    width: 68px;
    height: 68px;
  }
}
