/* ============================================
   UPCOMING PAGE — Dark, immersive, exclusive
   ============================================ */

.up-body {
  background: #0e0e0e;
  color: #fff;
}

/* ---- Dark navbar override ---- */
.navbar-dark {
  background: transparent !important;
  border-bottom-color: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.navbar-dark .nav-links a:not(.nav-cta) { color: rgba(255,255,255,.7); }
.navbar-dark .nav-links a:not(.nav-cta):hover { color: #fff; }
.navbar-dark .nav-active { color: var(--orange) !important; }
.navbar-dark .mobile-menu-btn span { background: #fff; }

/* ---- Floating water drops ---- */
.up-drops {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.up-drop {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: .06;
  filter: blur(60px);
  animation: upFloat 20s ease-in-out infinite;
}

.ud1 { width: 300px; height: 300px; top: 10%; left: -5%; animation-delay: 0s; }
.ud2 { width: 200px; height: 200px; top: 30%; right: -3%; animation-delay: -4s; }
.ud3 { width: 250px; height: 250px; bottom: 20%; left: 20%; animation-delay: -8s; }
.ud4 { width: 180px; height: 180px; top: 60%; right: 15%; animation-delay: -12s; opacity: .04; }
.ud5 { width: 220px; height: 220px; bottom: 5%; right: 5%; animation-delay: -6s; opacity: .05; }
.ud6 { width: 150px; height: 150px; top: 5%; left: 50%; animation-delay: -15s; opacity: .03; }

@keyframes upFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.1); }
}

/* ---- Hero ---- */
.up-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.up-hero-bg {
  position: absolute;
  inset: 0;
}

.up-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}

.up-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,14,14,.3) 0%, rgba(14,14,14,.7) 60%, #0e0e0e 100%);
}

.up-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.up-date-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.05);
}

.up-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: .95;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.up-hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Countdown */
.up-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.up-cd-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

.up-cd-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.up-cd-label {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
}

.up-cd-sep {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  padding-bottom: 16px;
}

/* Hero button */
.up-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 100px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.up-hero-btn:hover {
  background: #e0522e;
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(255,98,62,.3);
}

/* Scroll hint */
.up-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.up-scroll-bar {
  width: 2px;
  height: 40px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.up-scroll-bar::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--orange);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0% { top: -50%; }
  100% { top: 120%; }
}

/* ---- Sections ---- */
.up-section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.up-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin-bottom: 14px;
}

.up-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #fff;
}

.up-text {
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
}

/* ---- Split layout ---- */
.up-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.up-split-left .up-text {
  max-width: 400px;
}

/* ---- Timeline ---- */
.up-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.up-tl-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative;
}

.up-tl-item:first-child { padding-top: 0; }
.up-tl-item:last-child { border-bottom: none; }

.up-tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 12px rgba(255,98,62,.4);
}

.up-tl-day {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
}

.up-tl-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.up-tl-content p {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
}

/* ---- Merch ---- */
.up-merch-section {
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.up-merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.up-merch-card {
  text-align: center;
}

.up-merch-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1;
  background: #1a1a1a;
}

.up-merch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  filter: grayscale(.2);
}

.up-merch-card:hover .up-merch-img img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.up-merch-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 12px;
  border-radius: 100px;
}

.up-merch-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.up-merch-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ---- Vibes / Spotify ---- */
.up-vibes-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
}

.up-vibes-left .up-text {
  max-width: 360px;
}

/* ---- Final CTA ---- */
.up-cta-section {
  padding: 60px 0 100px;
}

.up-cta-card {
  text-align: center;
  padding: 72px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,98,62,.1) 0%, rgba(255,98,62,.03) 100%);
  border: 1px solid rgba(255,98,62,.12);
}

.up-cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 14px;
}

.up-cta-card p {
  font-size: .95rem;
  color: rgba(255,255,255,.5);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 32px;
}

/* ---- Nav active ---- */
.nav-active { color: var(--orange) !important; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .up-split { grid-template-columns: 1fr; gap: 48px; }
  .up-vibes-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; }
}

@media (max-width: 768px) {
  .up-hero-title { font-size: clamp(2.4rem, 10vw, 3.6rem); }
  .up-section { padding: 64px 0; }
  .up-merch-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .up-merch-grid .up-merch-card:last-child {
    grid-column: 1 / -1;
    max-width: 240px;
    margin: 0 auto;
  }
  .up-cd-block { min-width: 52px; padding: 10px 12px; }
  .up-cta-card { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .up-merch-grid { grid-template-columns: 1fr; max-width: 260px; margin: 0 auto; }
  .up-merch-grid .up-merch-card:last-child { max-width: none; }
  .up-vibes-card { padding: 28px 20px; }
}
