:root {
  --bg: #050816;
  --bg-soft: #0b1020;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.25);
  --accent-2: #a855f7;
  --text-main: #f9fafb;
  --text-soft: #9ca3af;
  --card-radius: 24px;
  --shadow-soft: 0 24px 60px rgba(15, 23, 42, 0.85);
  --border-subtle: rgba(148, 163, 184, 0.25);
}
/* =========================
   GLOBAL SCROLL FIX (FINAL)
   ========================= */

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Wadah dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Tombol program */
.dropbtn {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  padding: 10px;
  color: inherit;
  font-family: inherit;
}

/* Bagian dropdown yang disembunyikan dulu */
.dropdown-content {
  background: rgba(15, 23, 42, 0.95);   /* transparan gelap */
  backdrop-filter: blur(10px);          /* efek kaca */
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(148,163,184,0.2);
}


/* Link di dalam dropdown */
.dropdown-content a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 600;
  text-align: center;
}

/* Efek hover tiap item */
.dropdown-content a:hover {
  background-color: #f1f1f1;
  border-radius: 6px;
}

/* INI KUNCI UTAMA */
/* Baru tampil ketika mouse di atas Program */
.dropdown:hover .dropdown-content {
  display: block;
}

/* PENTING: biar dropdown tidak ikut flex */
.nav-links .dropdown {
  position: relative;
}

/* Pastikan dropdown benar-benar MELAYANG */
.nav-links .dropdown-content {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;

  display: none;
  flex-direction: column;

  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  min-width: 180px;

  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.2);

  box-shadow: 0 12px 30px rgba(0,0,0,0.5);

  z-index: 9999;
}

/* Muncul hanya saat hover */
.nav-links .dropdown:hover .dropdown-content {
  display: flex !important;
}

/* Biar tombol program rapi */
.nav-links .dropbtn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-soft);
}

.dropdown-content a {
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
}

.dropdown-content a:hover {
  background: #f1f5f929;
}


/* Samakan gaya button dropdown dengan link navbar */
.nav-links .dropbtn {
  padding: 4px 0;               /* samakan dengan nav-links a */
  font-size: 14px;              /* samakan ukuran font */
  line-height: normal;
  display: flex;
  align-items: center;
  height: 100%;                 /* ikut tinggi navbar */
  color: var(--text-soft);
}

/* Supaya posisinya benar-benar tengah */
.nav-links {
  align-items: center;
}

/* ===== FIX ALIGNMENT NAVBAR MOBILE ===== */
@media (max-width: 640px) {

  /* Supaya semua item di menu mobile vertikal sejajar */
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Samakan dropbtn dengan link biasa di mobile */
  .nav-links .dropbtn {
    width: 100%;
    text-align: left;
    padding: 4px 0;
    font-size: 14px;
    display: block;
  }

  /* Samakan dropdown wrapper dengan link */
  .nav-links .dropdown {
    width: 100%;
  }

  /* Supaya konten dropdown juga rapi di mobile */
  .nav-links .dropdown-content {
    position: relative !important;
    box-shadow: none;
    border-radius: 0;
    background: transparent;
  }

  .nav-links .dropdown-content a {
    padding-left: 10px;
    text-align: left;
  }
}

@media (max-width: 640px) {

  /* anchor dropdown */
  .nav-inner {
    position: relative;
  }

  /* menu dropdown */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    gap: 12px;

    padding: 14px 18px;
    background: rgba(2,6,23,0.96);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(148,163,184,0.25);
    z-index: 99;
  }

  .nav-links.active {
    display: flex;
  }

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;

  width: 0;
  height: 2px;
  border-radius: 2px;

  background: linear-gradient(90deg, #38bdf8, #22d3ee);
  transition: width 0.3s ease;
}

.nav-links a.active::after {
  width: 100%;
}


  /* kanan */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* tombol hubungi */
  .nav-cta {
    display: flex;
    font-size: 11px;
    padding: 6px 12px;
  }

  /* hamburger */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.4);
    background: rgba(15,23,42,0.9);
  }

  .nav-toggle span {
    width: 16px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 2px;
  }
}

.nav-links a.active {
  color: var(--text-main);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body.menu-open {
  overflow: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%),
              radial-gradient(circle at 10% 0, #0f172a 0, #020617 60%);
  color: var(--text-main);
  scroll-behavior: smooth;
}


/* --- NAVBAR --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.85),
    rgba(15, 23, 42, 0.4),
    transparent
  );
  border-bottom: 1px solid rgba(15, 23, 42, 0.8);
}


.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #38bdf8, #0ea5e9 30%, #0b1120 80%);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.4),
    0 12px 30px rgba(8, 47, 73, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-text span:first-child {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
}

.nav-logo-text span:last-child {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
  transition: width 0.22s ease;
}

.nav-links a:hover {
  color: var(--text-main);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: radial-gradient(circle at 0 0, rgba(56,189,248,0.15), transparent 55%);
  color: var(--text-main);
}

.nav-cta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

/* --- HERO --- */
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 72px;
  margin-top: 40px;   
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr);
  gap: 32px;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.12), transparent 45%),
    radial-gradient(circle at 80% 0, rgba(168, 85, 247, 0.14), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(59, 130, 246, 0.12), transparent 60%);
  opacity: 0.9;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 36px;
  border: 1px solid rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.1);
  opacity: 0.35;
  z-index: -1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 12px;
  color: var(--text-soft);
  width: fit-content;
}

.hero-pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.5);
  background: radial-gradient(circle at 30% 0, #38bdf8, #0f172a 55%, #020617 100%);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.9);
}

.hero-pill span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  font-weight: 800;
}

.hero-title-gradient {
  background: linear-gradient(120deg, #38bdf8, #a855f7, #f59e0b);
  -webkit-background-clip: text;
  color: transparent;
    background-clip: text;
}

.hero-subtitle {
  color: var(--text-soft);
  font-size: 15px;
  max-width: 32rem;
}

.hero-subtitle strong {
  color: #e5e7eb;
  font-weight: 600;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.hero-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 6px 10px;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 6px;
  background: radial-gradient(circle at 0 0, rgba(56,189,248,0.22), transparent 50%);
}

.hero-badge-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

.hero-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary, .btn-ghost {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.btn-primary {
  background: radial-gradient(circle at 0 0, #38bdf8, #0ea5e9 30%, #0369a1 100%);
  box-shadow: 0 14px 40px rgba(8, 47, 73, 0.9);
  color: #0b1120;
}

.btn-primary span.icon {
  font-size: 18px;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 55px rgba(8, 47, 73, 1);
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-main);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.7);
}

.hero-metadata {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 11px;
  color: var(--text-soft);
}

.hero-metadata span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-metadata span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
}

/* --- INTERACTIVE AREA --- */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.interactive-3d {
  transform-style: preserve-3d;
  transform: perspective(950px) rotateX(10deg) rotateY(-16deg);
  transition: transform 0.25s ease-out;
}

.interactive-stack {
  position: relative;
  display: grid;
  gap: 22px;
}

/* Pinball machine */
.pinball-card {
  position: relative;
  border-radius: var(--card-radius);
  padding: 18px 18px 16px;
  background: radial-gradient(circle at 0 0, rgba(56,189,248,0.3), transparent 55%),
              radial-gradient(circle at 100% 0, rgba(168,85,247,0.4), transparent 65%),
              linear-gradient(135deg, #0b1120, #020617);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.pinball-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pinball-title {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pinball-title span.badge {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  border: 1px solid rgba(15, 23, 42, 0.7);
  background: rgba(15, 23, 42, 0.6);
  color: var(--accent);
}

.pinball-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 11px;
  color: var(--text-soft);
}

.pinball-score-value {
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.9);
  margin-top: 4px;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.8);
}

.pinball-body {
  position: relative;
  border-radius: 18px;
  padding: 16px 14px 14px;
  background: radial-gradient(circle at 50% -20%, rgba(248, 250, 252, 0.28), transparent 60%),
              radial-gradient(circle at 0 120%, rgba(56,189,248,0.26), transparent 65%),
              linear-gradient(145deg, #020617, #020617);
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
  min-height: 180px;
}

.pinball-rails {
  position: absolute;
  inset: 18px 24px;
  border-radius: 999px;
  border: 2px solid rgba(148, 163, 184, 0.55);
  filter: drop-shadow(0 0 12px rgba(148, 163, 184, 0.35));
  overflow: hidden; /* penting */
}

.pinball-events {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) perspective(800px);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;
  border-radius: 999px;

  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12), transparent 55%),
    linear-gradient(
      180deg,
      rgba(30,64,175,0.35),
      rgba(2,6,23,0.85)
    );

  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border: 1px solid rgba(56,189,248,0.55);

  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    0 0 28px rgba(56,189,248,0.65),
    0 0 90px rgba(30,64,175,0.55);

  animation:
    containerFloat 3.6s ease-in-out infinite,
    containerPulse 4.2s ease-in-out infinite;

  white-space: nowrap;
}

.pinball-event-text {
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;

  padding: 10px 26px;
  border-radius: 999px;

  background: linear-gradient(
    120deg,
    #dbeafe,
    #38bdf8,
    #2563eb,
    #1e40af,
    #dbeafe
  );
  background-size: 400% 100%;

  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  position: relative;

  filter:
    drop-shadow(0 0 6px rgba(56,189,248,.9))
    drop-shadow(0 0 18px rgba(37,99,235,.8))
    drop-shadow(0 0 40px rgba(30,64,175,.65));

  animation:
    textFlowUltra 3.2s linear infinite,
    textLevitate 2.8s ease-in-out infinite alternate;
}

.pinball-event-text::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    repeating-linear-gradient(
      to bottom,
      rgba(219,234,254,0.22),
      rgba(219,234,254,0.22) 1px,
      transparent 1px,
      transparent 3px
    );

  mix-blend-mode: overlay;
  opacity: 0.28;
  animation: scanMove 2.6s linear infinite;
  pointer-events: none;
}

.pinball-events::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: inherit;

  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(56,189,248,0.55),
      rgba(37,99,235,0.35),
      transparent 70%
    );

  filter: blur(26px);
  opacity: 0.9;
  animation: haloPulse 3.8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes textFlowUltra {
  from { background-position: 0% 50%; }
  to   { background-position: 400% 50%; }
}

@keyframes textLevitate {
  from { transform: translateY(-3px) scale(1); }
  to   { transform: translateY(4px) scale(1.04); }
}

@keyframes scanMove {
  from { background-position: 0 0; }
  to   { background-position: 0 100%; }
}

@keyframes containerFloat {
  from { transform: translate(-50%, -52%) perspective(800px); }
  to   { transform: translate(-50%, -48%) perspective(800px); }
}

@keyframes containerPulse {
  0%,100% {
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.12),
      0 0 28px rgba(56,189,248,.55),
      0 0 80px rgba(30,64,175,.45);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(255,255,255,0.22),
      0 0 46px rgba(56,189,248,.85),
      0 0 140px rgba(30,64,175,.75);
  }
}

@keyframes haloPulse {
  0%,100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.pinball-lights {
  position: absolute;
  inset: 22px 28px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.pinball-light {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #e5e7eb, #9ca3af 40%, #020617 100%);
  box-shadow: 0 0 18px rgba(249, 250, 251, 0.9);
  opacity: 0.8;
  animation: glow 1.8s ease-in-out infinite alternate;
}

.pinball-light:nth-child(2) {
  animation-delay: 0.35s;
}
.pinball-light:nth-child(3) {
  animation-delay: 0.7s;
}

.pinball-balls {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.pinball-ball {
  --tx: 0px;
  --ty: 0px;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #f9fafb, #9ca3af 40%, #020617 100%);
  box-shadow:
    0 0 16px rgba(248, 250, 252, 0.9),
    0 0 26px rgba(56, 189, 248, 0.7);
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) translate(var(--tx), var(--ty));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pinball-ball:nth-child(1) {
  top: 68%;
  left: 32%;
}
.pinball-ball:nth-child(2) {
  top: 40%;
  left: 60%;
}
.pinball-ball:nth-child(3) {
  top: 52%;
  left: 48%;
}

.pinball-ball.is-moving {
  transition-duration: 0.26s;
}

.pinball-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--text-soft);
}

.pinball-footer-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pinball-footer-left strong {
  color: #e5e7eb;
  font-weight: 600;
}

.pinball-footer-modes {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}

.label-pill {
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.85);
}

.pinball-footer-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 0;
  background: radial-gradient(circle at 0 0, #22c55e, #16a34a 30%, #15803d 100%);
  color: #ecfdf5;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 10px 25px rgba(5, 46, 22, 0.9);
}

.pinball-footer-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(5, 46, 22, 1);
}

/* Computer card */
.computer-card {
  position: relative;
  border-radius: var(--card-radius);
  padding: 16px 16px 14px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), transparent 55%),
              radial-gradient(circle at 100% 0, rgba(59,130,246,0.26), transparent 60%),
              linear-gradient(135deg, #020617, #020617);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
}

.computer-shell {
  border-radius: 20px;
  background: linear-gradient(135deg, #020617, #020617);
  padding: 12px 12px 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.9);
}

.computer-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--text-soft);
}

.computer-dots {
  display: inline-flex;
  gap: 5px;
}

.computer-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
}

.computer-dot:nth-child(1) { background: #f97316; }
.computer-dot:nth-child(2) { background: #facc15; }
.computer-dot:nth-child(3) { background: #22c55e; }

.computer-title {
  font-size: 11px;
  color: #e5e7eb;
}

.computer-screen {
  border-radius: 14px;
  background: radial-gradient(circle at 10% 0, rgba(56,189,248,0.3), transparent 65%),
              radial-gradient(circle at 90% 100%, rgba(168,85,247,0.3), transparent 60%),
              #020617;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, 0.8);
  min-height: 120px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 12px;
}

.terminal {
  border-radius: 10px;
  background: radial-gradient(circle at 0 0, rgba(15,23,42,0.9), #020617);
  border: 1px solid rgba(15, 23, 42, 0.85);
  padding: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  color: #e5e7eb;
  position: relative;
  overflow: hidden;
}

.terminal-line span.prompt {
  color: #22c55e;
}

.terminal-cursor {
  display: inline-block;
  width: 8px;
  height: 12px;
  background: #e5e7eb;
  margin-left: 2px;
  animation: blink 1s step-end infinite;
}

.terminal-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 2px 6px;
  border-radius: 999px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text-soft);
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
  color: var(--text-main);
}

.event-pill {
  border-radius: 10px;
  padding: 6px 8px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-title {
  font-weight: 600;
}

.event-meta {
  font-size: 10px;
  color: var(--text-soft);
  display: flex;
  justify-content: space-between;
  gap: 6px;
}

.computer-bottom {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--text-soft);
}

.computer-bottom span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


/* --- SECTIONS --- */
.section {
  margin-top: 56px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 13px;
  color: var(--text-soft);
  max-width: 360px;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(135deg, rgba(15,23,42,0.96), #020617);
  padding: 14px 14px 12px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.85);
}

.card-title {
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  align-items: center;
}

.card-title span.label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--text-soft);
}

.card-body {
  font-size: 13px;
  color: var(--text-soft);
}




/* --- CONTACT --- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  margin-top: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form label {
  font-size: 12px;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  padding: 8px 10px;
  background: rgba(15, 23, 42, 0.96);
  color: var(--text-main);
  font-size: 13px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7);
}

.contact-info {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-chip {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
}

.contact-chip span.icon {
  font-size: 14px;
}






/* Tambahan */
.nav-logo-badge img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

/* vidio profail */
.grid-1 {
  grid-template-columns: minmax(0, 1fr);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #020617;
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =========================
   JUSTIFY TEXT (ABOUT SECTION)
   ========================= */
#about .card-body,
#about .mission-text {
  text-align: center;
  text-justify: inter-word;
}
#about .card-body,
#about .mission-text {
  line-height: 1.7;
}


/* =========================
   FOOTER (FULL WIDTH)
   ========================= */

.site-footer {
  width: 100%;
  margin-top: 0;
  background:
    radial-gradient(circle at 10% 0, rgba(56,189,248,0.12), transparent 50%),
    radial-gradient(circle at 80% 0, rgba(168,85,247,0.12), transparent 55%),
    linear-gradient(135deg, #020617, #020617);

  border-top: 1px solid rgba(148,163,184,0.25);
  color: var(--text-main);
}

/* =========================
   FOOTER INNER (RAPI)
   ========================= */

.footer-inner {
  max-width: 1120px;        /* ⬅️ KUNCI KERAPIAN */
  margin: 0 auto;
  padding: 48px 20px;

  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* =========================
   FOOTER CONTENT
   ========================= */

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-soft);
}

.footer-links a {
  text-decoration: none;
  color: var(--text-soft);
}

.footer-links a:hover {
  color: var(--text-main);
}

/* =========================
   FOOTER CENTER
   ========================= */

.footer-center {
  text-align: center;
}

.footer-logo {
  width: 64px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 14px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: #1f2937;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: #000000;
}

/* =========================
   FOOTER BOTTOM
   ========================= */

.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(148,163,184,0.25);
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
}

/* FOOTER WRAPPER – FULL WIDTH */
.site-footer {
  width: 100%;
  background:
    radial-gradient(circle at 10% 0, rgba(56,189,248,0.12), transparent 50%),
    radial-gradient(circle at 80% 0, rgba(168,85,247,0.12), transparent 55%),
    linear-gradient(135deg, #020617, #020617);
  color: var(--text-main);
  border-top: 1px solid rgba(148,163,184,0.25);
}

/* KONTEN FOOTER – TETAP RAPI */
.footer-inner {
  max-width: 1120px; /* 🔥 DI SINI SAJA */
  margin: 0 auto;
  padding: 48px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: center;
}

/* GARIS BAWAH */
.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(148,163,184,0.25);
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-soft);
}

.footer-top {
  width: 100%;
  padding: 14px 20px;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-top .footer-brand {
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-main);
}

.program-card {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(15,23,42,.85);
}

.program-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(188, 190, 198, 0.586);
  z-index: 1;
}


.program-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
}

.program-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fde047;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.program-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
}

.program-label {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.08);
  color: #0f172a;
}

.program-card {
  perspective: 1200px;
  height: 220px;
}

.program-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(.4,.2,.2,1);
}

.program-card:hover .program-inner {
  transform: rotateY(180deg);
}

.program-face {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* DEPAN */
.program-front {
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

/* BELAKANG */
.program-back {
  background: linear-gradient(135deg, #020617, #020617);
  transform: rotateY(180deg);

  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.program-back h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fde68a;
}

.program-back p {
  font-size: 13px;
  line-height: 1.6;
  color: #e5e7eb;
}

.mission-content {
  position: relative;
  min-height: 90px; /* jaga tinggi card */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mission-text {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;

  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;

  pointer-events: none;
}

.mission-text.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 640px) {
  .mission-content {
    min-height: 120px;
    padding: 0 12px;
  }

  .mission-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

.mission-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.mission-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148,163,184,0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}

.mission-dot.active {
  width: 22px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  box-shadow: 0 0 12px rgba(56,189,248,.8);
}


/* =========================
   SCROLL REVEAL (FINAL FIX)
   ========================= */

.reveal {
  opacity: 0;
}

.reveal.show {
  animation: revealUp 0.7s ease forwards;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================
   HERO MOBILE ORDER (FINAL)
   ========================= */
@media (max-width: 640px) {

  /* hero jadi stack vertikal */
  .hero {
    display: flex;
    flex-direction: column;
  }

  /* TEKS BEM DI ATAS */
  .hero-left {
    order: 1;
  }

  /* PINBALL + COMPUTER DI BAWAH */
  .hero-right {
    order: 2;
    margin-top: 32px;
  }

}

@media (max-width: 576px) {
  .section-subtitle {
    display: none; /* 🔥 HILANG DI HP */
  }
}

/* ===============================
   MOBILE MODE: KALENDER SAJA
   =============================== */
@media (max-width: 768px) {

  /* container jadi 1 kolom */
  .calendar-art-board {
    display: block;
  }

  /* ART DISEMBUNYIKAN */
  .calendar-art {
    display: none;
  }

  /* kalender full width */
  .calendar-panel {
    width: 100%;
    padding: 16px;
    border-radius: 18px;
  }

  /* header rapihin */
  .calendar-top {
    justify-content: center;
    gap: 10px;
  }

  /* ukuran teks disesuaikan */
  .calendar-top .month {
    font-size: 16px;
  }

  .calendar-top .day-badge {
    font-size: 13px;
    padding: 4px 10px;
  }

  .calendar-top .year {
    font-size: 14px;
  }

  /* grid tanggal lebih rapat */
/* ===============================
   FIX GRID KALENDER (RAPIH)
   =============================== */

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}

/* KOTAK TANGGAL */
.calendar-days span {
  display: flex;
  align-items: center;
  justify-content: center;

  aspect-ratio: 1 / 1; /* ⬅️ INI KUNCI UTAMA */
  width: 100%;

  font-size: 14px;
  font-weight: 500;

  border-radius: 14px;
  background: rgba(15, 23, 42, 0.75);

  line-height: 1;
}

/* HARI INI */
.calendar-days span.today {
  background: #38bdf8;
  color: #000;
  font-weight: 700;
}
}



.desk-calendar {
  max-width: 900px;
  margin: 80px auto;
  background: rgba(22, 35, 62, 0.75);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  overflow: hidden;
  color: #f5f5f5;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 20px;
  color: #f5f5f5;
}

.calendar-header button {
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #f5f5f5;
}

.calendar-week,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7,1fr);
}

.calendar-week {
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 0;
  text-align: center;
  font-weight: 600;
}

.calendar-grid {
  padding: 12px;
  gap: 6px;
}

/* WARNA PER HARI (OVERRIDE) */
.calendar-grid .calendar-day.day-0 {
  background: linear-gradient(135deg, #21264e, #191787);
}

.calendar-grid .calendar-day.day-1 {
  background: linear-gradient(135deg, #21264e, #191787);
}

.calendar-grid .calendar-day.day-2 {
  background: linear-gradient(135deg, #21264e, #191787);
}

.calendar-grid .calendar-day.day-3 {
  background: linear-gradient(135deg, #21264e, #191787);
}

.calendar-grid .calendar-day.day-4 {
  background: linear-gradient(135deg, #21264e, #191787);
}

.calendar-grid .calendar-day.day-5 {
  background: linear-gradient(135deg, #21264e, #191787);
}

.calendar-grid .calendar-day.day-6 {
  background: linear-gradient(135deg, #21264e, #191787);
}

.calendar-grid .calendar-day.has-event {
  background: linear-gradient(135deg, #422bf2, #4534fb) !important;
}

.calendar-grid .calendar-day.today {
  background: linear-gradient(135deg, #551cff, #0016a4) !important;
  color: #111;
}


/* POPUP EVENT KALENDER (HP) */
.calendar-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: flex-end;
  z-index: 9999;
}

.calendar-popup.active {
  display: flex;
}

.calendar-popup-box {
  width: 100%;
  background: #1a0f0a;
  color: #f5f5f5;
  border-radius: 18px 18px 0 0;
  padding: 20px;
  animation: slideUp .3s ease;
}

.calendar-popup-box h4 {
  margin: 0 0 12px;
  font-size: 18px;
}

.calendar-popup-box ul {
  padding-left: 18px;
  margin: 0 0 16px;
}

.calendar-popup-box li {
  margin-bottom: 6px;
}

.calendar-popup-box button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #003ffb;
  font-weight: 700;
  cursor: pointer;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}




.calendar-grid .day {
  background: #fff;
  color: #111;
}


.calendar-grid .day:hover {
  background: #eee;
}

.calendar-grid .day.event {
  color: #c1121f;
  font-weight: 700;
  position: relative;
}

.calendar-grid .day.event::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #c1121f;
  border-radius: 50%;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.calendar-grid {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  min-height: 220px;
}

.calendar-grid .day {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  background: #fff;
  color: #111;
}

/* ===============================
   KALENDER
   =============================== */

.calendar-day {
  padding: 10px 0;
  text-align: center;
  border-radius: 10px;
  cursor: default;
  position: relative;
  font-weight: 500;
  transition: 0.25s ease;
}

/* tanggal yang ada event */
.calendar-day.has-event {
  background: linear-gradient(135deg, #ffb703, #fb8500);
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

/* titik kecil indikator event */
.calendar-day.has-event::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #111;
  border-radius: 50%;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
}

/* hover */
.calendar-day.has-event:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(251,133,0,.45);
}

/* hari ini */
.calendar-day.today {
  outline: 2px solid #219ebc;
  outline-offset: 2px;
}


/* ===============================
   FOOTER MOBILE
   =============================== */
@media (max-width: 640px) {

  .site-footer {
    padding: 32px 18px 24px;
    text-align: center;
  }

  /* teks atas */
  .site-footer > span {
    display: block;
    font-size: 12px;
    opacity: 0.75;
    margin-bottom: 6px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 28px;
  }

  /* kolom kiri & kanan */
  .footer-col {
    text-align: center;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-links,
  .footer-contact {
    padding: 0;
    margin: 0;
  }

  .footer-links li,
  .footer-contact li {
    font-size: 13px;
    margin-bottom: 8px;
    justify-content: center;
  }

  /* CENTER (LOGO) */
  .footer-center {
    order: -1; /* logo naik ke atas */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-logo {
    width: 64px;
    height: auto;
  }

  .footer-tagline {
    font-size: 13px;
    opacity: 0.85;
  }

  /* SOSIAL ICON */
  .footer-socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
  }

  .footer-socials a {
    font-size: 18px;
  }

  /* FOOTER BOTTOM */
  .footer-bottom {
    margin-top: 32px;
    font-size: 11px;
    opacity: 0.6;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none !important;
  }

  .nav-links.active {
    display: flex !important;
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .program-card {
    height: auto;
    min-height: 200px;
  }

  .program-overlay {
    padding: 20px;
  }

  .program-title {
    font-size: 18px;
    line-height: 1.3;
  }

  .program-label {
    font-size: 10px;
  }
}

/* ===============================
   MOBILE: PINBALL ONLY
   =============================== */
@media (max-width: 768px) {

  /* sembunyikan computer card */
  .computer-card {
    display: none !important;
  }

  /* matikan efek 3D biar ga berat di HP */
  .interactive-3d {
    transform: none !important;
  }

  /* rapikan stack */
  .interactive-stack {
    display: block;
  }

  /* pinball full width */
  .pinball-card {
    width: 100%;
  }
}


/* ===============================
   OCTOBER MODE – GLOBAL THEME
   =============================== */

body.october-mode {
  --bg: #060913;
  --bg-soft: #0b1020;

  --accent: #facc15;          /* emas ulang tahun */
  --accent-2: #38bdf8;        /* biru teknik */
  --accent-soft: rgba(250,204,21,.28);

  --text-main: #f9fafb;
  --text-soft: #e5e7eb;

  background:
    radial-gradient(circle at 10% 0, rgba(250,204,21,.12), transparent 45%),
    radial-gradient(circle at 80% 0, rgba(56,189,248,.14), transparent 55%),
    linear-gradient(180deg, #020617, #020617);
}

body.october-mode .nav {
  background:
    linear-gradient(
      to bottom,
      rgba(250,204,21,.12),
      rgba(15,23,42,.6),
      transparent
    );
  border-bottom: 1px solid rgba(250,204,21,.25);
}

body.october-mode .hero::before {
  background:
    radial-gradient(circle at 10% 0, rgba(250,204,21,.22), transparent 45%),
    radial-gradient(circle at 80% 0, rgba(56,189,248,.22), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(250,204,21,.18), transparent 60%);
}

body.october-mode .hero-title-gradient {
  background: linear-gradient(
    120deg,
    #facc15,
    #38bdf8,
    #fde68a
  );
  -webkit-background-clip: text;
  background-clip: text;
}

body.october-mode .card,
body.october-mode .program-card,
body.october-mode .pinball-card,
body.october-mode .computer-card,
body.october-mode .calendar-art-board {
  box-shadow:
    inset 0 0 0 1px rgba(250,204,21,.18),
    0 0 40px rgba(250,204,21,.15),
    0 30px 100px rgba(0,0,0,.7);
}

body.october-mode .btn-primary {
  background:
    linear-gradient(135deg, #facc15, #fde68a);
  color: #020617;
}

body.october-mode .hero-badge,
body.october-mode .label-pill.active {
  background:
    linear-gradient(90deg, #facc15, #fde68a);
  color: #020617;
  font-weight: 700;
}

body.october-mode .site-footer {
  background:
    radial-gradient(circle at top, rgba(250,204,21,.12), transparent 55%),
    linear-gradient(180deg, #020617, #020617);
}

body.october-mode::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background-image:
    radial-gradient(circle, rgba(250,204,21,.35) 2px, transparent 2px),
    radial-gradient(circle, rgba(56,189,248,.3) 2px, transparent 2px);

  background-size: 140px 140px;
  opacity: .12;
}









.label-pill.active {
  background: linear-gradient(90deg, #00ffd5, #00bfff);
  color: #022;
  font-weight: 700;
  transform: scale(1.15);
}


/* =========================
   ABOUT HERO (VISION–MISSION)
   ========================= */

.about-hero {
  margin-top: 120px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(0,1fr);
  gap: 64px;
  align-items: center;
}

/* LEFT */
.about-eyebrow {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fde047;
  font-weight: 600;
}

.about-heading {
  font-size: clamp(28px,4vw,40px);
  font-weight: 800;
  margin-top: 16px;
  margin-bottom: 14px;
}

.about-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-soft);
  max-width: 520px;
}

.about-mission {
  list-style: none;
  margin-top: 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-mission li {
  position: relative;
  padding-left: 36px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

.about-mission li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(253,224,71,.15);
  color: #fde047;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* RIGHT */
.about-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.55);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* badge tahun */
.about-badge {
  position: absolute;
  top: 24px;
  right: 24px;

  width: 120px;
  height: 120px;
  border-radius: 999px;

  background: #ffffff;
  color: #111827;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.about-badge strong {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #fde047;
}

.about-badge span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-media {
    order: -1;
  }

  .about-badge {
    width: 96px;
    height: 96px;
  }

  .about-badge strong {
    font-size: 28px;
  }
}

.about-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

/* ===============================
   CONTACT CTA SECTION
   =============================== */
.contact-cta {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("../../assets/img/bg/bg-hero.webp"); /* GANTI FOTO */
  background-size: cover;
  background-position: center;
}

/* overlay terang */
.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(30, 41, 59, 0.55),
    rgba(30, 41, 59, 0.55)
  );
}

/* konten */
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
  color: #ffffff;
}

/* icon */
.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 14px;
  background: #fde68a;
  color: #0f172a;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
}

/* text */
.contact-content h2 {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 24px;
}

/* button */
.contact-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  background: #334155;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: all 0.25s ease;
}

.contact-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 768px) {
  .contact-content h2 {
    font-size: 24px;
  }

  .contact-cta {
    min-height: 320px;
  }
}





/* =========================
   HERO IMAGE POPUP
========================= */
.hero-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.hero-popup.active {
  display: block;
}

.hero-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
}

.hero-popup-content {
  position: relative;
  z-index: 1;

  max-width: 900px;
  width: 92%;

  margin: 6vh auto;
  border-radius: 16px;
  overflow: hidden;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  animation: popupFade 0.6s ease;
}

.hero-popup-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* tombol close */
.hero-popup-close {
  position: absolute;
  top: 12px;
  right: 14px;

  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;

  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 2;
}

.hero-popup-close:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* animasi */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* =========================
   MOBILE TUNING
========================= */
@media (max-width: 768px) {
  .hero-popup-content {
    margin: 10vh auto;
    border-radius: 12px;
  }
}


/* =========================
   MITRA STRIP STYLE
========================= */

.mitra-strip {
  width: 100%;
  display: flex;
  min-height: 140px;
  margin-top: 80px;
}

/* BAGIAN KIRI (LABEL) */
.mitra-label {
  width: 200px;
  background: #3a7184; /* warna seperti di gambar */
  display: flex;
  align-items: center;
  justify-content: center;
}

.mitra-label h3 {
  color: white;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: .1em;
  text-align: center;
}

/* BAGIAN KANAN (LOGO) */
.mitra-logos {
  flex: 1;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px 30px;

  overflow-x: auto; /* kalau logo banyak */
}

/* ITEM LOGO */
.mitra-logo img {
  max-height: 90px;
  max-width: 140px;
  object-fit: contain;

  filter: grayscale(100%);
  transition: .3s ease;
}

.mitra-logo img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mitra-strip {
    flex-direction: column;
  }

  .mitra-label {
    width: 100%;
    padding: 16px 0;
  }

  .mitra-logos {
    gap: 20px;
    padding: 16px;
  }

  .mitra-logo img {
    max-height: 60px;
  }
}
