:root {
  --bg: #7d0000;
  --panel: #1a191d;
  --panel-2: #242228;
  --red: #c81e2c;
  --red-deep: #570202;
  --amber: #f2a93b;
  --cream: #f3ede4;
  --muted: #f9f7fb;
  --line: rgba(242, 169, 59, 0.2);
}

/* HERO - COMING SOON */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.heroSoon {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: linear-gradient(
      180deg,
      rgba(13, 5, 5, 0.55) 0%,
      rgba(13, 13, 14, 0.65) 60%,
      rgba(13, 13, 14, 0.88) 100%
    ),
    url("landing page section1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.heroSoon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(200, 30, 44, 0.28) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Shape dekoratif melayang di background hero */
.heroShapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hShape {
  position: absolute;
  opacity: 0.55;
  animation: heroFloat 7s ease-in-out infinite;
}

.hCircle {
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--amber), var(--red));
}

.hRing {
  border-radius: 50%;
  border: 2px solid var(--amber);
  opacity: 0.4;
}

.hDot {
  border-radius: 50%;
  background: var(--cream);
  opacity: 0.5;
}

.hTri {
  width: 0;
  height: 0;
  background: none !important;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-bottom: 26px solid var(--red);
  opacity: 0.45;
}

.s1 {
  width: 16px;
  height: 16px;
  top: 16%;
  left: 10%;
  animation-delay: 0s;
}
.s2 {
  width: 10px;
  height: 10px;
  top: 68%;
  left: 16%;
  animation-delay: 1.2s;
}
.s3 {
  width: 22px;
  height: 22px;
  top: 24%;
  right: 12%;
  animation-delay: 0.6s;
}
.s4 {
  top: 72%;
  right: 18%;
  animation-delay: 1.8s;
  transform: rotate(15deg);
}
.s5 {
  top: 12%;
  right: 26%;
  animation-delay: 2.4s;
  transform: rotate(-20deg) scale(0.7);
}
.s6 {
  width: 46px;
  height: 46px;
  top: 40%;
  left: 6%;
  animation-delay: 0.9s;
}
.s7 {
  width: 30px;
  height: 30px;
  bottom: 14%;
  right: 8%;
  animation-delay: 1.5s;
}
.s8 {
  width: 7px;
  height: 7px;
  top: 46%;
  right: 8%;
  animation-delay: 2s;
}
.s9 {
  width: 7px;
  height: 7px;
  bottom: 20%;
  left: 22%;
  animation-delay: 0.3s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.heroSoonInner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.heroLogo {
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroLogoIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.heroLogo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.55))
    drop-shadow(0 0 55px rgba(200, 30, 44, 0.4));
}

@keyframes heroLogoIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(24px);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.heroSoonTag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: heroTagIn 0.8s ease-out 0.5s both;
}

@keyframes heroTagIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pulseDot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(242, 169, 59, 0.6);
  animation: pulseDot 1.6s ease-out infinite;
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 169, 59, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(242, 169, 59, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 169, 59, 0);
  }
}

@media (max-width: 768px) {
  .heroSoon {
    min-height: 80vh;
  }

  .heroLogo {
    max-width: 420px;
  }

  .hShape {
    display: none;
  }

  .s6,
  .s7 {
    display: block;
    opacity: 0.35;
  }
}

/*section slide otomatis*/
.coverflow-wrapper {
  perspective: 1200px;
  overflow: hidden;
  width: 100%;
}

.coverflow-track {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 520px;
}

/* Base Card - Bentuk Jajar Genjang */
.cf-card {
  position: absolute;
  width: 75%;
  max-width: 800px;
  height: 460px;
  border-radius: 16px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
  /* Kemiringan Jajar Genjang */
  transform: scale(0.7) skewX(12deg);

  /* Glassmorphism Dark Background */
  background: linear-gradient(
    180deg,
    rgba(20, 5, 5, 0.95) 0%,
    rgba(8, 8, 8, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  padding: 40px;

  /* Layout Konten Kartu */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Styling Gambar di Dalam Card */
.cf-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 16px;
  pointer-events: none;
}

/* Overlay Gelap agar Konten Tetap Legible */
.cf-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(8, 8, 8, 0.85) 100%
  );
  z-index: 2;
  border-radius: 16px;
  pointer-events: none;
}

/* Counter-skew & Posisi Z-Index Konten di Atas Gambar */
.cf-card > * {
  position: relative;
  z-index: 3;
  transform: skewX(-12deg);
}

/* Card Utama (Tengah - Jajar Genjang Glowing) */
.cf-card.active {
  opacity: 1;
  z-index: 10;
  transform: translateX(0) scale(1.05) skewX(12deg);
  pointer-events: auto;
  border: 2px solid #ff3333;
  box-shadow: 0 0 35px rgba(255, 51, 51, 0.4);
}

/* Card Kiri */
.cf-card.prev {
  opacity: 0.45;
  z-index: 5;
  transform: translateX(-62%) scale(0.82) rotateY(15deg) skewX(12deg);
  pointer-events: auto;
  cursor: pointer;
  border: 1px solid rgba(255, 51, 51, 0.3);
}

/* Card Kanan */
.cf-card.next {
  opacity: 0.45;
  z-index: 5;
  transform: translateX(62%) scale(0.82) rotateY(-15deg) skewX(12deg);
  pointer-events: auto;
  cursor: pointer;
  border: 1px solid rgba(255, 51, 51, 0.3);
}

/* Pembatasan Ukuran SVG Ikon */
.cf-card svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Element Styling dalam Card */
.cf-date {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  margin: 16px 0 28px 0;
  color: #e0e0e0;
}

.cf-btn {
  padding: 14px 36px;
  font-size: 1.05rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #ff4d4d, #990000);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cf-btn:hover {
  transform: translateY(-2px) skewX(-12deg);
  box-shadow: 0 5px 20px rgba(255, 77, 77, 0.5);
}

.cf-countdown {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}

.cf-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.cf-circle .num {
  font-size: 1.5rem;
  font-weight: 700;
}

.cf-circle .lbl {
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
}

/* Container Dots Indicator Bawah */
.cf-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

/* Base Dot (Bintik Jajar Genjang) */
.cf-dot {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transform: skewX(-12deg);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Active Dot (Kapsul Jajar Genjang Toska) */
.cf-dot.active {
  width: 32px;
  border-radius: 4px;
  background: #2dd4bf;
  box-shadow: 0 0 12px rgba(45, 212, 191, 0.6);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: radial-gradient(
    circle at top center,
    var(--red-deep) 0%,
    #0d0d0e 80%
  );
  color: var(--cream);
  font-family: "Bree Serif", serif;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Background belakang panjang untuk seluruh halaman (di luar hero).
   Posisi absolute (bukan fixed) supaya tinggi div ini otomatis mengikuti
   tinggi total halaman (body sudah position:relative jadi acuannya).
   "top: 92vh" (bukan inset:0 / top:0) sengaja disamakan dengan tinggi
   .heroSoon — supaya seluruh 7000px gambar dipakai buat area SETELAH
   hero (yang mana yang keliatan), bukan sebagian ke-"buang" nutupin
   belakang hero yang toh udah ketutup gambar tirai sendiri.
   PENTING: ukurannya DIBATASI supaya nggak pernah di-scale lebih besar
   dari resolusi asli gambar (1400px lebar) — sebelumnya pakai "cover"
   yang malah maksa gambar di-zoom sampai beberapa kali lipat cuma buat
   nutup tinggi halaman yang jauh lebih panjang dari tinggi gambarnya,
   itu penyebab kelihatan pecah/kebesaran. Sekarang gambar tampil di
   resolusi wajar lalu BERHENTI secara alami; sisa halaman di bawahnya
   otomatis nyambung ke gradient gelap bawaan body + footer#contact
   (warnanya udah disamain, lihat dua rule itu) jadi tetap nyatu tanpa
   perlu maksa gambarnya melar. */
.bgCarnival {
  position: absolute;
  top: 92vh;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(
      180deg,
      rgba(13, 13, 14, 0.88) 0%,
      rgba(13, 13, 14, 0.5) 12%,
      rgba(13, 13, 14, 0.28) 28%,
      rgba(13, 13, 14, 0.32) 55%,
      rgba(13, 13, 14, 0.55) 80%,
      rgba(13, 13, 14, 0.85) 94%,
      #0d0d0e 100%
    ),
    url("lp-long.png");
  background-size: min(100%, 1400px) auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-color: #0d0d0e;
  pointer-events: none;
}

@media (max-width: 768px) {
  .bgCarnival {
    top: 80vh;
  }
}

.display {
  font-family: "Girassol", serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.mono {
  font-family: "JetBrains Mono", monospace;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* FREQ TEXTURE */
.noise-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 100;
  background: linear-gradient(90deg, var(--red), var(--amber), var(--red));
  background-size: 200% 100%;
  animation: scan 6s linear infinite;
}

@keyframes scan {
  to {
    background-position: 200% 0;
  }
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.brand .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.brand .name {
  font-family: "Girassol", serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.brand .name span {
  color: var(--red);
}

.navlinks {
  display: flex;
  gap: 28px;
  font-size: 0.86rem;
  color: var(--muted);
}

.navlinks a:hover {
  color: var(--cream);
}

.navcta {
  background: var(--red);
  color: var(--cream);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.navcta:hover {
  background: var(--red-deep);
}

.burger {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  z-index: 60;
}

@media (max-width: 860px) {
  .navlinks,
  nav > .navcta {
    display: none;
  }

  .burger {
    display: block;
  }
}

.burger .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  margin: 5px 0;
  transition: 0.25s ease;
}

.burger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.open .bar:nth-child(2) {
  opacity: 0;
}

.burger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobileMenu {
  display: none;
  position: fixed;
  inset: 0;
  top: 57px;
  z-index: 45;
  background: rgba(10, 10, 13, 0.98);
  backdrop-filter: blur(10px);
  flex-direction: column;
  padding: 30px 24px;
  gap: 22px;
}

.mobileMenu.open {
  display: flex;
}

.mobileMenu a {
  font-size: 1.15rem;
  font-family: "Girassol", serif;
  letter-spacing: 0.03em;
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.mobileMenu .navcta {
  align-self: flex-start;
  margin-top: 8px;
}

/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse 60% 50% at 50% 0%,
      rgba(200, 30, 44, 0.25),
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 15% 90%,
      rgba(242, 169, 59, 0.08),
      transparent 70%
    ),
    var(--bg);
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 90px 24px 70px;
  max-width: 1180px;
  margin: 0 auto;
}

.slide .freq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--amber);
  margin-bottom: 22px;
  letter-spacing: 0.08em;
}

.slide .freq .liveDot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 1.2s infinite;
}

.slide h1 {
  font-size: clamp(2.2rem, 7vw, 4.6rem);
  line-height: 0.98;
  color: var(--cream);
}

.slide h1 .num {
  color: var(--red);
}

.slide p.tag {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 18px 0 26px;
}

.tuner {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

.tuner b {
  color: var(--amber);
  font-family: "JetBrains Mono", monospace;
}

.countdown {
  display: flex;
  gap: 14px;
  margin: 22px 0;
  flex-wrap: wrap;
}

.cbox {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
  min-width: 84px;
  text-align: center;
}

.cbox .n {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 2.1rem;
  color: var(--amber);
}

.cbox .l {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.heroCtas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--red-deep);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--cream);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.slideArt {
  aspect-ratio: 4/5;
  max-width: 320px;
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--panel-2), var(--bg));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: relative;
  margin-left: auto;
}

.slideArt .ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slideArt .ring .dotc {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 1.3s infinite;
}

.slideArt .capt {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  padding-bottom: 34px;
}

.dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
}

.dots button.active {
  background: var(--red);
  width: 22px;
  border-radius: 5px;
  transition: 0.25s ease;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(21, 19, 24, 0.7);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 1.1rem;
  cursor: pointer;
}

.arrow.prev {
  left: 16px;
}

.arrow.next {
  right: 16px;
}

.arrow:hover {
  border-color: var(--red);
  color: var(--red);
}

/* EQUALIZER STRIP */
.eq {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 44px;
  opacity: 0.6;
}

.eq span {
  width: 4px;
  background: linear-gradient(180deg, var(--amber), var(--red));
  border-radius: 2px;
  animation: bounce 1.1s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    height: 8px;
  }
  50% {
    height: 38px;
  }
}

/* SECTION SHELL */
section {
  padding: 88px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-size: 25.rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
}

/* Modifier: dipakai kalau mau satu label "eyebrow" tertentu tampil
   lebih besar dari yang lain, tanpa ngubah semua label eyebrow di
   halaman. Ganti angka font-size / width garis kuningnya sesuka hati. */
.eyebrow-lg {
  font-size: 1.1rem;
}

.eyebrow-lg::before {
  width: 30px;
  height: 3px;
}

h2.title {
  font-family: "Girassol", serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.02;
}

h2.title .accent {
  color: var(--red);
}

.lead {
  color: var(--muted);
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.65;
}

/* WHAT IS */
.about {
  display: block;
  max-width: 760px;
}

.statgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.stat .n {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: var(--red);
  font-size: 1.8rem;
}

.stat .l {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

/* KILAS BALIK - Throwback marquee (auto slide) */
#kilas-balik {
  padding-bottom: 90px;
}

#kilas-balik .wrap {
  margin-bottom: 36px;
}

.tbMarquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.tbTrack {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tbScroll 28s linear infinite;
}

.tbMarquee:hover .tbTrack {
  animation-play-state: paused;
}

.tbCard {
  flex: 0 0 auto;
  width: 300px;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel-2);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.tbCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes tbScroll {
  from {
    transform: translateX(0);
  }
  to {
    /* geser sejauh 1 set foto (5 kartu + gap), lalu loop mulus krn ada duplikat */
    transform: translateX(calc(-5 * (300px + 20px)));
  }
}

@media (max-width: 768px) {
  .tbCard {
    width: 220px;
  }

  @keyframes tbScroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-5 * (220px + 20px)));
    }
  }
}

/* PLAYLIST */
.playlistBox {
  display: flex;
  align-items: center;
  gap: 26px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 32px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.plCover {
  width: 88px;
  height: 88px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plCover .ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--cream);
}

.plInfo h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.plInfo p {
  color: var(--muted);
  font-size: 0.86rem;
}

.plBtn {
  margin-left: auto;
  background: #1db954;
  color: #0a0a0d;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.plBtn:hover {
  background: #17a94a;
}


/* SECTION RUNDOWN STYLING */
.section-desc {
  color: #a0aec0;
  margin-bottom: 40px;
  max-width: 600px;
}

/* WRAPPER BISA DIGESER (HORIZONTAL SCROLL) */
.timeline-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 10px;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scroll di iOS */
}

/* KUSTOM STYLES BAR GESER (SCROLLBAR) */
.timeline-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(128, 14, 14, 0.05);
  border-radius: 10px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #ff4b2b;
  border-radius: 10px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #e6391a;
}

/* TRACK PANJANG UNTUK ITEM RUNDOWN */
.timeline-track {
  display: flex;
  position: relative;
  min-width: max-content; /* Memastikan track memanjang ke kanan */
  padding: 0 20px;
  align-items: center;
  min-height: 420px; /* Ruang tinggi agar kartu atas & bawah fit */
}

/* GARIS TIMELINE MERAH TENGAH */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5f2f2, #ff416c);
  transform: translateY(-50%);
  z-index: 1;
}

/* ITEM TIMELINE HOOK */
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 260px; /* Ukuran lebar seragam per kartu */
  margin: 0 20px;
  z-index: 2;
}

/* POSISI ATAS DAN BAWAH */
.timeline-item.item-top {
  align-self: flex-start;
}

.timeline-item.item-bottom {
  align-self: flex-end;
}

/* DOT / BINTIK MERAH LINGKARAN */
.timeline-dot {
  width: 18px;
  height: 18px;
  background: #ff4b2b;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 75, 43, 0.8);
  margin: 12px 0;
  flex-shrink: 0;
}

/* DESAIN KARTU RUNDOWN */
.-card {
  background: rgba(98, 14, 2, 0.65);
  border: 1px solid rgba(255, 75, 43, 0.4);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.rundown-card:hover {
  transform: translateY(-4px);
  border-color: #ff4b2b;
}

.rundown-card h3 {
  font-family: 'Girassol', serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.rundown-date {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffaa42;
  margin-bottom: 10px;
  font-family: monospace;
}

.rundown-card p {
  font-size: 0.82rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}
/* TIMELINE / RUNDOWN — horizontal zig-zag */
.rundown {
  margin-top: 56px;
  padding-bottom: 8px;
  overflow-x: auto;
  overflow-y: visible;
}

.rTrack {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 1fr);
  min-width: 100%;
  min-height: 380px;
  gap: 6px;
}

/* garis horizontal di tengah */
.rTrack::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--red), var(--amber), var(--red));
  z-index: 0;
}

.rItem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  z-index: 1;
}

.rTop {
  justify-content: flex-start;
}

.rBottom {
  justify-content: flex-end;
}

/* titik di garis tengah (posisinya presisi di tengah tinggi .rItem = garis .rTrack) */
.rItem::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 32% 32%, var(--amber), var(--red));
  border: 2px solid var(--cream);
  box-shadow: 0 0 10px rgba(200, 30, 44, 0.6);
  z-index: 2;
}

/* garis vertikal penghubung titik ke kartu */
.rItem::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 48px;
  background: var(--line);
  transform: translateX(-50%);
}

.rTop::after {
  margin-top: -48px;
}

.rCard {
  position: relative;
  width: 100%;
  max-width: 210px;
  background: linear-gradient(160deg, var(--panel-2), var(--bg));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}

.rCard:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
}

.rTop .rCard {
  margin-bottom: 48px;
}

.rBottom .rCard {
  margin-top: 48px;
}

.rItem .what {
  font-family: "Girassol", serif;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.rItem .time {
  font-family: "JetBrains Mono", monospace;
  color: var(--amber);
  font-size: 0.82rem;
}

.rItem .desc {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 8px;
  line-height: 1.4;
}

/* mobile: balik ke list vertikal, bukan horizontal scroll */
@media (max-width: 768px) {
  .rundown {
    overflow-x: visible;
    margin-top: 32px;
  }

  .rTrack {
    display: block;
    min-width: 0;
    min-height: 0;
  }

  .rTrack::before {
    left: 7px;
    top: 0;
    bottom: 0;
    right: auto;
    width: 2px;
    height: auto;
    transform: none;
    background: linear-gradient(180deg, var(--red), var(--amber), var(--red));
  }

  .rItem {
    justify-content: flex-start;
    padding: 0 0 22px 32px;
  }

  .rItem::before {
    left: 8px;
    top: 6px;
    transform: translate(-50%, 0);
    width: 13px;
    height: 13px;
  }

  .rItem::after {
    display: none;
  }

  .rTop .rCard,
  .rBottom .rCard {
    margin: 0;
    max-width: none;
  }
}

/* GIGS GRID */
.gigsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .gigsGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .gigsGrid {
    grid-template-columns: 1fr;
  }
}

.gigCard {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.gigCard:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}

.gigArt {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--panel-2), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px;
}

.gigArt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(200, 30, 44, 0.3) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.gigArt img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

.gigArt .ring {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--amber);
}

.gigMeta {
  padding: 18px 20px;
}

.gigMeta .tagpill {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.gigMeta h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.gigMeta p {
  color: var(--muted);
  font-size: 0.85rem;
}

/* GIGS - Coming Soon panel (sementara sampai line-up resmi diumumkan) */
.gigsComingSoon {
  position: relative;
  margin-top: 32px;
  padding: 70px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: radial-gradient(
      circle at 50% 30%,
      rgba(200, 30, 44, 0.25) 0%,
      transparent 65%
    ),
    linear-gradient(160deg, var(--panel-2), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gigsComingSoon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(
    circle at 0 0,
    transparent 0,
    transparent 25px,
    rgba(255, 255, 255, 0.025) 26px
  );
  pointer-events: none;
}

.gigsComingSoon img {
  position: relative;
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
  animation: heroLogoIn 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (max-width: 768px) {
  .gigsComingSoon {
    padding: 48px 20px;
  }

  .gigsComingSoon img {
    max-width: 300px;
  }
}

/* SPONSOR / MEDIA PARTNER */
.logogrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 32px;
}

.logobox {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  overflow: hidden;
  padding: 10px;
}

.logobox img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  /* kalau file gambarnya belum ada/salah nama, browser nampilin alt
     text-nya (mis. "Sponsor 1") di tempat ini sebagai penanda */
}

/* CTA BAND */
.ctaBand {
  margin: 0 auto;
  max-width: 1180px;
  background: linear-gradient(120deg, var(--red-deep), var(--red));
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ctaBand h3 {
  font-family: "Girassol", serif;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.ctaBand p {
  color: rgba(243, 237, 228, 0.85);
  margin-bottom: 26px;
}

.ctaBand .btn-primary {
  background: var(--cream);
  color: var(--red-deep);
}

.ctaBand .btn-primary:hover {
  background: #fff;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 50px 24px 30px;
  margin-top: 60px;
}

.fgrid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.fbrand {
  font-family: "Girassol", serif;
  font-size: 1.3rem;
}

.fbrand span {
  color: var(--red);
}

.fcol {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 2;
}

.fcol h4 {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
/* Styling Pembatas Title Line */
.title-line {
  width: 60px;
  height: 4px;
  background: #9d1b05;
  border-radius: 2px;
  margin: 10px 0 35px 0;
}

/* PROSEDUR PEMBELIAN TIKET GRID */
.prosedurGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.prosedurCard {
  background: rgba(201, 199, 199, 0.858);
  border: 2px solid #f10707;
  border-radius: 28px;
  padding: 24px;
  position: relative;
  box-shadow: 0 0 15px rgba(241, 239, 244, 0.25);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pHeader {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.pBadge {
  background: linear-gradient(90deg, #da2e14, #ffd413);
  color: #ffffff;
  font-family: "Girassol", serif;
  font-size: 1.5rem;
  padding: 4px 24px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(198, 75, 8, 0.5);
}

.pIcon {
  width: 64px;
  height: 64px;
  background: rgba(23, 142, 134, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pIcon svg {
  width: 32px;
  height: 32px;
  fill: #e44413;
}

.pBody p {
  color: #e2e8f0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CONTACT SECTION GRID  */
footer#contact {
  background: linear-gradient(180deg, #0d0d0e 0%, #0d0d0d 12%, #7a0303 100%);
  padding: 80px 0 30px 0;
  border-top: none;
}

.contactHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contactTitle {
  font-family: "Girassol", serif;
  font-size: 3rem;
  color: #a51010;
  letter-spacing: 2px;
}

.contactGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cCard {
  background: rgba(74, 165, 46, 0.25);
  border: 1px solid rgba(193, 78, 20, 0.4);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.cCard:hover {
  transform: translateY(10px);
  background: rgba(240, 18, 18, 0.4);
}

.cIcon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cIcon svg {
  width: 48px;
  height: 48px;
  fill: #a46647;
}

.cCard h3 {
  font-family: "Girassol", serif;
  font-size: 1.2rem;
  color: #e02d05;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cList {
  list-style: none;
  padding: 0;
}

.cList li {
  color: #e4a82f;
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.fbottom {
  margin-top: 60px;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  border-top: 1px solid rgba(141, 70, 70, 0.1);
  padding-top: 20px;
}

/* Styling Pembatas Title Line */
.title-line {
  width: 60px;
  height: 4px;
  background: #ff4b2b;
  border-radius: 2px;
  margin: 10px 0 35px 0;
}

/* PROSEDUR PEMBELIAN TIKET GRID */
.prosedurCard {
  background: rgba(179, 176, 176, 0.7);
  border: 2px solid #dc4007;
  border-radius: 28px;
  padding: 24px;
  position: relative;
  box-shadow: 0 0 15px rgba(70, 8, 128, 0.25);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pHeader {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.pBadge {
  background: linear-gradient(90deg, #eb4306, #c66e10);
  color: #f9f9f9;
  font-family: "Girassol", serif;
  font-size: 1.5rem;
  padding: 4px 24px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(243, 238, 238, 0.5);
}

.pIcon {
  width: 64px;
  height: 64px;
  background: rgba(161, 28, 28, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pIcon svg {
  width: 32px;
  height: 32px;
  fill: #721104;
}

.pBody p {
  color: #e2e8f0;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* CONTACT SECTION GRID (MENGACU GAMBAR 1) */

.contactHeader {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contactTitle {
  font-family: "Girassol", serif;
  font-size: 3rem;
  color: #f5f2f2;
  letter-spacing: 2px;
}

.contactGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.cCard {
  background: rgba(222, 86, 7, 0.25);
  border: 1px solid rgba(250, 215, 199, 0.4);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.cCard:hover {
  transform: translateY(-5px);
  background: rgba(222, 86, 7, 0.4);
  border-color: rgba(254, 208, 24, 0.6);
}

.cIcon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cIcon svg {
  width: 48px;
  height: 48px;
  fill: #ffdc30;
}

.cCard h3 {
  font-family: "Girassol", serif;
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.cList {
  list-style: none;
  padding: 0;
}

.cList li {
  color: #cbd5e1;
  font-size: 0.88rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.cList li a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cList li a:hover {
  color: #fed018;
  text-decoration: underline;
}

/* Baris ikon medsos di kartu "Our Platform" */
.platformIcons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.platformIcons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(254, 208, 24, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.platformIcons a:hover {
  transform: translateY(-3px);
  background: rgba(254, 208, 24, 0.28);
}

.platformIcons svg {
  width: 20px;
  height: 20px;
  fill: #191712;
}

.fbottom {
  margin-top: 60px;
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  border-top: 1px solid rgba(228, 11, 11, 0.1);
  padding-top: 20px;
}

/* SECTION RUNDOWN STYLING */
.section-desc {
  color: #a0aec0;
  margin-bottom: 40px;
  max-width: 600px;
}

/* WRAPPER BISA DIGESER (HORIZONTAL SCROLL) */
.timeline-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 40px 10px;
  cursor: grab;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* Smooth scroll di iOS */
}

/* KUSTOM STYLES BAR GESER (SCROLLBAR) */
.timeline-scroll-wrapper::-webkit-scrollbar {
  height: 8px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-track {
  background: rgba(223, 216, 216, 0.05);
  border-radius: 10px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-thumb {
  background: #110705;
  border-radius: 10px;
}
.timeline-scroll-wrapper::-webkit-scrollbar-thumb:hover {
  background: #e6391a;
}

/* TRACK PANJANG UNTUK ITEM RUNDOWN */
.timeline-track {
  display: flex;
  position: relative;
  min-width: max-content; /* Memastikan track memanjang ke kanan */
  padding: 0 20px;
  align-items: center;
  min-height: 420px; /* Ruang tinggi agar kartu atas & bawah fit */
}

/* GARIS TIMELINE MERAH TENGAH */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff4b2b, #ff416c);
  transform: translateY(-50%);
  z-index: 1;
}

/* ITEM TIMELINE HOOK */
.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 260px; /* Ukuran lebar seragam per kartu */
  margin: 0 20px;
  z-index: 2;
}

/* POSISI ATAS DAN BAWAH */
.timeline-item.item-top {
  align-self: flex-start;
}

.timeline-item.item-bottom {
  align-self: flex-end;
}

/* DOT / BINTIK MERAH LINGKARAN */
.timeline-dot {
  width: 18px;
  height: 18px;
  background: #ff4b2b;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 75, 43, 0.8);
  margin: 12px 0;
  flex-shrink: 0;
}

/* DESAIN KARTU RUNDOWN */
.rundown-card {
  background: rgba(45, 15, 30, 0.65);
  border: 1px solid rgba(255, 75, 43, 0.4);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.rundown-card:hover {
  transform: translateY(-4px);
  border-color: #ff4b2b;
}

.rundown-card h3 {
  font-family: 'Girassol', serif;
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
  text-transform: uppercase;
}

.rundown-date {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffaa42;
  margin-bottom: 10px;
  font-family: monospace;
}

.rundown-card p {
  font-size: 0.82rem;
  color: #d1d5db;
  line-height: 1.5;
  margin: 0;
}