:root {
  --bg-dark: #0a0a0f;
  --bg-surface: #13131a;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);

  --neon-pink: #ff2a6d;
  --neon-cyan: #05d9e8;
  --neon-purple: #b537f2;
  --neon-yellow: #fcee0a;

  --text-main: #ffffff;
  --text-muted: #8a8a9a;
  --text-subtle: #555568;

  --status-tersedia: #00ff87;
  --status-presale: #fcee0a;
  --status-soldout: #ff2a6d;
  --status-belum: #8a8a9a;
  --status-undangan: #555568;

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s ease;

  --border-subtle: 1px solid rgba(255, 255, 255, 0.06);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  top: -30%;
  left: -15%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(181, 55, 242, 0.12) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  bottom: -30%;
  right: -15%;
  width: 55%;
  height: 55%;
  background: radial-gradient(circle, rgba(5, 217, 232, 0.08) 0%, transparent 65%);
  z-index: -1;
  pointer-events: none;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { display: block; }

/* =================== NAVBAR =================== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 0 5%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
}

.nav-cta:hover {
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple)) !important;
  opacity: 0.85;
  transform: translateY(-1px);
}

/* =================== MAIN =================== */
main { min-height: 100vh; padding-top: 70px; }

/* =================== HERO =================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5% 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.9) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 0.95) 100%
  );
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 42, 109, 0.15);
  color: var(--neon-pink);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid rgba(255, 42, 109, 0.35);
  margin-bottom: 1.25rem;
}

.hero-eyebrow span { width: 6px; height: 6px; border-radius: 50%; background: var(--neon-pink); animation: pulse-pink 1.5s ease infinite; }

@keyframes pulse-pink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,42,109,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(255,42,109,0); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 550px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hero-meta-item { display: flex; flex-direction: column; gap: 0.15rem; }
.hero-meta-val { font-size: 1rem; font-weight: 700; color: var(--text-main); }
.hero-meta-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* =================== SEARCH BAR =================== */
.search-section {
  padding: 2rem 5%;
  background: var(--bg-surface);
  border-top: var(--border-subtle);
  border-bottom: var(--border-subtle);
}

.search-wrap {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-box {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.search-box input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 3rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(5, 217, 232, 0.12);
  background: rgba(5, 217, 232, 0.04);
}

.filter-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-select {
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a9a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.filter-select:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 3px rgba(5, 217, 232, 0.12);
}

.filter-select option { background: #1a1a25; }

.search-btn {
  padding: 0.85rem 2rem;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.search-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 42, 109, 0.4);
}

/* =================== STATUS CHIPS =================== */
.status-chips {
  padding: 1rem 5%;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-fast);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
}

.status-chip:hover, .status-chip.active { color: white; }

.chip-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

.chip-tersedia .chip-dot { background: var(--status-tersedia); box-shadow: 0 0 6px var(--status-tersedia); }
.chip-tersedia:hover, .chip-tersedia.active { background: rgba(0, 255, 135, 0.12); border-color: rgba(0, 255, 135, 0.3); color: var(--status-tersedia); }

.chip-presale .chip-dot { background: var(--status-presale); box-shadow: 0 0 6px var(--status-presale); }
.chip-presale:hover, .chip-presale.active { background: rgba(252, 238, 10, 0.1); border-color: rgba(252, 238, 10, 0.3); color: var(--status-presale); }

.chip-soldout .chip-dot { background: var(--status-soldout); box-shadow: 0 0 6px var(--status-soldout); }
.chip-soldout:hover, .chip-soldout.active { background: rgba(255, 42, 109, 0.1); border-color: rgba(255, 42, 109, 0.3); color: var(--status-soldout); }

.chip-semua { }
.chip-semua:hover, .chip-semua.active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: white; }

/* =================== SECTIONS =================== */
section { padding: 3.5rem 5%; }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-purple));
  border-radius: var(--radius-pill);
}

.section-link {
  font-size: 0.85rem;
  color: var(--neon-cyan);
  font-weight: 600;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.section-link:hover { opacity: 0.75; }

/* =================== EVENT GRID =================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.events-grid.list-view {
  grid-template-columns: 1fr;
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
}

.no-results h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* =================== EVENT CARD =================== */
.event-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-subtle);
  transition: var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.event-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.event-poster-wrapper {
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.event-poster {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-poster { transform: scale(1.04); }

.event-status {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-Tersedia .status-dot { background-color: var(--status-tersedia); box-shadow: 0 0 8px var(--status-tersedia); }
.status-Tersedia { color: var(--status-tersedia); }
.status-Presale .status-dot { background-color: var(--status-presale); box-shadow: 0 0 8px var(--status-presale); animation: blink 1.5s ease infinite; }
.status-Presale { color: var(--status-presale); }
.status-SoldOut .status-dot, .status-Sold .status-dot { background-color: var(--status-soldout); }
.status-SoldOut, .status-Sold { color: var(--status-soldout); }
.status-BelumTersedia .status-dot, .status-Belum .status-dot { background-color: var(--status-belum); }
.status-BelumTersedia, .status-Belum { color: var(--text-muted); }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.event-genre-tag {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(8px);
  color: var(--text-muted);
}

.event-info {
  padding: 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.event-date-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--neon-cyan);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-name {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.event-location {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

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

.card-price-block { display: flex; flex-direction: column; }
.price-label-sm { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.1rem; }
.price-amount { font-size: 1rem; font-weight: 700; font-family: var(--font-display); }

.card-cta {
  padding: 0.5rem 1rem;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.card-cta:hover { opacity: 0.85; transform: scale(1.03); }
.card-cta-disabled {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted);
  cursor: not-allowed;
}
.card-cta-disabled:hover { transform: none; opacity: 1; }

/* =================== CITY PILLS =================== */
.city-pills {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.city-pill {
  padding: 0.65rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.city-pill:hover {
  background: rgba(5, 217, 232, 0.08);
  border-color: rgba(5, 217, 232, 0.3);
  color: var(--neon-cyan);
}

.city-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.07);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-pill);
}

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 42, 109, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(255, 42, 109, 0.55);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
}

/* =================== DETAIL PAGE =================== */
.detail-hero {
  position: relative;
  padding-top: 70px;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.detail-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(24px);
  transform: scale(1.05);
  z-index: 0;
}

.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg-dark) 20%,
    rgba(10, 10, 15, 0.5) 60%,
    rgba(10, 10, 15, 0.85) 100%
  );
  z-index: 1;
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5% 4rem;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: flex-end;
}

.detail-poster {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}

.detail-meta-top { margin-bottom: 0.75rem; }

.detail-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.detail-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.detail-chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.detail-chip {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
}

.detail-ticket-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ticket-price-block { display: flex; flex-direction: column; }
.ticket-price-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.2rem; }
.ticket-price-val { font-size: 1.6rem; font-weight: 800; font-family: var(--font-display); }

.btn-buy {
  padding: 0.9rem 2.5rem;
  background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
  color: white;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 4px 24px rgba(255, 42, 109, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 42, 109, 0.6);
}

.btn-disabled-buy {
  padding: 0.9rem 2.5rem;
  background: rgba(255,255,255,0.07);
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: not-allowed;
}

/* =================== DETAIL BODY =================== */
.detail-body {
  padding: 3rem 5%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
}

.detail-section-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: var(--text-main);
}

.desc-text {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.ticket-categories {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  transition: var(--transition-fast);
}

.ticket-row:hover { background: rgba(255,255,255,0.06); }
.ticket-cat-name { font-weight: 600; }
.ticket-cat-price { font-weight: 700; font-family: var(--font-display); font-size: 1.05rem; }
.ticket-cat-status {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 255, 135, 0.1);
  color: var(--status-tersedia);
}

/* Info Box */
.info-box {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: var(--border-subtle);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.info-box-header {
  padding: 1rem 1.5rem;
  border-bottom: var(--border-subtle);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.9rem 1.5rem;
  border-bottom: var(--border-subtle);
  gap: 1rem;
}

.info-row:last-child { border-bottom: none; }
.info-row-label { font-size: 0.85rem; color: var(--text-muted); flex-shrink: 0; }
.info-row-val { font-size: 0.9rem; font-weight: 600; text-align: right; }

.sticky-sidebar { position: sticky; top: 90px; }

/* =================== NOTICE BANNER =================== */
.notice-banner {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  background: rgba(5, 217, 232, 0.06);
  border: 1px solid rgba(5, 217, 232, 0.2);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--neon-cyan);
}

/* =================== FOOTER =================== */
footer {
  background: var(--bg-surface);
  border-top: var(--border-subtle);
  padding: 3rem 5%;
  margin-top: 4rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--text-muted); transition: var(--transition-fast); }
.footer-col ul a:hover { color: var(--text-main); }

.footer-bottom {
  padding-top: 2rem;
  border-top: var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.85rem; color: var(--text-muted); }
.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  border: var(--border-subtle);
}
.affiliate-badge { color: var(--status-tersedia); font-weight: 700; }

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .detail-hero-inner { grid-template-columns: 1fr; }
  .detail-poster { max-width: 220px; }
  .detail-body { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 70vh; padding-top: 5rem; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero-title { font-size: 2.2rem; }
  .hero-meta { flex-wrap: wrap; gap: 1rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .search-wrap { flex-direction: column; }
  .search-box { min-width: 100%; }
  .filter-group { width: 100%; }
  .filter-select { flex: 1; }
}
