:root {
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-500: #f97316;
  --ink: #1f1300;
  --muted: #7c4f12;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(120, 53, 15, 0.16);
  --soft-shadow: 0 8px 24px rgba(120, 53, 15, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--amber-900);
  background: linear-gradient(180deg, var(--amber-50), var(--orange-50) 42%, var(--amber-100));
}

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(255, 251, 235, 0.94), rgba(255, 247, 237, 0.94));
  box-shadow: 0 10px 30px rgba(120, 53, 15, 0.10);
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1280px;
  height: 72px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.brand-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
  font-size: 14px;
}

.brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--amber-600), var(--orange-500));
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  white-space: nowrap;
}

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

.nav-link,
.dropdown-trigger {
  color: var(--amber-800);
  font-weight: 700;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.dropdown-trigger:hover {
  color: var(--amber-600);
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 160px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--amber-800);
  font-weight: 700;
}

.dropdown-panel a:hover {
  background: var(--amber-100);
  color: var(--amber-600);
}

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

.header-search input,
.mobile-panel input,
.home-search-band input,
.filter-bar input,
.filter-bar select {
  border: 1px solid var(--amber-200);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--amber-900);
  outline: none;
}

.header-search input {
  width: 230px;
  padding: 10px 16px;
}

.header-search button,
.mobile-panel button,
.home-search-band button,
.filter-bar button {
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  background: var(--amber-500);
  font-weight: 800;
}

.header-search input:focus,
.mobile-panel input:focus,
.home-search-band input:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: var(--amber-500);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.16);
}

.mobile-toggle {
  display: none;
  margin-left: auto;
  color: var(--amber-800);
  font-size: 28px;
}

.mobile-panel {
  display: none;
  padding: 16px 24px 22px;
  border-top: 1px solid rgba(253, 230, 138, 0.78);
  background: rgba(255, 255, 255, 0.96);
}

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

.mobile-panel input {
  flex: 1;
  padding: 12px 16px;
}

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

.mobile-panel nav a {
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--amber-50);
  color: var(--amber-800);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #111;
}

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

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 900ms ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 5200ms ease;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.35), transparent 28%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.34) 45%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - 1280px) / 2 + 24px));
  right: 24px;
  bottom: 80px;
  max-width: 820px;
  color: #fff;
}

.hero-kicker,
.page-hero span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 9px 16px;
  border-radius: 999px;
  color: #fff;
  background: rgba(245, 158, 11, 0.88);
  font-weight: 800;
}

.hero h1,
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -0.06em;
  text-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.hero p {
  max-width: 760px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.90);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.36);
}

.hero-tags,
.detail-meta,
.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero-tags span,
.detail-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 16px 28px rgba(245, 158, 11, 0.28);
}

.btn.glass {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.btn:hover,
.movie-card:hover,
.category-tile:hover {
  transform: translateY(-3px);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 0, 0, 0.46);
  font-size: 34px;
  transform: translateY(-50%);
}

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

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

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

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

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-dots button.is-active {
  width: 34px;
  background: var(--amber-500);
}

.home-search-band,
.page-section,
.filter-bar,
.detail-content,
.player-section {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.home-search-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 28px;
  align-items: center;
  margin-top: -34px;
  position: relative;
  z-index: 2;
  padding-top: 28px;
  padding-bottom: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.home-search-band h2 {
  margin-bottom: 8px;
  color: var(--amber-900);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.home-search-band p {
  color: var(--amber-700);
  font-size: 16px;
}

.home-search-band input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
}

.page-section {
  padding-top: 58px;
  padding-bottom: 18px;
}

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

.section-head.mini {
  margin-bottom: 18px;
}

.section-head h2 {
  color: var(--amber-900);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.section-head p {
  margin-top: 6px;
  color: var(--amber-700);
}

.section-more {
  color: var(--amber-700);
  font-weight: 900;
}

.section-more:hover {
  color: var(--amber-500);
}

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

.movie-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.movie-card:hover {
  box-shadow: var(--shadow);
}

.card-poster {
  position: relative;
  height: 235px;
  overflow: hidden;
  background: var(--amber-200);
}

.card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.movie-card:hover .card-poster img,
.large-card:hover img {
  transform: scale(1.09);
}

.card-duration,
.rank-badge {
  position: absolute;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.card-duration {
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  background: rgba(0, 0, 0, 0.70);
}

.rank-badge {
  left: 10px;
  top: 10px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.play-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  background: rgba(0, 0, 0, 0.28);
  opacity: 0;
}

.movie-card:hover .play-mark {
  opacity: 1;
}

.card-body {
  padding: 18px;
}

.card-body h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 52px;
  color: var(--amber-900);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 900;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-body p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 14px;
  min-height: 43px;
  color: var(--amber-700);
  font-size: 14px;
  line-height: 1.55;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.card-meta {
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 700;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag-row span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--amber-800);
  background: var(--amber-100);
  font-size: 12px;
  font-weight: 800;
}

.scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 310px);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
}

.scroller .movie-card {
  scroll-snap-align: start;
}

.category-band,
.spotlight-section,
.wide-feature {
  max-width: 1330px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(254, 243, 199, 0.86), rgba(255, 237, 213, 0.92));
  box-shadow: inset 0 0 0 1px rgba(253, 230, 138, 0.55);
}

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

.category-tile {
  min-height: 150px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  color: var(--amber-900);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.category-tile span {
  color: var(--amber-600);
  font-size: 14px;
  font-weight: 900;
}

.category-tile strong {
  display: block;
  color: var(--amber-900);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 900;
}

.category-tile em {
  color: var(--amber-700);
  font-style: normal;
  font-weight: 700;
}

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

.horizontal-card {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 180px;
}

.horizontal-card .card-poster {
  height: 100%;
}

.horizontal-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.horizontal-card .card-body h3 {
  min-height: 0;
  font-size: 22px;
}

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

.large-card {
  height: 390px;
  color: #fff;
}

.large-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.large-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 70%);
}

.large-overlay span {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--amber-500);
  color: #fff;
  font-weight: 900;
}

.large-overlay h3 {
  font-size: 28px;
  font-weight: 900;
}

.large-overlay p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.page-hero {
  min-height: 300px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(245, 158, 11, 0.38), transparent 28%),
    linear-gradient(135deg, #2a1502, #78350f 55%, #f59e0b);
  color: #fff;
}

.small-hero > div {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 64px 24px;
}

.page-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.06em;
}

.page-hero p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.7;
}

.filter-bar {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) repeat(3, minmax(150px, 210px));
  gap: 14px;
  margin-top: 26px;
}

.filter-bar input,
.filter-bar select {
  width: 100%;
  padding: 13px 16px;
}

.category-preview-list {
  display: grid;
  gap: 54px;
}

.detail-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #1f1300;
}

.detail-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.36;
}

.detail-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.08);
}

.detail-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31, 19, 0, 0.92), rgba(31, 19, 0, 0.45));
}

.detail-layout {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
  min-height: 560px;
  margin: 0 auto;
  padding: 68px 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 42px;
  align-items: center;
}

.detail-poster {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.42);
}

.detail-poster img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

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

.detail-info h1 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.detail-one {
  max-width: 830px;
  margin: 20px 0 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.7;
}

.detail-tags span {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.detail-info .btn {
  margin-top: 28px;
}

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

.player-shell {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #000;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.player-start {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58));
  transition: opacity 240ms ease, visibility 240ms ease;
}

.player-start span {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--amber-500), var(--orange-500));
  box-shadow: 0 18px 38px rgba(245, 158, 11, 0.36);
  font-size: 28px;
}

.player-start strong {
  font-size: 20px;
  font-weight: 900;
}

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

.detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 36px;
}

.content-card {
  border-radius: 24px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.content-card h2 {
  margin-bottom: 14px;
  color: var(--amber-900);
  font-size: 26px;
  font-weight: 900;
}

.content-card p {
  color: var(--amber-700);
  font-size: 16px;
  line-height: 1.9;
}

.info-card {
  grid-column: 1 / -1;
}

.info-card dl {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.info-card div {
  padding: 16px;
  border-radius: 16px;
  background: var(--amber-50);
}

.info-card dt {
  color: var(--amber-600);
  font-size: 13px;
  font-weight: 900;
}

.info-card dd {
  margin-top: 6px;
  color: var(--amber-900);
  font-weight: 800;
}

.site-footer {
  margin-top: 70px;
  background: linear-gradient(180deg, var(--amber-50), var(--orange-100));
  border-top: 1px solid rgba(253, 230, 138, 0.72);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand p,
.footer-col p {
  margin-top: 16px;
  color: var(--amber-700);
  line-height: 1.7;
}

.footer-col h3 {
  margin-bottom: 14px;
  color: var(--amber-800);
  font-size: 18px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--amber-700);
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--amber-500);
}

.footer-bottom {
  padding: 22px 24px;
  border-top: 1px solid rgba(253, 230, 138, 0.76);
  color: var(--amber-600);
  text-align: center;
  font-weight: 700;
}

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

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

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

  .header-search input {
    width: 180px;
  }
}

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

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

  .hero {
    min-height: 76vh;
  }

  .hero-content {
    left: 24px;
    bottom: 74px;
  }

  .home-search-band {
    grid-template-columns: 1fr;
    margin-top: 0;
    border-radius: 0;
  }

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

  .horizontal-card {
    grid-template-columns: 190px 1fr;
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .detail-layout {
    grid-template-columns: 220px 1fr;
    gap: 28px;
  }

  .info-card dl,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner {
    height: 64px;
    padding: 0 16px;
  }

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

  .hero-arrow {
    display: none;
  }

  .hero h1,
  .hero h2 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .home-search-band,
  .page-section,
  .filter-bar,
  .detail-content,
  .player-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .movie-grid,
  .large-grid,
  .detail-content,
  .filter-bar,
  .category-grid,
  .info-card dl,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .horizontal-card .card-poster {
    height: 230px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 36px 16px;
  }

  .detail-poster {
    max-width: 260px;
  }

  .detail-info h1 {
    font-size: 42px;
  }

  .detail-one {
    font-size: 17px;
  }

  .content-card {
    padding: 22px;
  }

  .large-card {
    height: 330px;
  }
}
