/* =========================================
   BASE / GLOBAL
========================================= */
:root {
  --bg-dark: #050308;
  --bg-darker: #020105;

  --accent-red: #ff3236;
  --accent-orange: #ffb13b;

  --text-main: #f5f5f5;
  --text-muted: #c4c4c4;

  --surface: #151018;
  --surface-alt: #0c0a10;
  --border-subtle: #2a2230;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.6);

  --container-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter",
    "SF Pro Text", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-darker);
}

html {
  scroll-behavior: smooth;
}

/* cegah teks terseleksi saat drag slider */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top, #171020 0, #020105 60%);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header.left {
  text-align: left;
}

.section-header h2 {
  margin: 0.25rem 0;
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.section-subtitle {
  max-width: 540px;
  margin: 0.5rem auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.overline {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--accent-orange);
}

.small {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================
   HEADER / NAVBAR
========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.96),
    rgba(0, 0, 0, 0.85)
  );
  backdrop-filter: blur(16px);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

/* logo kiri */
.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo-img {
  display: block;
  height: 80px;
  width: auto;
}

/* nav tengah */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  position: relative;
  font-weight: 600;
}

/* garis bawah */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

/* link aktif (dari JS) */
.main-nav a.is-active {
  color: #ffffff;
}

.main-nav a.is-active::after {
  width: 100%;
}

/* kanan: tombol buy tickets */
.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.btn.nav-buy {
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--accent-orange);
  color: #ffb13b;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  box-shadow: none;
}

.btn.nav-buy:hover {
  background: rgba(255, 177, 59, 0.16);
}

/* hamburger */
.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1.4rem;
}

/* =========================================
   HERO
========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero--kv {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.96)),
    url("../img/kv-berburu.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 0 100%,
    rgba(255, 255, 255, 0.16),
    transparent 60%
  );
  mix-blend-mode: soft-light;
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
}

.hero-content--center {
  display: flex;
  justify-content: center;
  text-align: center;
  padding: 4.5rem 1.5rem 5rem;
}

.hero-main {
  max-width: 600px;
}

.hero-logo {
  width: min(500px, 90vw);
  height: auto;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.9));
}

.hero-tagline {
  font-size: 1.1rem;
  margin: 0.3rem 0 0.3rem;
  color: #ffeec4;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-date-venue {
  margin: 0 0 0.9rem;
  font-weight: 500;
  font-size: 1rem;
}

.hero-meta-row {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.hero-cta--center {
  justify-content: center;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.9);
}

.btn.secondary {
  background: var(--surface);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn.ghost {
  background: transparent;
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.06);
}

.btn.full {
  width: 100%;
}

/* =========================================
   TICKER / RUNNING TEXT
========================================= */
.ticker-bar {
  background: #ffef3b;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0.35rem 0;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
}

.ticker-track span {
  display: inline-block;
  padding-right: 4rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #000;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================
   LINEUP SECTION
========================================= */
.section-lineup {
  background: #050308;
}

.lineup-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lineup-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.4rem 0.2rem 0.8rem;
  scrollbar-width: none;
}

.lineup-track::-webkit-scrollbar {
  display: none;
}

.lineup-card {
  position: relative;
  flex: 0 0 260px;
  max-width: 260px;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.lineup-card-img {
  width: 100%;
  padding-top: 135%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #000;
}

/* gunakan kalau perlu override khusus */
.lineup-card-img--rusa {
  /* contoh override jika dibutuhkan nanti */
}

.lineup-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 1.1rem 1.1rem;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

.lineup-card-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.lineup-card-role {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.lineup-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 1);
}

/* panah kiri/kanan */
.lineup-arrow {
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 32px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    opacity 0.15s ease;
  opacity: 0.7;
}

.lineup-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  transform: translateY(-2px);
}

.lineup-arrow--left {
  margin-right: 0.1rem;
}

.lineup-arrow--right {
  margin-left: 0.1rem;
}

/* =========================================
   TICKETS SLIDER
========================================= */
.section-tickets {
  background: #080509;
}

.tickets-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tickets-track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.4rem 0.2rem 0.8rem;
  scrollbar-width: none;
  cursor: grab;
}

.tickets-track::-webkit-scrollbar {
  display: none;
}

.tickets-track.is-dragging {
  cursor: grabbing;
}

.ticket-card {
  flex: 0 0 380px;
  max-width: 380px;
  background: transparent;
}

.ticket-card-inner {
  position: relative;
  background: #20171f;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* header tiket */
.ticket-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.ticket-type {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.ticket-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.ticket-tag--onsite {
  border-color: #ffb13b;
  color: #ffb13b;
}

.ticket-label {
  margin: 0.3rem 0 0.1rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ticket-price {
  margin: 0 0 0.7rem;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
}

.ticket-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.ticket-benefits li {
  margin-bottom: 0.35rem;
}

/* button di tiket */
.ticket-cta {
  margin-top: 0.3rem;
}

/* disabled OTS */
.ticket-cta--disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* panah kiri/kanan */
.tickets-arrow {
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 32px;
  height: 64px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 1.4rem;
  transition:
    background 0.15s ease,
    transform 0.15s ease,
    opacity 0.15s ease;
  opacity: 0.7;
}

.tickets-arrow:hover {
  background: rgba(0, 0, 0, 0.9);
  opacity: 1;
  transform: translateY(-2px);
}

.tickets-arrow--left {
  margin-right: 0.1rem;
}

.tickets-arrow--right {
  margin-left: 0.1rem;
}

/* =========================================
   INFO & CONTACT
========================================= */
.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.info-list li {
  margin-bottom: 0.75rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.map-card,
.contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.map-card {
  padding: 2rem;
  background: #141014;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.map-card .map-title {
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--accent-orange);
}

.map-embed {
  margin: 1.2rem 0 1.5rem;
  border-radius: 14px;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: none;
  border-radius: 14px;
}

.map-title,
.contact-title {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--accent-orange);
  margin: 0 0 0.5rem;
}

/* contact grid */
.contact-grid {
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.8fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-list li {
  display: flex;
  align-items: center;          /* icon + teks sejajar tengah */
  gap: 0.7rem;                  /* jarak icon-ke-teks */
}

/* ICON TANPA BUBBLE */
.contact-icon {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  overflow: visible;
}

/* pastikan tidak ada bubble warna */
.contact-icon--wa,
.contact-icon--mail,
.contact-icon--ig {
  background: transparent;
}

/* ukuran icon */
.contact-icon-img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

/* teks di kanan icon */
.contact-text {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  align-items: center;
  font-size: 0.95rem;
}

/* SEMBUNYIKAN LABEL "WhatsApp / Email / Instagram" */
.contact-label {
  display: none;
}

.contact-text a {
  color: #ffffff;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-separator {
  opacity: 0.6;
}

/* kartu kanan sponsorship */
.contact-card {
  background: #141014;
  border-radius: 22px;
  padding: 2rem 2.1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
}

.contact-card .card-overline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-orange);
  margin-bottom: 0.8rem;
}

/* =========================================
   FAQ
========================================= */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 7, 14, 0.96);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: none;
  background: none;
  color: var(--text-main);
  font-size: 0.92rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-toggle {
  font-weight: 700;
  font-size: 1rem;
  margin-left: 0.75rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.1rem;
  transition:
    max-height 0.18s ease-out,
    padding-bottom 0.18s ease-out;
}

.faq-answer p {
  font-size: 0.87rem;
  color: var(--text-muted);
}

/* =========================================
   PROMOTED SECTION
========================================= */
.promoted-section {
  background: transparent;
  padding: 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.promoted-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.promoted-logo {
  height: 70px;
  width: auto;
  opacity: 0.95;
}

/* =========================================
   ARTIST MODAL
========================================= */
.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.artist-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.artist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(12px);
}

/* wrapper */
.artist-modal-dialog {
  position: relative;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
}

/* layout */
.artist-modal-layout {
  background: #150f1a;
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr 1.7fr;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.7);
}

/* foto kiri */
.artist-modal-image {
  position: relative;
  min-height: 420px;
  background: #000;
  overflow: hidden;
}

.artist-modal-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* panel kanan */
.artist-modal-content {
  padding: 2rem 2.4rem;
}

.artist-modal-overline {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-orange);
}

.artist-modal-name {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  font-weight: 700;
}

.artist-modal-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 90%;
}

.artist-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.6rem;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 3;
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  background: #050505;
  padding: 3rem 0 2.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-main);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

/* logo + info event */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-logo {
  height: 42px;
  width: auto;
}

.footer-event-meta {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-event-date {
  margin: 0;
  color: #ffb13b;
  font-weight: 600;
}

.footer-event-venue {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.85);
}

/* tagline besar */
.footer-tagline {
  margin: 0.4rem 0 0;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* garis pemisah */
.footer-divider {
  max-width: var(--container-width);
  margin: 1.9rem auto 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

/* row link + social */
.footer-main {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* link kiri */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

/* social kanan */
.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
}

.footer-follow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

/* icon sosmed */
.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
}

.social-pill:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* bottom copyright */
.footer-bottom {
  max-width: var(--container-width);
  margin: 1.6rem auto 0;
  padding: 0 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =========================================
   RESPONSIVE (BASE FROM YOUR FILE)
========================================= */

@media (max-width: 900px) {
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .artist-modal-layout {
    grid-template-columns: 1fr;
  }

  .artist-modal-image {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .footer-tagline {
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 0.9rem;
  }

  .footer-social {
    align-self: flex-start;
  }

  .footer-bottom {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .footer-main {
    align-items: flex-start;
  }

  .footer-tagline {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav-container {
    height: 64px;
    position: relative;
    z-index: 1000;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.96);
    padding: 1rem 1.5rem 1.2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1100;
    cursor: pointer;
  }

  .lineup-carousel {
    gap: 0;
  }

  .lineup-track {
    gap: 1rem;
    padding: 0.5rem 1.2rem 1.5rem;
  }

  /* lineup arrow & tickets arrow hide */
  .lineup-arrow, .tickets-arrow {
    display: none;
  }
}

/* ==========================================================================
   MOBILE FIX FINAL (NO HAMBURGER)
   ========================================================================== */

@media (max-width: 768px) {

  /* --- 1. NAVBAR BERSIH (LOGO + TOMBOL BELI SAJA) --- */
  .nav-container {
    height: 64px;
    padding: 0 1rem;
    justify-content: space-between; /* Logo kiri, Tombol kanan */
  }

  .brand-logo-img {
    height: 56px; /* Ukuran logo pas */
  }

  /* HAPUS HAMBURGER MENU TOTAL */
  .nav-toggle {
    display: none !important;
  }

  /* SEMBUNYIKAN DRAWER MENU */
  .main-nav {
    display: none !important;
  }

  /* --- 2. TOMBOL BUY TICKETS (TAMPIL) --- */
  .nav-actions {
    display: flex !important;
    margin-left: auto; /* Dorong ke kanan mentok */
    margin-right: 0;
  }

  .btn.nav-buy {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    border-width: 1px;
    white-space: nowrap;
  }

  /* --- 3. FIX LINEUP & TIKET (ANTI GEPENG) --- */
  .lineup-track, .tickets-track {
    display: flex;
    padding: 0 1.5rem 1.5rem;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }

  .lineup-card, .ticket-card {
    flex: 0 0 80vw;
    min-width: 80vw;
    max-width: 320px;
    scroll-snap-align: center;
    margin: 0;
  }

  .lineup-card-img {
    background-size: cover !important;
  }

  .lineup-arrow, .tickets-arrow {
    display: none !important;
  }

  /* --- 4. FIX LAINNYA --- */
  .artist-modal-layout {
    display: flex;
    flex-direction: column;
  }

  .artist-modal-image {
    min-height: 250px;
    width: 100%;
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================================
   RUNDOWN PAGE — POSTER STYLE
========================================= */

.hero--rundown {
  min-height: 60vh;
}

.rundown-hero-title {
  margin: 0.4rem 0 0.4rem;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-rundown {
  background: var(--bg-dark);
}

/* meta cards (tanggal, venue, theme) */
.rundown-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 2.5rem 0 2.25rem;
}

.rundown-meta-card {
  background: radial-gradient(circle at top, #23172f 0, #0b0713 55%);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.rundown-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin: 0 0 0.4rem;
}

.rundown-meta-main {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.rundown-meta-sub {
  margin: 0.25rem 0 0;
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* rundown table (inspirasi dari poster: pill kiri jam, pill kanan sesi) */

.rundown-table {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.rundown-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: stretch;
}

.rundown-time-pill {
  background: var(--accent-orange);
  color: #050308;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  g
