/* ================= HERO MYTH STARS ================= */
#mythStars {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* Aura dewa Yunani */
.hero-nebula {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(
      circle at 30% 40%,
      rgba(139, 92, 246, 0.35),
      transparent 55%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(30, 207, 251, 0.25),
      transparent 60%
    );
  filter: blur(40px);
  animation: nebulaMove 18s ease-in-out infinite alternate;
}

@keyframes nebulaMove {
  from {
    transform: translateY(-20px) scale(1);
  }
  to {
    transform: translateY(20px) scale(1.1);
  }
}

/* ===== HERO TO ABOUT TRANSITION ===== */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(5, 1, 15, 0) 0%,
    rgba(11, 4, 23, 0.7) 45%,
    #0b0417 100%
  );
  z-index: 6;
}

.about-galaxy::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: 140px;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 92, 246, 0.35),
    rgba(11, 4, 23, 0.9),
    transparent 70%
  );
  pointer-events: none;
}

/*  */
:root {
  --accent: #8b5cf6;
  --accent2: #c084fc;
  --deep: #0b0417;
  --navH: 72px; /* fallback; diupdate otomatis via JS */
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--deep);
  color: #eee;
}
/* Mencegah halaman HP bisa scroll kanan-kiri */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* =============== NAVBAR =============== */
.navbar {
  z-index: 1030;
}

.navbar-glass {
  background: rgba(20, 0, 40, 0.55);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
}
.nav-link {
  color: #eee !important;
  font-weight: 500;
}
.nav-link:hover {
  color: #c7a8ff !important;
}
.btn-purple {
  background: #7a00ff;
  border: none;
  color: #fff;
}
.btn-purple:hover {
  background: #9b3dff;
}

/* NAVBAR TRANSPARANT */
.navbar.hide-glass {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
}

/* =============== HERO: Full desktop, pas di bawah navbar =============== */
/*  HERO WRAPPER  */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #05010f;
  color: #fff;
}

#cursorStars {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

/*  GRADIENT MAGIC BACKGROUND  */
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 50% 30%,
      rgba(80, 0, 120, 0.45),
      transparent 60%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 180, 255, 0.35), transparent 70%),
    #05010f;
  z-index: 1;
  filter: blur(0.5px);
}

/* ========== STARFIELD ========== */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(1px 1px at 20% 40%, #fff, transparent),
    radial-gradient(1px 1px at 50% 70%, #fff, transparent),
    radial-gradient(1px 1px at 80% 20%, #fff, transparent),
    radial-gradient(1px 1px at 65% 35%, #fff, transparent),
    radial-gradient(1px 1px at 30% 85%, #fff, transparent);
  opacity: 0.55;
  animation: twinkle 6s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 0.7;
  }
}

@keyframes constellationGlow {
  from {
    opacity: 0.22;
  }
  to {
    opacity: 0.45;
  }
}

/* ========== HERO TEXT ========== */
.hero-copy {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 1.5rem;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

.hero-sub {
  max-width: 780px;
  margin: auto;
  opacity: 0.92;
  line-height: 1.6;
}

/* Ornament */
.ornament .line {
  width: 72px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(200, 180, 255, 1),
    transparent
  );
}
.ornament .icon {
  font-family: "Cinzel", serif;
  color: #fff;
  opacity: 0.9;
}

/* CTA Button */
.btn-cta {
  background: linear-gradient(90deg, #7b55ff, #1ecffb);
  border: none;
  color: white;
  padding: 0.7rem 1.7rem;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(80, 60, 255, 0.35);
  transition: 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

/* ==================== ABOUT SECTION =================== */
/* ===== ABOUT GALAXY ===== */
.about-galaxy {
  background: radial-gradient(
      1200px 650px at 15% -10%,
      rgba(139, 92, 246, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at 110% 20%,
      rgba(192, 132, 252, 0.12),
      transparent 60%
    );
  position: relative;
  overflow: hidden;
}

/* Bintang-bintang lembut pada section */
.about-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image: radial-gradient(
      1px 1px at 10% 30%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1px 1px at 65% 70%,
      rgba(255, 255, 255, 0.8),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.2px 1.2px at 30% 80%,
      rgba(255, 255, 255, 0.85),
      rgba(255, 255, 255, 0)
    ),
    radial-gradient(
      1.2px 1.2px at 85% 25%,
      rgba(255, 255, 255, 0.9),
      rgba(255, 255, 255, 0)
    );
  animation: about-twinkle 7s ease-in-out infinite alternate;
  z-index: 0;
}
@keyframes about-twinkle {
  from {
    opacity: 0.28;
  }
  to {
    opacity: 0.55;
  }
}

/* Orb logo dengan cincin gradient dan glass */
.about-orb {
  position: relative;
  width: min(320px, 82vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
      60% 60% at 30% 30%,
      rgba(139, 92, 246, 0.18),
      rgba(139, 92, 246, 0) 60%
    ),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 10px 40px rgba(139, 92, 246, 0.22);
  z-index: 1;
}
.about-orb::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--accent),
    var(--accent2),
    var(--accent)
  );
  filter: blur(10px);
  opacity: 0.65;
  z-index: 0;
}
.about-logo-img {
  position: relative;
  z-index: 1;
  width: 72%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(139, 92, 246, 0.35));
}
.about-glow {
  position: absolute;
  z-index: 0;
  width: 74%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.45),
    rgba(139, 92, 246, 0) 60%
  );
}

/* Tipografi & elemen konten */
.about-kicker {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.85;
  color: #ede9fe;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}
.about-title {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  margin: 0.6rem 0 1rem;
  text-shadow: 0 3px 16px rgba(255, 255, 255, 0.12);
}
.about-text {
  opacity: 0.95;
}

.about-bullet {
  display: inline-grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 0.9rem;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.35);
}

.about-chip {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #ede9fe;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
}

/* Desktop: ukuran orb & layout lebih lega */
@media (min-width: 992px) {
  .about-orb {
    width: 360px;
  }
}
/* =============== END ABOUT SECTION ===================== */

/* ==================== COMPETITION SECTION ============ */
.competition-section {
  background: radial-gradient(
      1200px 650px at 85% -10%,
      rgba(139, 92, 246, 0.2),
      transparent 55%
    ),
    radial-gradient(
      900px 500px at -10% 80%,
      rgba(192, 132, 252, 0.13),
      transparent 60%
    );
  position: relative;
  overflow: hidden;
}

.comp-kicker {
  display: inline-block;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.9;
  color: #ede9fe;
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.35);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

.comp-title {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  margin: 0.6rem 0 0.7rem;
  text-shadow: 0 3px 16px rgba(255, 255, 255, 0.15);
}

.comp-text {
  max-width: 620px;
  opacity: 0.95;
}

/* Shell slider */
.competition-shell {
  position: relative;
  margin-top: 1.75rem;
}

.comp-viewport {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.comp-viewport::-webkit-scrollbar {
  display: none;
}

.comp-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  padding-block: 0.5rem 0.75rem;
  padding-inline: 0.25rem;
}

.comp-card {
  flex: 0 0 min(310px, 80vw);
}

.comp-card-inner {
  position: relative;
  height: 100%;
  border-radius: 1.5rem;
  padding: 1.4rem 1.25rem 1.35rem;
  background: radial-gradient(
      140% 160% at 0% 0%,
      rgba(139, 92, 246, 0.2),
      rgba(12, 4, 32, 0.85)
    ),
    rgba(12, 4, 32, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.45);
  box-shadow: 0 18px 40px rgba(15, 0, 40, 0.7);
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  row-gap: 0.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.comp-card-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at 10% -20%,
    rgba(244, 244, 255, 0.16),
    transparent 55%
  );
  opacity: 0.7;
  pointer-events: none;
}

.comp-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(20, 0, 60, 0.9);
  border-color: rgba(224, 199, 255, 0.9);
}

/* Logo */
.comp-logo-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: radial-gradient(
      circle at 0% 0%,
      rgba(224, 199, 255, 0.4),
      transparent 55%
    ),
    rgba(17, 6, 42, 0.98);
  box-shadow: 0 12px 25px rgba(139, 92, 246, 0.45);
  margin-bottom: 0.4rem;
}

.comp-logo {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

/* Text in card */
.comp-name {
  font-family: "Cinzel", serif;
  font-size: 1.05rem;
  margin: 0;
}

.comp-desc {
  font-size: 0.9rem;
  opacity: 0.95;
  margin-bottom: 0.25rem;
}

.comp-tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 132, 252, 0.7);
  background: rgba(25, 6, 58, 0.9);
  color: #ede9fe;
}

/* Button guidebook */
.btn-comp-guide {
  margin-top: 0.5rem;
  align-self: flex-end;
  justify-self: flex-start;
  padding-inline: 1.1rem;
  padding-block: 0.4rem 0.45rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border: none;
  color: #fff;
  box-shadow: 0 10px 26px rgba(139, 92, 246, 0.45);
  transition: transform 0.15s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn-comp-guide:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.65);
}

.comp-gradient-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.comp-gradient-left {
  left: 0;
  background: linear-gradient(90deg, rgba(11, 4, 23, 1), rgba(11, 4, 23, 0));
}

.comp-gradient-right {
  right: 0;
  background: linear-gradient(-90deg, rgba(11, 4, 23, 1), rgba(11, 4, 23, 0));
}

/* Cursor saat drag */
.comp-viewport.is-dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}

/* Responsiveness */
@media (max-width: 767.98px) {
  .comp-arrow {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.1rem;
  }
}
/* SIMPLE CARD */

.simple-card {
  background: #0d0b1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: 0.2s ease;
  cursor: grab;
}

.simple-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateY(-4px);
}

.comp-icon {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.comp-title-card {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
}

.comp-desc-card {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
}

.comp-guide-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: white;
  opacity: 0.85;
  text-decoration: none;
  transition: 0.2s ease;
}

.comp-guide-link:hover {
  opacity: 1;
  color: var(--accent2);
}

.comp-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  scroll-behavior: auto !important; /* FIX auto scroll */
}

.comp-viewport::-webkit-scrollbar {
  display: none;
}

.comp-viewport.is-dragging {
  cursor: grabbing;
}

.comp-track {
  display: flex;
  gap: 24px;
  animation: none !important;
  transition: none !important;
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
  background: radial-gradient(
      900px 600px at 10% 10%,
      rgba(139, 92, 246, 0.16),
      transparent 60%
    ),
    radial-gradient(
      800px 500px at 90% 80%,
      rgba(192, 132, 252, 0.12),
      transparent 60%
    );
  color: #eee;
}

/* ----- TEXT ----- */
.gallery-kicker {
  display: inline-block;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  opacity: 0.85;
  color: #ffc49e;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 198, 150, 0.15);
  border: 1px solid rgba(255, 198, 150, 0.35);
}

.gallery-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 700;
  margin-top: 0.8rem;
}

.gallery-desc {
  opacity: 0.92;
  max-width: 550px;
  line-height: 1.7;
  margin-top: 0.6rem;
}

/* ----- MOCKUP WRAPPER ----- */
.gallery-mockup {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.8rem;
  border-radius: 22px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

/* ----- WINDOW ----- */
.gallery-window {
  position: relative;
  padding-top: 2.8rem !important; /* ruang untuk 3 bulatan tanpa menutup foto */
}

/* Wrapper untuk 3 bulatan */
.gallery-window .window-dots {
  position: absolute;
  top: 12px;
  left: 16px;
  display: flex;
  gap: 10px;
  z-index: 5; /* di depan background, tapi di belakang foto */
}

/* Style masing masing bulatan */
.window-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: block;
}

.window-dot.red {
  background: #ff5f57;
}
.window-dot.yellow {
  background: #ffbd2e;
}
.window-dot.green {
  background: #28c840;
}

/* ----- GRID IMAGES ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.g-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.g-img:hover {
  transform: scale(1.04);
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.45);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .gallery-section .col-lg-6:last-child {
    margin-top: -150px; /* kamu bisa sesuaikan: -20px, -40px, dll */
  }
}

/* ======== END GALARY SECTION ======== */

/* ==================== SPONSORSHIP SECTION ==================== */

.sponsor-section {
  position: relative;
  padding-block: 5rem;
  overflow: hidden;
}

/* Background image di belakang */
.sponsor-bg {
  position: absolute;
  inset: 0;
  background: url("assets/image/sponsor-bg.jpg") center/cover no-repeat;
  opacity: 0.35;
  z-index: 0;
}

/* Glass container */
.sponsor-glass {
  position: relative;
  z-index: 1;
  padding: 2.5rem;
  border-radius: 28px;

  background: rgba(18, 8, 38, 0.42);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.sponsor-title {
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.sponsor-desc {
  color: #d8d5ff;
  opacity: 0.9;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.sponsor-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Baris atas & bawah */
.sponsor-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

/* Logo styling */
.s-logo {
  height: 60px;
  width: auto;
  filter: brightness(1) contrast(1.05);
  transition: 0.25s ease;
  opacity: 0.9;
}

.s-logo:hover {
  transform: scale(1.08);
  opacity: 1;
}

/* Responsiveness */
@media (max-width: 768px) {
  .s-logo {
    height: 48px;
  }
  .sponsor-row {
    gap: 1.4rem;
  }
}

@media (max-width: 480px) {
  .s-logo {
    height: 42px;
  }
}

/* ==================== END SPONSORSHIP SECTION ==================== */

/* =============================== TECH SECTION================== */
.media-title {
  font-family: "Cinzel", serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  margin: 0.6rem 0 0.7rem;
  text-shadow: 0 3px 16px rgba(255, 255, 255, 0.15);
  text-align: center;
}
.tech-section {
  padding: 100px 0;
}

.tech-title {
  text-align: center;
  color: var(--neon);
  font-size: 32px;
  margin-bottom: 40px;
}
.wrapper {
  width: 95%;
  height: 100px;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* STYLE PER ITEM */
.item {
  width: 60px;
  height: 60px;
  object-fit: contain;
  position: absolute;
  top: 15px;
  border-radius: 50%;
  will-change: transform;
  animation: scrollLeft 12s linear infinite;
  transform: translateZ(0);
  backface-visibility: hidden;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}

.reverse .item {
  animation-name: scrollRight;
}

@keyframes scrollLeft {
  from {
    transform: translateX(100vw);
  }
  to {
    transform: translateX(-120px);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-120px);
  }
  to {
    transform: translateX(100vw);
  }
}

/* GENERATE ANIMATION DELAY OTOMATIS */
@media (max-width: 768px) {
  .wrapper {
    height: 80px;
  }
  .item {
    width: 50px;
    height: 50px;
    top: 15px;
  }
}

@media (max-width: 480px) {
  .item {
    width: 40px;
    height: 40px;
  }
  .item:nth-child(n + 9) {
    display: none;
  }
}

/* ========================= END TECH SECTION =================== */

/* ========================= FAQ CODE ============================== */
/* ========== FAQ GALAXY ========== */
.faq-galaxy {
  padding: 80px 0;
  position: relative;
  background: radial-gradient(
      700px 300px at 15% 10%,
      rgba(139, 92, 246, 0.17),
      transparent
    ),
    radial-gradient(
      600px 300px at 90% 80%,
      rgba(192, 132, 252, 0.14),
      transparent
    );
  color: #fff;
}

.faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.faq-title {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  margin-top: 10px;
}
.faq-title span {
  color: #c084fc;
}

.faq-list {
  max-width: 850px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-icon {
  font-weight: bold;
  font-size: 1.3rem;
  transition: 0.15s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.25s ease, padding 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 15px 20px 20px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-answer a {
  color: #c084fc;
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.6rem;
  }
}

/* ========================= END FAQ CODE ============================== */

/* ==================== FOOTER SECTION ======================= */
.main-footer {
  position: relative;
  background: radial-gradient(
      900px 600px at 15% -20%,
      rgba(139, 92, 246, 0.15),
      transparent 60%
    ),
    #0b0417;
  color: #e7e7ff;
  padding-top: 4rem;
  overflow: hidden;
}

/* Blur shape */
.main-footer__shape-1 {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.55),
    rgba(139, 92, 246, 0.05)
  );
  filter: blur(100px);
  opacity: 0.35;
  bottom: -50px;
  right: -80px;
  z-index: 0;
}

/* Top Section */
.main-footer__top {
  position: relative;
  z-index: 2;
}

.footer-widget__column {
  margin-bottom: 2rem;
}

.footer-widget__logo img {
  width: 140px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-widget__about-text {
  opacity: 0.9;
  line-height: 1.7;
  max-width: 240px;
}

/* Titles */
.footer-widget__title {
  font-size: 1.2rem;
  font-family: "Cinzel", serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

/* Links */
.footer-widget__company-list li,
.footer-widget__resources-list li {
  margin-bottom: 0.55rem;
  list-style-type: none;
}

.footer-widget__company-list a,
.footer-widget__resources-list a {
  color: #cfc8ff;
  opacity: 0.85;
  font-size: 0.95rem;
  transition: 0.2s ease;
  text-decoration: none;
}

.footer-widget__company-list a:hover,
.footer-widget__resources-list a:hover {
  opacity: 1;
  color: #c084fc;
  padding-left: 4px;
}

/* Newsletter column (empty) */
.footer-widget__newsletter {
  min-height: 100px;
}

/* Bottom Section */
.main-footer__bottom {
  margin-top: 3.5rem;
  padding: 1.2rem 0;
  backdrop-filter: blur(10px);
}

.main-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem;
  color: #cec9ff;
  font-size: 0.92rem;
}

.main-footer__bottom-inner a {
  color: #ffd29e;
  font-weight: 600;
  margin-left: 2px;
  transition: 0.2s ease;
}

.main-footer__bottom-inner a:hover {
  color: #ffb86b;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .footer-widget__column {
    text-align: center;
  }
  .footer-widget__about-text {
    margin-inline: auto;
  }
  .footer-widget__logo img {
    margin-inline: auto;
  }
}

/* ===== SOCIAL ICONS ===== */
.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.footer-socials a {
  text-decoration: none;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.2rem;
  transition: 0.25s ease;
  backdrop-filter: blur(6px);
}

/* Hover effect */
.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(192, 132, 252, 0.55);
  border-color: #c084fc;
  color: #c084fc;
}

/* Specific color glow (optional) */
.social-btn.ig:hover {
  color: #ff4dc9;
}

.social-btn.tiktok:hover {
  color: #00f2ea;
}

.social-btn.yt:hover {
  color: #ff4d4d;
}

/* Mobile align center */
@media (max-width: 767px) {
  .footer-socials {
    justify-content: center;
    margin-bottom: 20px;
  }
}

/* ==================== END FOOTER SECTION =================== */

/* ================== HERO SECTION FOR MITOLOGI BACKROUND ============= */

/* ========== CONSTELLATION LINES + STARS ========== */

/* =============== END HERO SECTION FOR MITOLOGI BACKROUND ============ */
