/* ============================================
   Africa LIVE! 6 — Liberia Honors
   Premium Event Landing Page
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #1A1A1A;
  background: #0A0A0A;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Film Grain Overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  mix-blend-mode: overlay;
}

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

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

/* --- Containers --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Section Labels --- */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #FFC300;
  text-align: center;
  margin-bottom: 12px;
}

.section-heading-lg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 0.02em;
  margin-bottom: 56px;
  line-height: 1;
}

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Button --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-radius: 60px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

.btn-gold {
  background: #FFC300;
  color: #0A0A0A;
}

.btn-gold:hover {
  background: #FFD60A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 195, 0, 0.3);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-arrow {
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ============ STICKY NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 195, 0, 0.1);
  transform: translateY(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-visible {
  transform: translateY(0);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: #FFC300;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #AAAAAA;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #FFFFFF;
}

.nav-cta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #0A0A0A;
  background: #FFC300;
  padding: 8px 24px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: #FFD60A;
  box-shadow: 0 4px 16px rgba(255, 195, 0, 0.25);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0A0A0A;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  animation: heroZoom 25s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 32px;
  max-width: 900px;
}

.hero-logo {
  width: 320px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-title {
  margin-bottom: 24px;
}

.hero-title-main {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 13vw, 8rem);
  line-height: 0.9;
  color: #FFFFFF;
  letter-spacing: 0.04em;
}

.hero-title-sub {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 3vw, 1.4rem);
  color: #FFC300;
  margin-top: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: #FFFFFF;
  letter-spacing: 0.08em;
}

.hero-divider {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.hero-venue {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.hero .btn {
  margin-bottom: 20px;
}

.hero-pricing {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
}

.hero-pricing strong {
  color: rgba(255, 255, 255, 0.8);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 195, 0, 0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============ MARQUEE TICKER ============ */
.marquee {
  background: #FFC300;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: #0A0A0A;
  white-space: nowrap;
  padding: 0 20px;
}

.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.35);
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============ TEXT MORPH ============ */
.morph-section {
  padding: 120px 32px;
  background:
    linear-gradient(to bottom, #0F0F0F 0%, #171207 8%, #2e2210 35%, #2e2210 65%, #1c1608 88%, #0A0A0A 100%);
  text-align: center;
  position: relative;
}

.morph-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 195, 0, 0.1) 0%, rgba(255, 195, 0, 0.04) 35%, transparent 65%);
  pointer-events: none;
}

.morph-wrapper {
  margin-bottom: 16px;
}

.morph-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(3.5rem, 8vw, 6rem);
}

.morph-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  color: #FFC300;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.95);
  transition: opacity 0.5s ease, filter 0.5s ease, transform 0.5s ease;
  will-change: opacity, filter, transform;
}

.morph-text.morph-active {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

.morph-text.morph-out {
  opacity: 0;
  filter: blur(8px);
  transform: scale(1.05);
}

.hook-text-secondary {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}

.hook-text-secondary strong {
  color: #FFC300;
  font-weight: 600;
}

/* ============ LINEUP ============ */
.lineup {
  padding: 120px 32px;
  background: #0F0F0F;
}

.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.artist-card {
  perspective: 800px;
  position: relative;
}

.artist-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.45) 0%, rgba(255, 195, 0, 0.15) 40%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.artist-card:hover::before {
  opacity: 1.5;
  transform: translate(-50%, -50%) scale(1.15);
}

.artist-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: #1A1A1A;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  transform-style: preserve-3d;
}

.artist-card:hover .artist-image {
  transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 195, 0, 0.08);
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.artist-card:hover .artist-image img {
  transform: scale(1.06);
}

.artist-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.4) 35%,
    transparent 60%
  );
  z-index: 1;
  pointer-events: none;
}

.artist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.artist-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #FFFFFF;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.artist-role {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #FFC300;
}

.lineup-more {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* ============ EXPERIENCE ============ */
.experience {
  padding: 0 0 120px;
  background: #0A0A0A;
}

/* 3D Carousel */
.carousel-3d-viewport {
  height: 480px;
  margin-bottom: 80px;
  perspective: 1400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-3d {
  position: relative;
  transform-style: preserve-3d;
  cursor: grab;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.carousel-3d-face {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  backface-visibility: visible;
}

.carousel-3d-face img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  pointer-events: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s ease;
}

/* Experience cards */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.exp-card {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid rgba(255, 195, 0, 0.4);
  border-radius: 12px;
  padding: 36px 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.exp-card:hover {
  border-color: rgba(255, 195, 0, 0.2);
  border-left-color: #FFC300;
  transform: translateY(-4px);
}

.exp-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.exp-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ============ DETAILS ============ */
.details {
  padding: 120px 32px;
  background: #0F0F0F;
}

.details-card {
  background: linear-gradient(135deg, rgba(255, 195, 0, 0.08) 0%, rgba(255, 195, 0, 0.02) 100%);
  border: 1px solid rgba(255, 195, 0, 0.15);
  border-radius: 20px;
  padding: 64px 56px;
  max-width: 800px;
  margin: 0 auto;
}

.details-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #FFC300;
  margin-bottom: 48px;
  text-align: center;
  letter-spacing: 0.02em;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-item-wide {
  grid-column: 1 / -1;
}

.detail-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
}

.detail-value {
  font-weight: 600;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.detail-value a {
  color: #FFC300;
  transition: color 0.2s ease;
}

.detail-value a:hover {
  color: #FFD60A;
}

/* ============ FAQ ============ */
.faq {
  padding: 120px 32px;
  background: #0A0A0A;
}

.faq-list {
  margin-top: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #FFFFFF;
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #FFC300;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.3);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #FFC300;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.final-cta-inner {
  padding: 120px 32px;
  text-align: center;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1200 50%, #0A0A0A 100%);
  position: relative;
}

.final-cta-inner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 195, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 24px;
}

.cta-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-early-bird {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

/* ============ SPONSORS (hidden by default) ============ */
.sponsors {
  padding: 56px 32px;
  background: #0F0F0F;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsors-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 32px;
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.sponsor-logo {
  max-height: 44px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.sponsor-logo:hover {
  opacity: 0.8;
  filter: grayscale(0%);
}

/* ============ FOOTER ============ */
.footer {
  padding: 64px 32px 40px;
  background: #0A0A0A;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 32px;
}

.footer-logo {
  width: 80px;
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  gap: 28px;
}

.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #FFC300;
}

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

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #FFC300;
}

.footer-bottom {
  text-align: center;
}

.footer-presented {
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-inquiries {
  font-size: 0.8rem;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-inquiries a {
  color: #FFC300;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 195, 0, 0.3);
  transition: text-decoration-color 0.2s ease;
}

.footer-inquiries a:hover {
  text-decoration-color: #FFC300;
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.15);
}

/* ============ RESPONSIVE ============ */

/* Mobile */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-inner {
    height: 56px;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-logo {
    width: 240px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .hero-divider {
    width: 24px;
  }

  .btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .marquee-item {
    font-size: 0.9rem;
  }

  .hook {
    padding: 80px 24px;
  }

  .lineup {
    padding: 80px 24px;
  }

  .artist-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    max-width: 300px;
    margin: 0 auto 40px;
  }

  .carousel-3d-viewport {
    height: 300px;
    margin-bottom: 48px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .exp-card {
    padding: 32px 24px;
  }

  .details {
    padding: 80px 24px;
  }

  .details-card {
    padding: 40px 28px;
  }

  .details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .detail-item-wide {
    grid-column: auto;
  }

  .faq {
    padding: 80px 24px;
  }

  .final-cta-inner {
    padding: 80px 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-heading-lg {
    margin-bottom: 40px;
  }

  .hero-scroll-hint {
    display: none;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-logo {
    width: 260px;
  }

  .details-card {
    padding: 48px 40px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .carousel-3d-viewport {
    height: 480px;
  }
}
