:root {
  --rose: #e11d48;
  --rose-dark: #be123c;
  --pink: #db2777;
  --amber: #f59e0b;
  --green: #10b981;
  --blue: #2563eb;
  --purple: #7c3aed;
  --cyan: #0891b2;
  --orange: #f97316;
  --text: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #ffffff;
  --soft: #fff1f2;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 46%, #fffbeb 100%);
  min-height: 100vh;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.85);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.nav-shell,
.footer-shell,
.section-shell,
.hero-inner,
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav-shell {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #fb7185, var(--pink));
  box-shadow: 0 12px 22px rgba(225, 29, 72, 0.28);
  font-size: 16px;
  padding-left: 2px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand-copy strong,
.footer-brand {
  font-size: 20px;
  background: linear-gradient(90deg, var(--rose), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

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

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

.nav-link:hover,
.nav-link.active {
  color: var(--rose);
  background: #fff1f2;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #fff1f2;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: var(--rose);
}

.mobile-nav {
  display: none;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.mobile-nav a {
  display: block;
  padding: 14px 18px;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  font-weight: 700;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

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

.hero-section {
  position: relative;
  height: 640px;
  overflow: hidden;
  background: #9f1239;
  margin-top: 0;
}

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

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

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  transform: scale(1.04);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(225, 29, 72, 0.94), rgba(219, 39, 119, 0.88) 44%, rgba(245, 158, 11, 0.82));
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(0deg, #fff1f2, rgba(255, 241, 242, 0));
  z-index: 5;
}

.hero-inner {
  position: relative;
  z-index: 6;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 66px;
}

.hero-content {
  width: min(720px, 100%);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.hero-content h1 {
  margin: 24px 0 18px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-content h1 span {
  color: #fde68a;
}

.hero-content p {
  max-width: 680px;
  margin: 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-tags a,
.hero-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
  font-size: 14px;
}

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

.btn-primary,
.btn-ghost,
.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: #fff;
  color: var(--rose);
  box-shadow: 0 14px 26px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover,
.btn-soft:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
}

.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-soft {
  color: #fff;
  background: linear-gradient(90deg, var(--rose), var(--pink));
  box-shadow: 0 12px 24px rgba(225, 29, 72, 0.28);
}

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

.hero-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.section-shell,
.page-shell {
  padding: 72px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-title > span:last-child {
  flex: 1;
}

.section-title h1,
.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.section-title p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink));
  box-shadow: 0 14px 28px rgba(225, 29, 72, 0.22);
  flex: 0 0 auto;
}

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

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

.movie-card,
.rank-card,
.category-card,
.info-card {
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.78);
}

.movie-card {
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

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

.card-link,
.card-body {
  display: block;
}

.poster-frame {
  position: relative;
  display: block;
  height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, #fecdd3, #fce7f3);
}

.movie-card.large .poster-frame {
  height: 410px;
}

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

.movie-card:hover .poster-frame img,
.rank-card:hover img,
.mini-card:hover img {
  transform: scale(1.08);
}

.poster-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.05) 62%, rgba(0, 0, 0, 0.14));
}

.type-badge,
.rating-badge {
  position: absolute;
  top: 14px;
  z-index: 2;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.type-badge {
  right: 14px;
}

.rating-badge {
  left: 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.play-bubble {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.24);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.22s ease, transform 0.22s ease;
  padding-left: 3px;
  z-index: 3;
}

.movie-card:hover .play-bubble {
  opacity: 1;
  transform: scale(1);
}

.card-body {
  padding: 18px;
}

.card-body strong {
  display: -webkit-box;
  min-height: 52px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.42;
}

.movie-card.large .card-body strong {
  font-size: 24px;
}

.card-body em {
  display: -webkit-box;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-style: normal;
  min-height: 46px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: #6b7280;
  font-size: 12px;
}

.card-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: #f9fafb;
}

.gradient-band {
  background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 50%, #eff6ff 100%);
}

.rose-band {
  background: linear-gradient(135deg, #fff1f2 0%, #ffffff 50%, #fdf2f8 100%);
}

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

.category-tile {
  position: relative;
  min-height: 210px;
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18));
}

.tile-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.tile-content strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.tile-content em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
}

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

.rank-card a {
  display: grid;
  grid-template-columns: 56px 116px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.rank-index {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--amber), var(--rose));
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.22);
}

.rank-card img {
  width: 116px;
  height: 86px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.rank-info strong,
.rank-info em,
.rank-info small {
  display: block;
}

.rank-info strong {
  font-size: 18px;
  margin-bottom: 6px;
}

.rank-info em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rank-info small {
  margin-top: 8px;
  color: #9ca3af;
}

.filter-panel {
  display: flex;
  align-items: stretch;
  gap: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(229, 231, 235, 0.9);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  border-radius: 24px;
  margin: 26px 0 34px;
  backdrop-filter: blur(12px);
}

.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f3f4f6;
}

.search-box span {
  color: var(--rose);
  font-weight: 850;
}

.search-box input,
.select-input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
}

.search-box input {
  min-height: 50px;
}

.select-input {
  width: 200px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f3f4f6;
  font-weight: 700;
}

.page-hero {
  padding: 138px 0 70px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), var(--pink) 55%, var(--amber));
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(8px);
}

.page-hero .page-shell {
  position: relative;
  padding: 0;
}

.page-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(36px, 6vw, 58px);
  line-height: 1.05;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.75;
}

.breadcrumb {
  margin-top: 86px;
  border-bottom: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(12px);
}

.breadcrumb .page-shell {
  padding: 16px 0;
  color: #6b7280;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--rose);
  font-weight: 700;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.88fr);
  gap: 30px;
}

.player-card,
.detail-card,
.side-card {
  background: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.85);
}

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

.movie-player video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  cursor: pointer;
  background: #050505;
}

.player-start {
  position: absolute;
  inset: 0;
  z-index: 4;
  margin: auto;
  width: 92px;
  height: 92px;
  border-radius: 999px;
  border: 0;
  display: grid;
  place-items: center;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.32);
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-start span {
  display: block;
  font-size: 38px;
  transform: translateX(3px);
}

.player-start:hover {
  transform: scale(1.05);
}

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

.detail-card {
  padding: 30px;
  margin-top: 24px;
}

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

.detail-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563;
  font-size: 13px;
  font-weight: 750;
}

.detail-card h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.detail-lead {
  margin: 0 0 22px;
  color: #4b5563;
  font-size: 19px;
  line-height: 1.8;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  color: #6b7280;
}

.detail-meta strong {
  color: var(--text);
}

.detail-section {
  margin-top: 28px;
}

.detail-section h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.detail-section p {
  margin: 0;
  color: #374151;
  line-height: 1.9;
  font-size: 17px;
  white-space: pre-line;
}

.side-card {
  padding: 22px;
  margin-bottom: 22px;
}

.side-card.sticky {
  position: sticky;
  top: 92px;
}

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

.cover-card h2,
.side-card h2,
.side-card h3 {
  margin: 18px 0 12px;
  font-size: 22px;
}

.cover-card p,
.side-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.mini-card a {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

.mini-card:last-child a {
  border-bottom: 0;
}

.mini-card img {
  width: 82px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.mini-card strong {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  line-height: 1.42;
}

.mini-card small {
  display: block;
  margin-top: 6px;
  color: #9ca3af;
}

.cta-panel {
  border-radius: 30px;
  padding: 58px;
  text-align: center;
  background: linear-gradient(135deg, #ffe4e6, #fdf2f8 50%, #fef3c7);
  border: 1px solid rgba(251, 113, 133, 0.22);
  box-shadow: var(--shadow-soft);
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-panel p {
  margin: 0 auto 26px;
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.site-footer {
  padding: 52px 0 34px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: flex-start;
}

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

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

.footer-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff1f2;
  color: var(--rose);
  font-weight: 750;
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 0;
  color: #9ca3af;
}

.accent-rose { background: linear-gradient(135deg, #e11d48, #db2777); }
.accent-amber { background: linear-gradient(135deg, #f59e0b, #f97316); }
.accent-green { background: linear-gradient(135deg, #10b981, #059669); }
.accent-blue { background: linear-gradient(135deg, #2563eb, #0891b2); }
.accent-purple { background: linear-gradient(135deg, #7c3aed, #db2777); }
.accent-pink { background: linear-gradient(135deg, #db2777, #fb7185); }
.accent-cyan { background: linear-gradient(135deg, #0891b2, #2563eb); }
.accent-orange { background: linear-gradient(135deg, #f97316, #e11d48); }

.empty-state {
  display: none;
  padding: 36px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  text-align: center;
}

.empty-state.show {
  display: block;
}

@media (max-width: 1024px) {
  .movie-grid,
  .movie-grid.large-grid,
  .category-grid,
  .rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .side-card.sticky {
    position: static;
  }
}

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

  .menu-toggle {
    display: flex;
  }

  .brand-copy small {
    display: none;
  }

  .hero-section {
    height: 710px;
  }

  .hero-inner {
    align-items: flex-end;
    padding-bottom: 112px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .section-shell,
  .page-shell {
    padding: 52px 0;
  }

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

  .poster-frame,
  .movie-card.large .poster-frame {
    height: 300px;
  }

  .rank-card a {
    grid-template-columns: 44px 92px 1fr;
    gap: 12px;
  }

  .rank-card img {
    width: 92px;
    height: 74px;
  }

  .rank-index {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .filter-panel {
    flex-direction: column;
  }

  .select-input {
    width: 100%;
  }

  .footer-shell {
    flex-direction: column;
  }

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

  .detail-card {
    padding: 22px;
  }

  .cta-panel {
    padding: 36px 22px;
  }
}
