/* ============================================
   CSS Variables - Color System
   ============================================ */
:root {
  /* Background Colors */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #111111;
  --color-bg-tertiary: #1c1c1c;

  /* Accent Colors */
  --color-accent-blue: #d4af37;
  --color-accent-cyan: #f5d76e;
  --color-accent-hover: #e6c65c;

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #d6d6d6;
  --color-text-muted: #9f9f9f;

  /* Border & Glow */
  --color-border: rgba(212, 175, 55, 0.15);
  --glow-subtle: 0 0 20px rgba(212, 175, 55, 0.12);
  --glow-hover: 0 0 30px rgba(212, 175, 55, 0.22);

  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   Reset & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

a[aria-disabled="true"] {
  pointer-events: none;
  cursor: default;
}

.about-socials a[aria-disabled="true"] {
  opacity: 0.34;
}

/* ============================================
   Container
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-accent-blue);
  color: var(--color-text-primary);
}

.btn-primary:hover:not(:disabled) {
  background-color: var(--color-accent-hover);
  box-shadow: var(--glow-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-text-primary);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-accent-cyan);
  color: var(--color-accent-cyan);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   Navigation
   ============================================ */
/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: transparent;
  backdrop-filter: blur(0px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition:
    background-color 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background-color: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav.scrolled .nav-content {
  padding: 0.8rem 0;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent-blue);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-logo img {
  width: 150px;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.nav-logo:hover img {
  opacity: 0.86;
  transform: translateY(-1px);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: clamp(1rem, 2.2vw, 2rem);
  align-items: center;
}

.nav-menu a,
.nav-link-disabled {
  position: relative;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: 0.88rem;
  transition: color var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-accent-cyan);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--color-accent-blue);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-menu a.active {
  color: #f7e69a;
}

.nav-link-disabled {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: default;
  opacity: 0.46;
}

.nav-link-disabled small {
  padding: 0.12rem 0.35rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  color: var(--color-accent-blue);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: var(--transition-fast);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-background {
  background: linear-gradient(
    135deg,
    var(--color-bg-primary) 0%,
    var(--color-bg-tertiary) 50%,
    var(--color-bg-primary) 100%
  );
}

@keyframes gradientShift {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(2%) translateY(2%);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: var(--space-sm);
  background: linear-gradient(
    135deg,
    var(--color-text-primary),
    var(--color-accent-cyan)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   Section Styles
   ============================================ */
section {
  padding: var(--space-xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-accent-blue),
    var(--color-accent-cyan)
  );
  border-radius: 2px;
}

/* ============================================
   Section Title Icon with Pulsating Glow
   ============================================ */
/* Define the animation (Keyframes) */
@keyframes iconPulsateGlow {
  0% {
    /* Cahaya minimal di awal */
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
  }
  50% {
    /* Cahaya maksimal (Puncak denyutan) */
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 1)); /* Lebih terang */
  }
  100% {
    /* Kembali ke cahaya minimal */
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
  }
}

.title-icon {
  color: var(--color-accent-blue); /* Warna emas */
  margin-right: 0.6rem; /* Jarak sedikit disesuaikan */
  font-size: 0.9em; /* Ukuran proporsional */
  vertical-align: middle;

  /* Terapkan animasi denyutan secara terus-menerus (infinite) */
  animation: iconPulsateGlow 2.5s infinite ease-in-out;
}
/* ============================================
   About Section
   ============================================ */
.about {
  background-color: var(--color-bg-secondary);
}

/* ============================================
   About Section - Premium Enhancement
   ============================================ */
/* Efek Glassmorphism (Kartu Kaca) */
.about-content.glass-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem; /* Memberikan ruang napas yang lega di dalam kotak */
  background: rgba(15, 15, 15, 0.4); /* Background hitam transparan */
  backdrop-filter: blur(12px); /* Efek blur/kaca */
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.15); /* Garis bingkai emas sangat tipis */
  border-radius: 20px; /* Ujung kotak membulat */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); /* Bayangan lembut agar mengambang */
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.about-content p:last-of-type {
  margin-bottom: 0; /* Margin bawah di-handle oleh divider */
}

/* Teks Highlight Gradasi Emas */
.text-gold {
  background: linear-gradient(
    to right,
    var(--color-accent-cyan),
    var(--color-accent-blue)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Garis Pemisah Estetik */
.about-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent-blue),
    transparent
  );
  margin: 3rem auto; /* Jarak antara teks terakhir dan ikon sosmed */
  border-radius: 2px;
  opacity: 0.7;
}

/* Social Media Icons */
.about-socials {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--color-text-primary);
  font-size: 1.2rem;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--color-accent-blue);
  color: var(--color-bg-primary);
  border-color: var(--color-accent-blue);
  transform: translateY(-5px);
  box-shadow: var(--glow-hover);
}

/* ============================================
   Reveal Animations (Persiapan Animasi Scroll)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px); /* Posisi awal sedikit ke bawah */
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0); /* Kembali ke posisi semula */
}

/* ============================================
   Generations Section
   ============================================ */

/* ==========================================================================
   Generations Section - FIXED FULL CARD WRAPPER (100% RESPONSIVE)
   ========================================================================== */

.generation-block {
  margin-bottom: var(--space-xl);
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(
      circle at top center,
      rgba(212, 175, 55, 0.08),
      transparent 42%
    ),
    linear-gradient(145deg, rgba(24, 24, 24, 0.88), rgba(10, 10, 10, 0.92));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.generation-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent-cyan),
    transparent
  );
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
}

/* Header di dalam boks (Hanya mengatur posisi baris judul + label) */
.generation-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  width: 100%;
}

.generation-title {
  color: var(--color-text-primary);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin: 0;
}

.generation-label {
  padding: 0.45rem 1rem;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--color-accent-cyan);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Deskripsi sekarang ikut terkurung dengan aman dan rapi di dalam kotak */
.generation-description {
  max-width: 680px;
  font-size: 0.93rem;
  color: var(--color-text-secondary);
  line-height: 1.75;
  opacity: 0.78;
  text-align: center;
  margin: 0; /* Menghilangkan margin luar agar tidak menendang boks */
}

/* ==========================================================================
   TALENTS GRID - KELUAR DARI KOTAK, UKURAN BESAR DAN PAS 3 KOLOM
   ========================================================================== */
.talents-grid {
  display: grid;
  /* KUNCI MUTLAK PC: Membagi layar tepat menjadi 3 kolom secara konstan */
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
  margin-top: 2.25rem;
  width: 100%;

  /* Mengunci lebar total agar kartu berdekatan, padat, dan tidak melar berjauhan */
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

/* KHUSUS GEN 0: Jika kartu di dalam grid cuma ada 1, kita paksa dia duduk di tengah monitor */
.talents-grid:has(.talent-card:only-child) {
  grid-template-columns: 1fr;
  max-width: 320px;
}

.talent-card {
  background: linear-gradient(
    180deg,
    rgba(30, 30, 30, 0.96),
    rgba(13, 13, 13, 0.98)
  );
  border: 1px solid rgba(212, 175, 55, 0.17);
  border-radius: 18px;
  overflow: hidden;
  transition: all var(--transition-normal);
  cursor: pointer;

  /* KUNCI 1: Mengaktifkan flex vertikal paksa agar semua sebaris */
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;

  width: 100%;
  max-width: 292px;
  margin: 0 auto;
  position: relative;
}

.talent-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.55);
  box-shadow:
    0 26px 55px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(212, 175, 55, 0.09);
}

.talent-avatar {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
  flex-shrink: 0;
  position: relative;
}

.talent-card {
  --portrait-scale: 1.08;
  --portrait-hover-scale: 1.12;
  --portrait-x: 50%;
  --portrait-y: 0%;
}

.talent-card[data-talent="angelina"] {
  --portrait-scale: 1.04;
  --portrait-hover-scale: 1.08;
}

.talent-card[data-talent="jaki"] {
  --portrait-scale: 1.22;
  --portrait-hover-scale: 1.26;
}

.talent-card[data-talent="nela"] {
  --portrait-scale: 1.12;
  --portrait-hover-scale: 1.16;
  --portrait-y: 5%;
}

.talent-card[data-talent="fein"] {
  --portrait-scale: 1.14;
  --portrait-hover-scale: 1.18;
  --portrait-y: 3%;
}

.talent-card[data-talent="luii"],
.talent-card[data-talent="noazumi"] {
  --portrait-scale: 1.18;
  --portrait-hover-scale: 1.22;
}

.talent-card[data-talent="zoe"] {
  --portrait-scale: 1.14;
  --portrait-hover-scale: 1.18;
}

.talent-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--portrait-x) var(--portrait-y);
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: scale(var(--portrait-scale)) translateZ(0);
  transform-origin: var(--portrait-x) top;
  transition:
    transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 0.4s ease;
}

.talent-card:hover .talent-avatar img {
  transform: scale(var(--portrait-hover-scale)) translateZ(0);
  filter: saturate(1.05) contrast(1.03);
}

.talent-info {
  padding: 1.3rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  min-height: 168px;
  text-align: center;
}

.talent-name {
  color: var(--color-text-primary);
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", serif;
  font-size: 1.38rem;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.talent-role {
  color: var(--color-accent-cyan);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.2px;
  min-height: 2.2em;
  margin: 0 0 0.75rem;
}

.talent-view-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: auto;
  padding-top: 0.85rem;
  background: transparent;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  color: var(--color-text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  box-shadow: none;
  cursor: inherit;
  transition: color var(--transition-fast);
}

.talent-view-profile i {
  color: var(--color-accent-blue);
  font-size: 0.68rem;
  transition: transform var(--transition-fast);
}

.talent-card:hover .talent-view-profile {
  color: var(--color-text-primary);
  background: transparent;
  box-shadow: none;
  transform: none;
}

.talent-card:hover .talent-view-profile i {
  transform: translateX(3px);
}

.talent-card:focus-visible {
  outline: 2px solid var(--color-accent-blue);
  outline-offset: 4px;
}

.talent-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 0 45px rgba(212, 175, 55, 0.045);
}

.talent-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    rgba(255, 255, 255, 0.28),
    var(--accent-color),
    transparent
  );
  background-size: 200% 100%;
  opacity: 0;
  z-index: 2;
}

.talent-card:hover .talent-avatar::before {
  opacity: 0.22;
  animation: borderRun 1.5s linear;
}

@keyframes borderRun {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* ==========================================================================
   MEDIA QUERIES - RESPONSIVE MANUAL JAMINAN ANTI-EROR DI TABLET & HP
   ========================================================================== */
@media (max-width: 950px) {
  .talents-grid {
    /* Layar ukuran Tablet/iPad: otomatis mengunci jadi 2 kolom kartu */
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
  }
  .talents-grid:has(.talent-card:only-child) {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

@media (max-width: 650px) {
  .talents-grid,
  .talents-grid:has(.talent-card:only-child) {
    /* Layar HP: otomatis menumpuk 1 kolom lurus ke bawah */
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: var(--space-sm);
  }
}

/* ==========================================================
   SCROLL REVEAL ANIMATION (Animasi Muncul Saat Di-scroll)
   ========================================================== */

/* Kondisi awal kartu: transparan dan posisinya agak turun ke bawah */
.talent-card.reveal-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Kondisi saat kartu tersorot layar: muncul sempurna */
.talent-card.reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Memberikan jeda bergelombang KHUSUS di layar besar (Laptop/PC).
  Di layar HP (di bawah 768px), jeda ini tidak berlaku agar munculnya natural saat di-scroll ke bawah.
*/
@media (min-width: 768px) {
  .talent-card:nth-child(1) {
    transition-delay: 0.1s;
  }
  .talent-card:nth-child(2) {
    transition-delay: 0.25s;
  }
  .talent-card:nth-child(3) {
    transition-delay: 0.4s;
  }
  .talent-card:nth-child(4) {
    transition-delay: 0.1s;
  } /* Ulangi pola untuk baris berikutnya */
  .talent-card:nth-child(5) {
    transition-delay: 0.25s;
  }
  .talent-card:nth-child(6) {
    transition-delay: 0.4s;
  }
}

/* Tema Warna Efek Border Lari */
.card-red {
  --accent-color: rgba(255, 90, 90, 0.8);
}
.card-yellow {
  --accent-color: rgba(212, 175, 55, 0.8);
}
.card-pink {
  --accent-color: rgba(255, 120, 180, 0.8);
}
.card-orange {
  --accent-color: rgba(255, 150, 80, 0.8);
}
.card-black {
  --accent-color: rgba(180, 180, 180, 0.25);
}
.card-sakura {
  --accent-color: rgba(255, 160, 200, 0.7);
}
.card-blue {
  --accent-color: rgba(0, 210, 255, 0.8);
}
/* ============================================
   Team Section
   ============================================ */
/* ==========================================================================
   TEAM & STAFF SECTION - HIGHLY CONSISTENT SYMMETRICAL LOOK
   ========================================================================== */

.team {
  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(212, 175, 55, 0.055),
      transparent 34%
    ),
    var(--color-bg-secondary);
  width: 100%;
}

.team-category {
  margin-bottom: clamp(3.25rem, 7vw, 5.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* UPGRADE UTAMA: Judul Kategori Divisi (Contoh: EXECUTIVE) Dibuat Megah & Berikon */
.team-category-title {
  color: var(--color-accent-blue); /* Emas KANAU */
  font-size: clamp(
    1.4rem,
    2.5vw,
    1.75rem
  ); /* Ukuran diperbesar agar tegas dan megah */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px; /* Jarak antar huruf diperlebar agar kesan premiumnya kuat */
  margin-bottom: var(
    --space-xl
  ); /* Jarak ke bawah boks staf dibuat lebih lega */
  text-align: center;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md); /* Jarak antara teks dengan ikon sayap kanan-kiri */
}

/* ORNAMEN IKON KIRI: Menyisipkan garis aksen/sayap siber di sebelah kiri teks */
.team-category-title::before {
  content: "";
  height: 1px;
  flex-grow: 1;
  max-width: 60px; /* Panjang garis hiasan kiri */
  background: linear-gradient(90deg, transparent, var(--color-accent-blue));
  box-shadow: 0 0 8px var(--color-accent-blue);
}

/* ORNAMEN IKON KANAN: Menyisipkan garis aksen/sayap siber di sebelah kanan teks */
.team-category-title::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  max-width: 60px; /* Panjang garis hiasan kanan */
  background: linear-gradient(90deg, var(--color-accent-blue), transparent);
  box-shadow: 0 0 8px var(--color-accent-blue);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  gap: 1.35rem;
  justify-content: center;
  width: 100%;
}

.team-grid-creative {
  grid-template-columns: repeat(2, minmax(240px, 280px));
}

.team-member {
  text-align: center;
  padding: 1.75rem 1.35rem 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 46%),
    rgba(16, 16, 16, 0.78);
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 18px;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 320px;
}

/* Efek Hover: Mengangkat boks & pendaran emas halus */
.team-member:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-6px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(212, 175, 55, 0.05);
}

/* Ring Avatar Bulat Staff */
.team-avatar {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-md) auto;
  border: 2px solid rgba(212, 175, 55, 0.3);
  transition: all var(--transition-normal);
  background-color: #111;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

/* Hover Avatar: Ring berubah emas & foto membesar halus */
.team-member:hover .team-avatar {
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.team-member:hover .team-avatar img {
  transform: scale(1.1);
}

/* Nama Staff - Rapi & Tegas */
.team-name {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
  font-weight: 600;
  text-align: center;
}

/* UPGRADE UTAMA: Mengubah Jabatan Menjadi Kotak Tag / Pembungkus Badge yang Mewah */
.team-role {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  background-color: var(--color-bg-tertiary); /* Latar belakang kotak tag */
  border: 1px solid var(--color-border); /* Garis tipis pembungkus */
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.2rem;
  transition: all var(--transition-fast);
}

/* Saat boks di-hover, Kotak Tag Jabatan menyala siber cyan */
.team-member:hover .team-role {
  color: var(--color-accent-cyan);
  border-color: rgba(0, 210, 255, 0.3);
  background-color: rgba(0, 210, 255, 0.05);
}

.team-socials {
  /* Tetap tersembunyi selama card belum memiliki link sosial aktif. */
  display: none;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: auto;
  opacity: 1;
}

.team-socials:has(a[href^="http"]:not([aria-disabled="true"])) {
  display: flex;
}

.team-socials a[href="#"],
.team-socials a[href=""],
.team-socials a[href^="mailto:"],
.team-socials a[aria-disabled="true"] {
  display: none;
}

.team-member:hover .team-socials {
  opacity: 1;
}

.team-socials a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
}

.team-socials a:hover {
  color: var(--color-accent-blue); /* Ikon berubah emas saat disentuh */
  transform: scale(1.15);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
}

.team-socials a[aria-disabled="true"] {
  opacity: 0.38;
  pointer-events: none;
}

.team-socials a:focus-visible {
  outline: 2px solid #f7e69a;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: minmax(0, 320px);
    gap: 1rem;
  }

  .team-member {
    min-height: 0;
    padding: 1.5rem 1.25rem;
  }

  .team-category-title {
    margin-bottom: 1.75rem;
    letter-spacing: 2px;
  }
}

/* Ornamen dekorasi garis atas laser tipis khas KANAU saat hover */
.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent-blue),
    transparent
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.team-member:hover::before {
  opacity: 1;
}
/* ============================================
   Projects Section
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 1080px;
  margin: 0 auto;
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.projects-grid.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.project-card {
  --project-accent: 212, 175, 55;
  background:
    radial-gradient(
      circle at 90% 100%,
      rgba(var(--project-accent), 0.08),
      transparent 34%
    ),
    linear-gradient(145deg, #171717, #0d0d0d);
  border: 1px solid rgba(var(--project-accent), 0.19);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card--cyan {
  --project-accent: 58, 205, 213;
}
.project-card--rose {
  --project-accent: 232, 118, 156;
}
.project-card--violet {
  --project-accent: 166, 128, 226;
}

.project-card:hover {
  transform: translateY(-7px);
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.46),
    0 0 30px rgba(var(--project-accent), 0.08);
  border-color: rgba(var(--project-accent), 0.48);
}

.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-slow);
}

.project-card:hover .project-image img {
  transform: scale(1.035);
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.project-index {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 1px;
}

.project-content {
  padding: 1.4rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.project-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: var(--space-sm);
}

.project-type {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(var(--project-accent), 0.08);
  border: 1px solid rgba(var(--project-accent), 0.25);
  color: rgb(var(--project-accent));
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-year {
  color: var(--color-text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.project-title {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
}

.project-description {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
  line-height: 1.6;
}

.project-description p {
  margin: 0;
}

.project-description p + p {
  margin-top: 0.85rem;
}

.project-brand {
  padding-top: 1rem;
  border-top: 1px solid rgba(var(--project-accent), 0.14);
  margin-top: auto;
}

.project-brand span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border: 1px dashed rgba(var(--project-accent), 0.28);
  border-radius: 8px;
  color: var(--color-text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.project-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 42px;
  margin-top: 0.85rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(var(--project-accent), 0.25);
  border-radius: 10px;
  color: rgb(var(--project-accent));
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.project-link:hover {
  background: rgba(var(--project-accent), 0.08);
  border-color: rgba(var(--project-accent), 0.48);
  transform: translateY(-2px);
}

.projects-pagination {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) minmax(150px, 220px) minmax(
      130px,
      1fr
    );
  align-items: center;
  gap: 1rem;
  width: min(100%, 720px);
  margin: 2.25rem auto 0;
  padding: 0.8rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 55%),
    rgba(13, 13, 13, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.projects-pagination[hidden] {
  display: none;
}

.projects-pagination-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 11px;
  color: var(--color-text-secondary);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.projects-pagination-button:hover:not(:disabled) {
  color: #f7e69a;
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.48);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.projects-pagination-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.projects-pagination-button:focus-visible {
  outline: 2px solid #f7e69a;
  outline-offset: 3px;
}

.projects-pagination-status {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}

.projects-pagination-count {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  color: var(--color-text-muted);
  font-family: "Playfair Display", serif;
  font-size: 0.85rem;
  letter-spacing: 0.8px;
}

.projects-pagination-count strong {
  color: #f7e69a;
  font-size: 1.25rem;
}

.projects-pagination-progress {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.projects-pagination-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #9f7620, #f7e69a);
  border-radius: inherit;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.35);
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
    gap: 1rem;
  }

  .project-content {
    padding: 1.2rem;
  }

  .projects-pagination {
    grid-template-columns: 48px minmax(110px, 1fr) 48px;
    gap: 0.65rem;
    width: min(100%, 420px);
    margin-top: 1.5rem;
    padding: 0.65rem;
  }

  .projects-pagination-button {
    min-width: 44px;
    padding: 0.55rem;
  }

  .projects-pagination-button span {
    display: none;
  }
}

/* ============================================
   Audition Section
   ============================================ */
.audition {
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(212, 175, 55, 0.055),
      transparent 34%
    ),
    var(--color-bg-secondary);
}

.audition-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
  max-width: 980px;
  margin: 0 auto;
  align-items: stretch;
}

.audition-card {
  --application-accent: 212, 175, 55;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(var(--application-accent), 0.12),
      transparent 38%
    ),
    linear-gradient(145deg, #181818, #0e0e0e);
  border: 1px solid rgba(var(--application-accent), 0.2);
  border-radius: 20px;
  transition:
    transform var(--transition-normal),
    border-color var(--transition-normal),
    box-shadow var(--transition-normal);
}

.audition-card--staff {
  --application-accent: 73, 194, 205;
}

.audition-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--application-accent), 0.48);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(var(--application-accent), 0.08);
}

.audition-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(var(--application-accent), 0.35);
  border-radius: 14px;
  background: rgba(var(--application-accent), 0.09);
  color: rgb(var(--application-accent));
  font-size: 1.1rem;
}

.audition-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.15rem;
  gap: 1rem;
}

.audition-header h3 {
  color: var(--color-text-primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2.8vw, 1.8rem);
  line-height: 1.2;
}

.audition-kicker {
  display: block;
  margin-bottom: 0.4rem;
  color: rgb(var(--application-accent));
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.status-badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge.open {
  background-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.status-badge.closed {
  background-color: rgba(239, 68, 68, 0.1);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.55);
}

.audition-description {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.92rem;
}

.audition-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  margin-top: auto;
  border-top: 1px solid rgba(var(--application-accent), 0.14);
}

.audition-availability {
  max-width: 190px;
  color: var(--color-text-muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.audition-action .btn {
  width: auto;
  min-width: 158px;
  flex-shrink: 0;
}

.audition-action .btn:disabled {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.36);
}

@media (max-width: 768px) {
  .audition-grid {
    grid-template-columns: minmax(0, 560px);
    justify-content: center;
    gap: 1rem;
  }

  .audition-card {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .audition-header,
  .audition-action {
    align-items: stretch;
    flex-direction: column;
  }

  .status-badge {
    align-self: flex-start;
  }

  .audition-availability {
    max-width: none;
  }

  .audition-action .btn {
    width: 100%;
  }
}

/* ============================================
   Contact Section
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background:
    radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.12), transparent 38%),
    linear-gradient(145deg, #171717, #0d0d0d);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
}

.contact-kicker {
  color: var(--color-accent-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-heading {
  max-width: 420px;
  color: var(--color-text-primary);
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.contact-intro {
  margin-bottom: 0.65rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 13px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 11px;
  background: rgba(212, 175, 55, 0.07);
  color: var(--color-accent-blue);
}

.contact-item h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  font-size: 0.82rem;
  letter-spacing: 0.4px;
}

.contact-item a {
  color: var(--color-accent-cyan);
  transition: color var(--transition-fast);
}

.contact-item a:hover {
  color: var(--color-accent-hover);
}

.contact-social-content {
  min-width: 0;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.contact-social-links a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 9px;
  background: rgba(212, 175, 55, 0.055);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.contact-social-links a:hover {
  color: var(--color-accent-hover);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.42);
  transform: translateY(-2px);
}

.contact-social-links a:focus-visible {
  outline: 2px solid var(--color-accent-hover);
  outline-offset: 3px;
}

/* Contact Form */
.contact-form {
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent), #111;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.16);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xs);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.09);
}

.form-group textarea {
  resize: vertical;
  min-height: 145px;
}

.contact-form-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.contact-form-action .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.contact-whatsapp-button {
  background: linear-gradient(135deg, #25d366, #1ca653);
  color: #07170d;
}

.contact-whatsapp-button:hover:not(:disabled) {
  background: linear-gradient(135deg, #42df7b, #25d366);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.2);
}

.form-note,
.form-status {
  color: var(--color-text-muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.form-status {
  min-height: 1.25rem;
  margin-top: 0.75rem;
  color: var(--color-accent-blue);
}

/* ============================================
   Footer
   ============================================ */
/* =========================================
   FOOTER
   ========================================= */
.footer {
  background:
    linear-gradient(180deg, rgba(212, 175, 55, 0.025), transparent 40%), #0c0c0c;
  border-top: 1px solid var(--color-border);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-content {
  display: grid;
  /* Mengubah auto-fit menjadi proporsi statis agar rapi (Kolom 1 lebih lebar) */
  grid-template-columns: minmax(260px, 2fr) repeat(3, minmax(120px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
  align-items: start; /* Pastikan semua kolom rata atas */
  width: 100%;
}

/* Pengaturan khusus logo footer */
.footer-logo {
  max-width: 210px;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  display: block;
}

/* Deskripsi KANAU di bawah logo */
.brand-section p {
  margin-top: 0;
  line-height: 1.6;
  max-width: 440px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--color-text-primary);
  margin-top: 0; /* Menghilangkan jarak atas agar sejajar dengan atap logo */
  margin-bottom: var(--space-sm);
  font-size: 1.125rem;
}

.footer-section p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.65rem;
}

.footer-section a {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--color-accent-cyan);
}

.footer-link {
  color: var(--color-accent-blue);
  display: inline-block;
  margin-top: var(--space-xs);
}

.footer-socials {
  display: flex;
  gap: var(--space-sm);
}

.footer-socials a {
  color: var(--color-text-muted);
  transition: all var(--transition-fast);
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 50%;
}

.footer-socials a:hover {
  color: var(--color-accent-cyan);
  transform: translateY(-2px);
}

.footer-socials a[aria-disabled="true"] {
  opacity: 0.38;
  pointer-events: none;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin: 0;
}

.back-to-top {
  color: var(--color-text-muted);
  font-size: 0.78rem;
}

.back-to-top:hover {
  color: var(--color-accent-blue);
}

/* =========================================
   FOOTER RESPONSIVE (TABLET & HP)
   ========================================= */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr; /* Jadi 2 kolom di tablet */
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr; /* Jadi 1 kolom memanjang di HP */
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto var(--space-sm) auto; /* Posisikan logo ke tengah */
  }

  .footer-socials {
    justify-content: center; /* Ikon sosmed ke tengah */
  }

  .footer-bottom {
    flex-direction: column;
  }
}

/* ============================================
   Talent Modal System
   ============================================ */
.talent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.talent-modal.active {
  display: flex;
}

.talent-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(212, 175, 55, 0.09),
      transparent 38%
    ),
    rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
}

.talent-modal-content {
  position: relative;
  width: min(90%, 880px);
  max-width: 880px;
  max-height: 84vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(212, 175, 55, 0.07),
      transparent 35%
    ),
    linear-gradient(145deg, #171717, #0c0c0c 72%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.talent-modal-content.active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.talent-modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.talent-modal-close:hover {
  background-color: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
  transform: rotate(90deg);
}

.talent-modal-close:focus-visible {
  outline: 2px solid #f7e69a;
  outline-offset: 3px;
}

.talent-modal-close svg {
  color: var(--color-text-primary);
}

.talent-modal-scroll {
  max-height: 84vh;
  overflow-y: auto;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  padding-top: clamp(4rem, 6vw, 4.6rem);
}

.talent-modal-scroll::-webkit-scrollbar {
  width: 8px;
}

.talent-modal-scroll::-webkit-scrollbar-track {
  background: var(--color-bg-tertiary);
}

.talent-modal-scroll::-webkit-scrollbar-thumb {
  background: var(--color-accent-blue);
  border-radius: 4px;
}

.talent-modal-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

.talent-modal-toolbar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 46px;
  margin: -0.4rem 0 2rem;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
}

.talent-modal-nav {
  display: flex;
  gap: 0.35rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.talent-modal-nav::-webkit-scrollbar {
  display: none;
}

.talent-modal-nav button {
  padding: 0.4rem 0.65rem;
  flex-shrink: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--color-text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.45px;
  transition:
    color var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.talent-modal-nav button:hover,
.talent-modal-nav button.active {
  background: rgba(212, 175, 55, 0.09);
  border-color: rgba(212, 175, 55, 0.22);
  color: #f7e69a;
}

.talent-modal-nav button:focus-visible,
.modal-section-toggle:focus-visible {
  outline: 2px solid #f7e69a;
  outline-offset: 2px;
}

/* Modal Header */
.talent-modal-header {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  flex-wrap: wrap;
  position: relative;
}

.talent-modal-profile-img {
  width: 160px;
  height: 190px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(212, 175, 55, 0.08);
  flex-shrink: 0;
}

.talent-modal-profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.talent-modal-header-info {
  flex: 1;
  min-width: 260px;
  align-self: center;
}

.talent-modal-header-info h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.65rem);
  letter-spacing: -0.5px;
}

.talent-modal-nickname {
  color: var(--color-accent-cyan);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.55px;
  margin-bottom: var(--space-sm);
}

.talent-status-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-sm);
}

.talent-status-badge.status-active {
  background-color: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid #22c55e;
}

.talent-status-badge.status-graduated {
  background-color: rgba(190, 53, 69, 0.16);
  color: #ef6b78;
  border: 1px solid rgba(239, 107, 120, 0.68);
}

.talent-status-badge.status-hiatus {
  background-color: rgba(250, 204, 21, 0.14);
  color: #facc15;
  border: 1px solid rgba(250, 204, 21, 0.68);
}

.talent-status-badge.status-inactive {
  background-color: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border: 1px solid rgba(251, 146, 60, 0.66);
}

.talent-card-status {
  flex-shrink: 0;
  margin: 0 0 1rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.58rem;
  line-height: 1;
  letter-spacing: 0.45px;
}

.talent-modal-role {
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* Modal Sections */
.talent-modal-section {
  margin-bottom: 2rem;
}

.talent-modal-section:last-child {
  margin-bottom: 0;
}

.talent-modal-section h3 {
  color: var(--color-text-primary);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  letter-spacing: 0.2px;
}

.modal-section-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 0 var(--space-xs);
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
}

.section-chevron {
  color: var(--color-accent-blue);
  font-size: 0.7rem;
  transition: transform var(--transition-fast);
}

.talent-modal-section.is-collapsed .section-chevron {
  transform: rotate(-90deg);
}

.talent-modal-section.is-collapsed .talent-modal-section-body {
  display: none;
}

.talent-modal-section p {
  color: var(--color-text-secondary);
  line-height: 1.68;
  font-size: 0.92rem;
}

.talent-prose {
  display: grid;
  gap: 1rem;
}

.talent-prose p {
  margin: 0;
}

/* Profile Grid */
.talent-modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.talent-modal-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 12px;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.talent-modal-info-item:hover {
  background: rgba(212, 175, 55, 0.055);
  border-color: rgba(212, 175, 55, 0.32);
  transform: translateY(-2px);
}

.info-label {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.info-value {
  color: var(--color-text-primary);
  font-size: 1rem;
  font-weight: 500;
}

.language-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.language-chips span {
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.065);
  color: var(--color-text-primary);
  font-size: 0.73rem;
  font-weight: 600;
}

/* Debut History */
.debut-history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.debut-history-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 0.85rem;
  row-gap: 0.25rem;
  min-height: 88px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.055), transparent 55%),
    rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 14px;
}

.debut-history-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-accent-blue);
}

.debut-history-item .info-label {
  align-self: end;
  font-size: 0.7rem;
}

.debut-history-item .info-value {
  align-self: start;
  overflow-wrap: anywhere;
  font-family: "Playfair Display", serif;
  font-size: 1.02rem;
}

/* Content Info */
.talent-modal-content-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.content-item {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 12px;
}

.content-item .info-label {
  display: block;
  margin-bottom: 0.5rem;
}

.content-item .info-value {
  color: var(--color-text-secondary);
}

.community-identity-grid,
.preferences-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hashtag-panel {
  padding: 1rem;
}

.hashtag-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.11);
  border-radius: 10px;
}

.hashtag-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.38fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 1rem;
  padding: 0.7rem 0.8rem;
  background: rgba(255, 255, 255, 0.018);
}

.hashtag-row + .hashtag-row {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.hashtag-row span {
  color: var(--color-text-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.hashtag-row strong {
  min-width: 0;
  color: var(--color-text-primary);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

/* Preferences */
.preference-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-content: start;
  column-gap: 0.85rem;
  row-gap: 0.45rem;
  min-height: 118px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 14px;
}

.preference-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.26);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.07);
  color: var(--color-accent-blue);
}

.preference-item .info-label {
  align-self: center;
}

.preference-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preference-list li {
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.055);
  color: var(--color-text-secondary);
  font-size: 0.73rem;
}

.preference-dislikes .preference-icon {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  color: var(--color-text-muted);
}

/* Credits */
.talent-modal-credits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.credit-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  column-gap: 0.85rem;
  row-gap: 0.25rem;
  min-height: 92px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(212, 175, 55, 0.055), transparent 55%),
    rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 14px;
}

.credit-icon {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  color: var(--color-accent-blue);
}

.credit-item .info-label {
  align-self: end;
  font-size: 0.7rem;
}

.credit-item .info-value {
  align-self: start;
  overflow-wrap: anywhere;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
}

/* Links */
/* =========================================
   TOMBOL SOSIAL MEDIA ELEGAN (POP-UP LINKS)
   ========================================= */

/* Mengatur wadah utama tombol agar berjejer rapi */
.talent-modal-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

/* Base style untuk bentuk kapsul */
.talent-modal-links .talent-link {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 9px 16px;
  border-radius: 30px;
  color: var(--color-text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Memberi jarak dan animasi pada ikon bawaan dari script.js */
.talent-modal-links .talent-link i {
  margin-right: 8px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.talent-link-placeholder {
  opacity: 0.42;
  cursor: not-allowed;
  filter: saturate(0.45);
}

.talent-link-placeholder small {
  margin-left: auto;
  color: var(--color-text-muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.talent-modal-links a[data-platform="discord"]:hover {
  background: rgba(88, 101, 242, 0.1);
  border-color: #5865f2;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.22);
  color: #ffffff;
}

/* =========================================
   DETEKSI OTOMATIS WARNA GLOW (Tanpa Dobel Ikon)
   ========================================= */

/* 1. YOUTUBE */
.talent-modal-links a[href*="youtube.com"]:hover,
.talent-modal-links a[href*="youtu.be"]:hover {
  background: rgba(255, 0, 0, 0.08);
  border-color: #ff0000;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.25);
}

/* 2. TWITTER / X */
.talent-modal-links a[href*="twitter.com"]:hover,
.talent-modal-links a[href*="x.com"]:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* 3. INSTAGRAM */
.talent-modal-links a[href*="instagram.com"]:hover {
  background: rgba(225, 48, 108, 0.08);
  border-color: #e1306c;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(225, 48, 108, 0.25);
}

/* 4. TIKTOK */
.talent-modal-links a[href*="tiktok.com"]:hover {
  background: rgba(0, 242, 234, 0.05);
  border-color: #00f2ea;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 242, 234, 0.2);
}

/* 5. DEFAULT / LINK LAINNYA */
.talent-modal-links
  a:not([href*="youtube"]):not([href*="youtu.be"]):not([href*="twitter"]):not(
    [href*="x.com"]
  ):not([href*="instagram"]):not([href*="tiktok"]):hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--color-accent-blue);
  color: #ffffff;
  box-shadow: var(--glow-subtle);
}

.talent-modal-links a[data-platform="whatsapp"]:hover {
  background: rgba(37, 211, 102, 0.1);
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.22);
}

.talent-modal-links a[data-platform="support"]:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.22);
}

/* Efek animasi kecil saat tombol disorot (ikon membesar) */
.talent-modal-links a:hover i {
  transform: scale(1.15);
}

/* Efek saat diklik */
.talent-modal-links a:active {
  transform: scale(0.96);
}

.talent-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-primary);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.talent-link:hover {
  background-color: var(--color-accent-blue);
  border-color: var(--color-accent-blue);
  transform: translateY(-2px);
}

.talent-link svg {
  flex-shrink: 0;
}

.talent-link-support {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

.talent-link-support:hover {
  background-color: #ef4444;
}

/* Featured Media Portfolio */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
}

.media-portfolio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.media-player {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(212, 175, 55, 0.16);
  border-radius: 14px;
}

.media-player .video-wrapper {
  border: 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 0;
}

.media-player .video-wrapper iframe {
  border-radius: 0;
}

.media-player-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1rem 0;
}

.media-player-category {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--color-accent-blue);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.media-player-info h4 {
  color: var(--color-text-primary);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.media-player-date {
  flex-shrink: 0;
  color: var(--color-text-muted);
  font-size: 0.68rem;
}

.media-player-description {
  padding: 0.65rem 1rem 1rem;
  color: var(--color-text-muted) !important;
  font-size: 0.8rem !important;
}

.media-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  overflow: visible;
  padding-bottom: 0.15rem;
}

.media-filters::-webkit-scrollbar,
.media-playlist::-webkit-scrollbar {
  display: none;
}

.media-filters[hidden],
.media-playlist-heading[hidden],
.media-playlist[hidden] {
  display: none !important;
}

.talent-modal-info-item[hidden],
.debut-history-item[hidden],
.content-item[hidden],
.preference-item[hidden],
.credit-item[hidden] {
  display: none !important;
}

.media-filters button {
  min-height: 34px;
  max-width: 100%;
  padding: 0.4rem 0.75rem;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 999px;
  color: var(--color-text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
}

.media-filters button:hover,
.media-filters button.active {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.42);
  color: #f7e69a;
}

.media-playlist-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.15rem;
}

.media-playlist-heading span {
  color: var(--color-text-primary);
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
}

.media-playlist-heading small {
  color: var(--color-text-muted);
  font-size: 0.64rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.media-playlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding-bottom: 0.35rem;
}

.media-playlist-card {
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.022);
  border: 1px solid rgba(212, 175, 55, 0.13);
  border-radius: 12px;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--transition-fast),
    background var(--transition-fast),
    transform var(--transition-fast);
}

.media-playlist-card:hover,
.media-playlist-card.active {
  background: rgba(212, 175, 55, 0.055);
  border-color: rgba(212, 175, 55, 0.46);
  transform: translateY(-2px);
}

.media-playlist-thumbnail {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090909;
}

.media-playlist-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition:
    opacity var(--transition-fast),
    transform var(--transition-normal);
}

.media-playlist-card:hover img,
.media-playlist-card.active img {
  opacity: 0.95;
  transform: scale(1.025);
}

.media-playlist-thumbnail i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.72rem;
  transform: translate(-50%, -50%);
}

.media-playlist-copy {
  display: block;
  padding: 0.75rem;
}

.media-playlist-copy small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--color-accent-blue);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.media-playlist-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text-primary);
  font-size: 0.78rem;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.media-filters button:focus-visible,
.media-playlist-card:focus-visible {
  outline: 2px solid #f7e69a;
  outline-offset: 2px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--color-bg-secondary);
    flex-direction: column;
    padding: var(--space-md);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    border-bottom: 1px solid var(--color-border);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .talents-grid,
  .team-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .generation-header {
    flex-direction: column;
    align-items: center; /* Diubah ke center agar posisinya ke tengah */
    text-align: center; /* Tambahan untuk memastikan teks juga rata tengah */
  }

  .generation-block {
    padding: 1.5rem 1rem;
    border-radius: 18px;
  }

  section {
    padding: var(--space-lg) 0;
  }
}

@media (max-width: 768px) {
  #starfield {
    position: absolute;
  }

  #shooting-stars {
    display: none;
  }

  .star {
    animation: none;
    opacity: 0.45;
  }

  .talent-modal-overlay,
  .talent-modal-close,
  .team-member {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .talent-card.reveal-hidden {
    transform: translateY(18px);
    transition-duration: 0.38s;
  }

  .talent-modal-content {
    width: calc(100% - 1.5rem);
    max-height: min(90vh, 780px);
    border-radius: 18px;
  }

  .talent-modal-scroll {
    max-height: min(90vh, 780px);
    padding: 1.25rem;
    padding-top: 3.9rem;
  }

  .talent-modal-toolbar {
    margin-bottom: 1.5rem;
  }

  .talent-modal-header {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .talent-modal-profile-img {
    width: 150px;
    height: 185px;
  }

  .talent-modal-header-info {
    text-align: center;
    min-width: 0;
    width: 100%;
  }

  .talent-modal-header-info h2 {
    font-size: 1.5rem;
  }

  .talent-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .talent-modal-links {
    flex-direction: column;
  }

  .talent-modal-links .talent-link {
    width: 100%;
    justify-content: center;
  }

  .talent-modal-credits {
    grid-template-columns: 1fr;
  }

  .debut-history-grid,
  .preferences-grid {
    grid-template-columns: 1fr;
  }

  .credit-item {
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.25rem;
  }
}

@media (max-width: 480px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero {
    min-height: 90vh;
  }

  .talent-modal {
    align-items: flex-end;
  }

  .talent-modal-content {
    width: 100%;
    max-height: 92dvh;
    border-radius: 20px 20px 0 0;
    border-bottom: 0;
    transform: translateY(32px);
  }

  .talent-modal-content.active {
    transform: translateY(0);
  }

  .talent-modal-scroll {
    max-height: 92dvh;
    padding: 1rem;
    padding-top: 3.75rem;
    overscroll-behavior: contain;
  }

  .talent-modal-toolbar {
    margin: -0.15rem 0 1.25rem;
  }

  .talent-modal-nav button {
    min-height: 36px;
    padding: 0.4rem 0.6rem;
  }

  .talent-modal-close {
    position: fixed;
    top: 0.85rem;
    right: 0.85rem;
    width: 44px;
    height: 44px;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(8px);
  }

  .talent-modal-header {
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .talent-modal-profile-img {
    width: 132px;
    height: 162px;
  }

  .talent-modal-header-info h2 {
    font-size: 1.65rem;
  }

  .talent-modal-nickname {
    letter-spacing: 0.45px;
  }

  .talent-modal-section {
    margin-bottom: 1.5rem;
  }

  .talent-modal-section h3 {
    font-size: 1.1rem;
    margin-bottom: 0.9rem;
  }

  .talent-modal-grid {
    gap: 0.65rem;
  }

  .talent-modal-info-item {
    min-width: 0;
    padding: 0.75rem;
  }

  .info-label {
    font-size: 0.68rem;
    letter-spacing: 0.65px;
  }

  .info-value {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
  }

  .content-item,
  .debut-history-item,
  .preference-item,
  .credit-item {
    padding: 0.8rem;
  }

  .hashtag-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .talent-modal-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .talent-modal-links .talent-link {
    min-height: 44px;
    padding: 0.65rem 0.75rem;
    font-size: 0.76rem;
  }

  .media-player-info {
    flex-direction: column;
    gap: 0.4rem;
  }

  .media-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .media-filters button {
    max-width: none;
    white-space: nowrap;
  }

  .media-playlist {
    grid-template-columns: none;
    grid-auto-columns: minmax(190px, 82%);
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .media-playlist-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 360px) {
  .talent-modal-grid,
  .community-identity-grid,
  .talent-modal-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .talent-modal-content,
  .talent-modal-close,
  .talent-modal-info-item,
  .talent-modal-links a {
    transition-duration: 0.01ms;
  }
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .nav-content {
    padding: 0.85rem 0;
  }

  .nav-logo img {
    width: 126px;
  }

  .nav-menu {
    top: 70px;
    width: calc(100% - 1.5rem);
    max-height: calc(100dvh - 82px);
    margin: 0 auto;
    padding: 0.75rem;
    overflow-y: auto;
    background: rgba(14, 14, 14, 0.97);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a,
  .nav-link-disabled {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.8rem;
    border-radius: 9px;
  }

  .nav-menu a.active {
    background: rgba(212, 175, 55, 0.08);
  }

  .nav-menu a::after {
    display: none;
  }
}

@media (hover: none) {
  .project-card:hover,
  .talent-card:hover,
  .team-member:hover {
    transform: none;
  }

  .project-card:hover .project-image img {
    transform: none;
  }
}

@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-action {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form-action .btn {
    justify-content: center;
    width: 100%;
  }
}

/* =====================
   STAR BACKGROUND
===================== */
#starfield,
#shooting-stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

/* Semua konten website naik di atas particle */
/* Semua konten website naik di atas particle */
body
  > *:not(#starfield):not(#shooting-stars):not(.talent-modal):not(.nav):not(
    .ecosystem-dock
  ):not(.ecosystem-social-dialog) {
  position: relative;
  z-index: 2;
}

/* STAR */
.star {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: white;
  animation: twinkle 4s infinite ease-in-out;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.8);
  }
}

/* METEOR */
.meteor {
  position: absolute;
  height: 3px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1),
    rgba(96, 165, 250, 0.7),
    rgba(255, 255, 255, 0)
  );

  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);

  animation: meteorFall linear forwards;
}

@keyframes meteorFall {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(-35deg);
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(800px, 500px) rotate(-35deg);
  }
}

/* ==========================================================================
   PREMIUM INITIALIZING SYSTEM (LOADING SCREEN) - FIX LAYOUT ALIGNMENT
   ========================================================================== */

.preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;

  width: 100vw !important;
  height: 100vh !important;
  background-color: #0b0b0b !important;
  z-index: 9999999 !important;

  /* KUNCI UTAMA: Memaksa konten di dalam preloader berbaris dari atas ke bawah */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  transition:
    opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important,
    visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.preloader-content {
  /* Memaksa isi pembungkus konten tegak lurus vertikal ke bawah */
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 20px !important; /* Jarak renggang yang pas antara logo dan teks */
  pointer-events: none !important;
  width: 100% !important;
  text-align: center !important;
}

/* ==========================================================================
   KANAU ECOSYSTEM DOCK - PHONES ONLY
   ========================================================================== */

.ecosystem-dock,
.ecosystem-social-dialog {
  display: none;
}

@media (max-width: 600px), (max-device-width: 600px) {
  body {
    padding-bottom: 82px;
  }

  .ecosystem-dock {
    position: fixed;
    right: 12px;
    bottom: 0;
    left: 12px;
    z-index: 1800;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 72px;
    padding: 6px 7px;
    overflow: hidden;
    background: rgba(17, 17, 17, 0.99);
    border: 1px solid rgba(212, 175, 55, 0.32);
    border-radius: 19px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.48);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition:
      opacity 0.22s ease,
      visibility 0.22s ease,
      transform 0.22s ease;
  }

  .ecosystem-dock.is-suspended {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(100% + 20px));
  }

  .ecosystem-dock-item {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 4px 2px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 0;
    border-radius: 13px;
    color: #9f9f9f;
    font: 700 0.63rem/1 "Inter", sans-serif;
    cursor: pointer;
  }

  .ecosystem-dock-item svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .ecosystem-dock-item.is-active {
    background: rgba(212, 175, 55, 0.13);
    color: #f5d76e;
  }

  .ecosystem-dock-item.is-unavailable {
    color: #5f5f5f;
    cursor: default;
  }

  .ecosystem-dock-item > small {
    position: absolute;
    top: 4px;
    right: 4px;
    padding: 2px 4px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 999px;
    color: #777777;
    font-size: 0.44rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .ecosystem-social-dialog[open] {
    position: fixed;
    inset: auto 12px 82px;
    z-index: 1900;
    display: block;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #111111;
    color: var(--color-text-primary);
    border: 1px solid rgba(212, 175, 55, 0.34);
    border-radius: 20px;
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.66);
  }

  .ecosystem-social-dialog::backdrop {
    background: rgba(3, 3, 3, 0.84);
  }

  .ecosystem-social-head {
    display: flex;
    min-height: 78px;
    padding: 16px 17px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--color-border);
  }

  .ecosystem-social-head > div {
    min-width: 0;
  }

  .ecosystem-social-head small {
    display: block;
    margin-bottom: 5px;
    color: var(--color-accent-blue);
    font-size: 0.5rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .ecosystem-social-head strong {
    display: block;
    font-size: 1rem;
    line-height: 1.25;
  }

  .ecosystem-social-head > button {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    color: var(--color-text-primary);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }

  .ecosystem-social-links {
    display: grid;
    padding: 7px;
    gap: 4px;
  }

  .ecosystem-social-links a {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) 18px;
    min-height: 58px;
    padding: 10px 11px;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    color: var(--color-text-secondary);
  }

  .ecosystem-social-links a:hover,
  .ecosystem-social-links a:focus-visible {
    background: var(--color-bg-tertiary);
    color: var(--color-text-primary);
  }

  .ecosystem-social-links > a > i {
    color: var(--color-accent-blue);
    font-size: 1.35rem;
    text-align: center;
  }

  .ecosystem-social-links span {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
  }

  .ecosystem-social-links b {
    font-size: 0.82rem;
  }

  .ecosystem-social-links span small {
    overflow: hidden;
    color: var(--color-text-muted);
    font-size: 0.63rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ecosystem-social-links em {
    color: var(--color-accent-blue);
    font-style: normal;
  }

  /* iPhone needs room for its home indicator. Android browsers already keep
     the system navigation area outside the page viewport. */
  @supports (-webkit-touch-callout: none) {
    body {
      padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .ecosystem-dock {
      bottom: env(safe-area-inset-bottom);
    }

    .ecosystem-social-dialog[open] {
      inset: auto 12px calc(82px + env(safe-area-inset-bottom));
    }
  }
}

/* LOGO: Ukuran besar (Maksimal 320px) */
.preloader-logo {
  width: clamp(220px, 28vw, 320px) !important;
  height: auto !important;
  display: block !important;
  margin: 0 auto !important; /* Memastikan logo berada di tengah */
  animation: logoGlowPulse 2s infinite ease-in-out !important;
}

/* TEKS STATUS: Dikunci di bawah logo secara horizontal mandiri */
.preloader-status {
  display: flex !important;
  flex-direction: row !important; /* Titik loading tetap di sebelah kanan teks */
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  font-size: 1.1rem !important;
  color: var(--color-text-muted) !important;
  letter-spacing: 6px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  opacity: 0.85 !important;
  margin: 0 !important;
  padding-left: 6px !important; /* Penyeimbang visual efek letter-spacing agar teks tidak condong ke kiri */
}

/* TITIK LOADING */
.status-dots {
  display: flex !important;
  gap: 4px !important;
  align-items: center !important;
}

.status-dots .dot {
  width: 5px !important;
  height: 5px !important;
  background-color: var(--color-accent-blue) !important;
  border-radius: 50% !important;
  display: inline-block !important;
  animation: dotBlink 1.4s infinite both !important;
}

.status-dots .dot:nth-child(2) {
  animation-delay: 0.2s !important;
}
.status-dots .dot:nth-child(3) {
  animation-delay: 0.4s !important;
}

.preloader.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ==========================================================================
   TIMELINE ANIMASI PRELOADER
   ========================================================================== */
@keyframes logoGlowPulse {
  0%,
  100% {
    transform: scale(0.97);
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.15));
    opacity: 0.75;
  }
  50% {
    transform: scale(1.03);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.6));
    opacity: 1;
  }
}

@keyframes dotBlink {
  0%,
  80%,
  100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

/* =========================================
   STYLING KOTAK DATA TALENT (MODAL GRID)
   ========================================= */

/* Mengubah teks biasa menjadi bentuk Card (Kotak) */
.info-item {
  background: rgba(255, 255, 255, 0.03); /* Warna latar kaca transparan */
  border: 1px solid rgba(212, 175, 55, 0.15); /* Garis batas emas redup */
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}

/* Efek saat mouse diarahkan ke kotak data */
.info-item:hover {
  background: rgba(212, 175, 55, 0.08); /* Latar emas sedikit lebih terang */
  border-color: var(--color-accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--glow-subtle);
}

/* Styling Ikon Emas di dalam kotak */
.icon-gold {
  color: var(--color-accent-blue);
  margin-right: 6px;
  font-size: 0.9em;
}

/* Membesarkan Logo */
.generation-logo {
  max-height: 80px; /* Coba naikkan ke 75px - 85px */
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.15));
  transition: transform 0.3s ease;
}

#modalOshi img {
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

#modalOshi {
  display: flex;
  align-items: center;
  gap: 4px;
}