/* ============================
   COLOR VARIABLES - JFX THEME (Updated)
============================ */
:root {
  --jfx-blue: #2563eb; /* Lighter blue - not too dark */
  --jfx-gold: #f59e0b;
  --jfx-light-blue: #3b82f6;
  --jfx-light-gold: #fbbf24;
  --jfx-gradient: linear-gradient(135deg, #2563eb 0%, #f59e0b 100%);
  --jfx-gradient-reverse: linear-gradient(135deg, #f59e0b 0%, #2563eb 100%);
  --jfx-balanced-gradient: linear-gradient(
    135deg,
    #3b82f6,
    #2563eb 30%,
    #f59e0b
  );
  --text-dark: #1e293b;
  --text-light: #ffffff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --primary-color: #2563eb;
  --secondary-color: #f8fafc;
  --accent-color: #f59e0b;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================
   RESET & BASE STYLES
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8fafc;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================
   HERO SECTION
============================ */
/* .hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.7) 0%,
    rgba(245, 158, 11, 0.5) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -2px;
  line-height: 1.1;
}

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
}

.indicator.active {
  background: white;
  border-color: var(--jfx-gold);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
} */

/* ============================
   HERO VIDEO SECTION
============================ */
.hero-video-section {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(0.7); */
}

.fallback-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.4),
    rgba(245, 158, 11, 0.2)
  ); */
  z-index: 99;
}

/* .hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 600px;
  margin-left: 25rem;
  animation: slideInLeft 1s ease-out;
} */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-badge i {
  color: #fbbf24;
  font-size: 1.1rem;
}

/* .hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out 0.5s both;
  text-align: center;
} */
/* wrapper hero */


/* konten judul */
.hero-content {
  position: relative !important;
  z-index: 2 !important;
  color: #fff !important;
  max-width: 900px !important;

  /* pusatkan & hapus offset lama */
  margin: 0 auto !important;
  margin-left: 0 !important;
  text-align: center !important;

  /* opsional anim yg lebih cocok untuk center */
  animation: fadeInUp 0.9s ease-out both !important;
}

/* judul */
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  margin: 0 0 1.2rem !important;
  text-shadow: 0 4px 20px rgba(0,0,0,.5) !important;
  text-align: center !important;
}

/* kecilkan sedikit di layar kecil */
@media (max-width: 768px){
  .hero { min-height: 50vh !important; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem) !important; }
}


.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: #fbbf24;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Running Ticker ===== */
.ticker {
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  padding: 0.5rem 0;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-content {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.3px;
  animation: jfx-marquee 30s linear infinite;
}
@keyframes jfx-marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* ============================
   SECTIONS
============================ */
.section-title {
  color: #111111;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: text;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title {
  color: #111111;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-align: center;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 60px;
  height: 4px;
  background: var(--jfx-balanced-gradient);
  border-radius: 2px;
}

.charts-section .container {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: #64748b;
  margin-bottom: 3rem;
  font-size: 1.2rem;
}


/* ==================================================
   MARKET ACTIVITY (namespace: ma-)
================================================== */
.ma-section {
  padding: 3.5rem 0;
  background: linear-gradient(
    135deg,
    #fbfdff 0%,
    rgba(245, 158, 11, 0.02) 100%
  );
}
.ma-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.ma-title {
  margin: 0 0 0.35rem;
  text-align: center;
  color: #0f172a;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  font-weight: 800;
  font-size: 2.5rem;
}
.ma-subtitle {
  text-align: center;
  color: #64748b;
  margin: 0 0 1.8rem;
  font-size: 0.98rem;
}

/* Two panels + divider */
.ma-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
}
.ma-panels::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.25rem;
  bottom: 0.25rem;
  width: 1px;
  background: linear-gradient(#e5e7eb, #d1d5db);
  transform: translateX(-0.5px);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .ma-panels {
    grid-template-columns: 1fr;
  }
  .ma-panels::before {
    display: none;
  }
}

.ma-panel-head {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}
.ma-ctitle {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ma-ctitle::before {
  content: "";
  width: 46px;
  height: 4px;
  border-radius: 999px;
  background: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.15);
}
.ma-ctitle::after {
  content: "";
  flex: 1 1 auto;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #3b82f6 15%,
    #64748b 40%,
    #b08900 70%,
    rgba(176, 137, 0, 0) 100%
  );
}
@media (max-width: 640px) {
  .ma-ctitle::before,
  .ma-ctitle::after {
    height: 3px;
  }
  .ma-ctitle::before {
    width: 36px;
  }
}

.ma-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #334155;
  font-size: 0.95rem;
}
.ma-meta i {
  opacity: 0.9;
}

/* Tabs */
.ma-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.ma-tabs--primary {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 0.65rem;
}
.ma-tabs--secondary {
  margin: 0.5rem 0 1rem;
}

.ma-tab,
.ma-subtab {
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 0.55rem 0.9rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: #0f2844;
  color: #dbeafe;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.25);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.ma-tab:hover,
.ma-subtab:hover {
  transform: translateY(-1px);
}
.ma-tab.is-active,
.ma-subtab.is-active {
  background: linear-gradient(145deg, #1e3a5f 0%, #2a4a70 100%);
  box-shadow: 0 6px 16px rgba(30, 58, 95, 0.18),
    inset 0 0 0 1px rgba(245, 158, 11, 0.45);
}

.ma-subtabs {
  display: none;
}
.ma-subtabs.is-open {
  display: block;
}

/* Panes */
.ma-pane {
  display: none;
}
.ma-pane.is-show {
  display: block;
}

/* Card */
.ma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}
.ma-grid--single {
  max-width: 740px;
}

.ma-card {
  display: block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(145deg, #1e3a5f 0%, #2a4a70 100%);
  border-radius: 14px;
  padding: 1.1rem;
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: 0 4px 15px rgba(30, 58, 95, 0.15);
  position: relative;
  overflow: hidden;
  min-height: 136px;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease;
}
.ma-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  opacity: 0;
  transition: opacity 0.22s ease;
}
.ma-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.26);
  border-color: rgba(245, 158, 11, 0.32);
}
.ma-card:hover::before {
  opacity: 1;
}

.ma-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.ma-card-name {
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #e2e8f0;
}
.ma-status {
  display: inline-block;
  font-weight: 800;
  font-size: 1rem;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
}
.ma-status-pos {
  color: #10b981;
  background: rgba(16, 185, 129, 0.14);
}
.ma-status-neg {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.14);
}
.ma-status-neutral {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.14);
}

.ma-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.ma-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  padding: 0.55rem 0.4rem;
  text-align: center;
  font-weight: 700;
  font-family: "Inter", "Courier New", monospace;
  color: #fff;
  transition: 0.15s ease;
  font-size: 0.86rem;
}
.ma-cell::before {
  content: attr(data-label);
  display: block;
  font-size: 0.65rem;
  color: rgba(226, 232, 240, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.ma-cell:hover {
  background: rgba(245, 158, 11, 0.12);
  border-color: rgba(245, 158, 11, 0.28);
  transform: translateY(-1px);
  color: #fbbf24;
}

/* ===== Assemble Animation (4 sudut menyatu) ===== */
/* ===== Assemble Animation v2 (lebih smooth & nyata menyatu) ===== */

/* wadah animasi */
.ma-assemble {
  position: relative;
  min-height: 150px;
  isolation: isolate; /* pastikan blend efek tidak bocor */
}

/* konten kartu muncul terakhir */
.ma-content {
  opacity: 0;
  transform: scale(0.985);
  filter: blur(6px);
  transition: opacity 0.36s ease 0.42s,
    transform 0.36s cubic-bezier(0.16, 0.84, 0.44, 1) 0.42s,
    filter 0.36s ease 0.42s;
}

/* 4 pecahan (quarter) — pakai clip-path agar mulus tanpa “overlap” */
.ma-shard {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1e3a5f 0%, #2a4a70 100%);
  border: 1px solid rgba(59, 130, 246, 0.12);
  box-shadow: 0 10px 24px rgba(30, 58, 95, 0.18);
  border-radius: 14px;
  opacity: 0;
  transform: translateZ(0); /* smoothing */
  will-change: clip-path, transform, opacity;
}

/* bentuk awal tiap sudut (0% area di masing-masing corner) */
.ma-tl {
  --from: polygon(0 0, 0 0, 0 0, 0 0);
  --to: polygon(0 0, 50% 0, 50% 50%, 0 50%);
}
.ma-tr {
  --from: polygon(100% 0, 100% 0, 100% 0, 100% 0);
  --to: polygon(50% 0, 100% 0, 100% 50%, 50% 50%);
}
.ma-bl {
  --from: polygon(0 100%, 0 100%, 0 100%, 0 100%);
  --to: polygon(0 50%, 50% 50%, 50% 100%, 0 100%);
}
.ma-br {
  --from: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
  --to: polygon(50% 50%, 100% 50%, 100% 100%, 50% 100%);
}

/* saat dimainkan */
.ma-assemble.is-playing .ma-shard {
  animation: maAssembleGrow 0.48s cubic-bezier(0.2, 0.8, 0.2, 1) forwards,
    maAssembleSettle 0.42s cubic-bezier(0.2, 0.8, 0.2, 1) 0.48s forwards;
  /* staggering tipis biar berasa dari 4 sisi */
}
.ma-assemble.is-playing .ma-tr {
  animation-delay: 0.06s, 0.54s;
}
.ma-assemble.is-playing .ma-bl {
  animation-delay: 0.12s, 0.6s;
}
.ma-assemble.is-playing .ma-br {
  animation-delay: 0.18s, 0.66s;
}

/* konten muncul setelah pecahan menyatu */
.ma-assemble.is-playing .ma-content {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* 1) pecahan “muncul dari sudut” dan membesar ke kuadran masing2 */
@keyframes maAssembleGrow {
  0% {
    clip-path: var(--from);
    opacity: 0;
    transform: translateZ(0) scale(0.9);
  }
  40% {
    opacity: 0.85;
  }
  100% {
    clip-path: var(--to);
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

/* 2) pecahan menyatu menjadi satu bidang, lalu hilang halus */
@keyframes maAssembleSettle {
  0% {
    /* mulai dari kuadran masing2 */
    clip-path: var(--to);
    opacity: 1;
  }
  60% {
    /* tutup celah di tengah: semua pecahan meluas hingga full */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  100% {
    /* pecahan lenyap, menyisakan kartu asli di bawahnya */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0;
  }
}

/* hormati preferensi user */
@media (prefers-reduced-motion: reduce) {
  .ma-shard {
    animation: none !important;
    opacity: 0 !important;
  }
  .ma-content {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Loading / Error (AJAX) */
.ma-loading {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  align-items: center;
  min-height: 120px;
}
.ma-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #1e3a5f;
  animation: maPulse 1s infinite;
}
.ma-dot:nth-child(2) {
  animation-delay: 0.15s;
}
.ma-dot:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes maPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-6px);
  }
}
.ma-error {
  color: #ef4444;
  background: #fff1f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .ma-card {
    min-height: 120px;
    padding: 1rem;
  }
  .ma-card-grid {
    gap: 0.6rem;
  }
  .ma-cell {
    font-size: 0.78rem;
  }
  .ma-cell::before {
    font-size: 0.6rem;
  }
  .ma-tabs--secondary {
    overflow: auto;
    white-space: nowrap;
    padding-bottom: 0.2rem;
  }
}

/* CSS TAMBAHAN UNTUK TAB TITTLE KOMODITY  */

/* ============ FANCY TABS ============ */
/* bar indikator geser di bawah setiap bar tab */
.ma-tabs {
  --indi-left: 0px;
  --indi-w: 0px;
  position: relative;
}
.ma-tabs::after {
  content: "";
  position: absolute;
  left: var(--indi-left);
  bottom: -2px;
  height: 3px;
  width: var(--indi-w);
  border-radius: 999px;
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
  transition: left 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    width 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.ma-tab,
.ma-subtab {
  position: relative;
  overflow: hidden; /* untuk sheen & ripple */
  border: 0;
  cursor: pointer;
  border-radius: 12px;
  padding: 0.62rem 1rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: #0f2844;
  color: #dbeafe;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.28);
  transition: transform 0.16s ease, filter 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease;
  will-change: transform, filter;
  
}

/* sheen (kilau) saat hover */
.ma-tab::before,
.ma-subtab::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.24) 40%,
    transparent 60%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}
.ma-tab:hover::before,
.ma-subtab:hover::before {
  animation: maSheen 900ms ease forwards;
}
@keyframes maSheen {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* ripple klik */
.ma-tab .ma-ripple,
.ma-subtab .ma-ripple {
  position: absolute;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(
    closest-side,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0)
  );
  transform: translate(-50%, -50%) scale(0);
  animation: maRipple 0.55s ease forwards;
}
@keyframes maRipple {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

/* state aktif: border gradient hidup + glow lembut */
/* state aktif: calm & elegant */
.ma-tab.is-active,
.ma-subtab.is-active {
  background: #132e51;
  color: #fff;
  box-shadow: 0 8px 18px rgba(30, 58, 95, 0.18),
    /* soft drop */ inset 0 0 0 1px rgba(245, 158, 11, 0.4); /* tipis warm border */
}

/* border gradient statis (tidak berputar) */
.ma-tab.is-active::after,
.ma-subtab.is-active::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.55),
    rgba(245, 158, 11, 0.55)
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  /* no animation for calm look */
}

/* opsional: napas halus (sangat pelan) — bisa dihapus kalau ingin benar-benar statis */
.ma-tab.is-active,
.ma-subtab.is-active {
  animation: maBreathe 6s ease-in-out infinite;
}
@keyframes maBreathe {
  0%,
  100% {
    box-shadow: 0 8px 18px rgba(30, 58, 95, 0.16),
      inset 0 0 0 1px rgba(245, 158, 11, 0.4);
  }
  50% {
    box-shadow: 0 10px 22px rgba(30, 58, 95, 0.22),
      inset 0 0 0 1px rgba(245, 158, 11, 0.46);
  }
}

/* kalau user pilih reduced motion, nonaktifkan napas */
@media (prefers-reduced-motion: reduce) {
  .ma-tab.is-active,
  .ma-subtab.is-active {
    animation: none !important;
  }
}

/* ===== Tabs: Brighter + Inter ===== */
:root{
  /* kamu bisa tweak ini sewaktu-waktu */
  --ma-tab-bg:           #1b3b66;       /* terang tapi tetap elegan */
  --ma-tab-bg-hover:     #214674;       /* sedikit lebih terang saat hover */
  --ma-tab-bg-active:    #245085;       /* aktif */
  --ma-tab-text:         #f1f5f9;       /* hampir putih */
  --ma-tab-text-dim:     #e2e8f0;       /* non-aktif */
  --ma-tab-border:       rgba(59,130,246,.35);
  --ma-tab-border-active:rgba(245,158,11,.55);
  --ma-indicator:        linear-gradient(90deg,#3b82f6,#f59e0b);
}

/* pakai Inter di seluruh komponen tabs */
.ma-tabs,
.ma-tab,
.ma-subtab{
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-feature-settings: "cv02","cv03","cv04","cv11";
}

/* default state */
.ma-tab,
.ma-subtab{
  background: var(--ma-tab-bg);
  color: var(--ma-tab-text-dim);
  box-shadow: inset 0 0 0 1px var(--ma-tab-border);
  padding: .62rem 1rem;
  font-weight: 700;      /* Inter terlihat rapi di 700 */
  letter-spacing: .1px;  /* sedikit saja agar tetap rapih */
}

/* hover */
.ma-tab:hover,
.ma-subtab:hover{
  background: var(--ma-tab-bg-hover);
  color: var(--ma-tab-text);
  filter: brightness(1.03);
}

/* aktif: lebih terang + border hangat tipis */
.ma-tab.is-active,
.ma-subtab.is-active{
  background: var(--ma-tab-bg-active);
  color: #fff;
  box-shadow:
    0 8px 18px rgba(30,58,95,.18),
    inset 0 0 0 1px var(--ma-tab-border-active);
}

/* border gradient statis (calm) */
.ma-tab.is-active::after,
.ma-subtab.is-active::after{
  content:"";
  position:absolute; inset:-1px; border-radius:12px; padding:1px;
  background: linear-gradient(135deg, rgba(59,130,246,.6), rgba(245,158,11,.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events:none;
}

/* indicator di bawah bar mengikuti palet baru */
.ma-tabs::after{
  background: var(--ma-indicator);
  box-shadow: 0 0 10px rgba(245,158,11,.28);
}

/* sheen & ripple disesuaikan agar match warna terang */
.ma-tab::before,
.ma-subtab::before{
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 40%, transparent 60%);
}
.ma-tab .ma-ripple,
.ma-subtab .ma-ripple{
  background: radial-gradient(closest-side, rgba(255,255,255,.45), rgba(255,255,255,0));
}

/* versi secondary tabs: sedikit lebih ringan */
.ma-tabs--secondary .ma-subtab{
  padding: .5rem .85rem;
  font-weight: 600;   /* Inter 600 cukup tegas untuk sub-tab */
}


/* ============================
   CHARTS SECTION - ENHANCED ELEGANT DESIGN
============================ */
.charts-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    #f8fafc 0%,
    rgba(245, 158, 11, 0.03) 50%,
    rgba(37, 99, 235, 0.02) 100%
  );
  position: relative;
}

.charts-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

/* ========================================
   MAIN GRID LAYOUT: Enhanced
   ======================================== */
.charts-exchange-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  max-width: 1500px;
  margin: 0 auto;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* ========================================
   LEFT SIDE: ENHANCED CHART WIDGET
   ======================================== */
.chart-widget {
  background: transparent;
  width: 100%;
}

/* Enhanced Chart Tabs Container */
.chart-tabs-container {
  position: relative;
  margin-bottom: 0;
}

.chart-tabs {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  padding: 0;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #f59e0b 100%);
  border-radius: 16px 16px 0 0;
  position: relative;
  overflow: hidden;
}

.chart-tabs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.chart-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-bottom: 4px solid transparent;
  letter-spacing: 0.5px;
}

.chart-tab i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.chart-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.chart-tab:hover i {
  transform: scale(1.1);
}

.chart-tab.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  border-bottom: 4px solid #fbbf24;
  font-weight: 700;
  box-shadow: inset 0 4px 8px rgba(255, 255, 255, 0.1);
}

.chart-tab.active i {
  transform: scale(1.15);
  color: #fbbf24;
}

.tabs-accent {
  height: 3px;
  background: linear-gradient(90deg, #fbbf24 0%, transparent 100%);
}

/* Enhanced Chart Container */
.chart-container {
  background: #ffffff;
  border: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(37, 99, 235, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  position: relative;
}

.chart-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, #2563eb, #f59e0b);
}

/* Chart Header */
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(241, 245, 249, 0.8);
}

.chart-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  background: linear-gradient(135deg, #2563eb, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.chart-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  animation: pulse 2s infinite;
}

.status-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #10b981;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Enhanced Chart Contents */
.chart-content {
  display: none;
  animation: slideIn 0.5s ease-out;
}

.chart-content.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chart-area {
  height: 320px;
  padding: 2rem;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.chart-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.02),
    rgba(245, 158, 11, 0.02)
  );
  border-radius: 16px;
  border: 2px solid rgba(241, 245, 249, 0.8);
  position: relative;
  overflow: hidden;
}

.chart-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 60%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Enhanced Chart Filters */
.chart-filters {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid rgba(241, 245, 249, 0.8);
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 120px;
  position: relative;
}

.filter-group.full-width {
  flex: 1;
  min-width: 200px;
}

.filter-group label {
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.125rem;
}

/* FIX: Active Filter Selects */
.filter-select,
select[id^="s_volume"],
select[id="contractid"] {
  padding: 0.625rem 0.875rem; /* Compact padding */
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  width: 100%;
}

.filter-select:hover,
select[id^="s_volume"]:hover,
select[id="contractid"]:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  transform: translateY(-1px);
}

.filter-select:focus,
select[id^="s_volume"]:focus,
select[id="contractid"]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Enhanced Notional Table */
.notional-table-container {
  padding: 2rem;
}

.table-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #2563eb, #f59e0b) 1;
  position: relative;
}

.table-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.table-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

.notional-table-wrapper {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid rgba(241, 245, 249, 0.8);
}

.notional-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.notional-table thead {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #f59e0b 100%);
  color: white;
}

.notional-table th {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.notional-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
  transition: background 0.2s ease;
}

.notional-table tbody tr:hover {
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.03),
    rgba(245, 158, 11, 0.03)
  );
  transform: scale(1.005);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.notional-table .total-row {
  background: linear-gradient(
    135deg,
    rgba(224, 242, 254, 0.8),
    rgba(254, 243, 224, 0.8)
  );
  font-weight: 800;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #2563eb, #f59e0b) 1;
}

.product-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Enhanced Time Filters */
.time-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-top: 1px solid rgba(241, 245, 249, 0.8);
}

.time-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}

.time-info i {
  color: #2563eb;
}

.refresh-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #f59e0b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.refresh-btn:hover {
  transform: scale(1.1) rotate(180deg);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* Enhanced Notional Table - Mobile Responsive */
.notional-table-container {
  padding: 2rem;
}

.table-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #2563eb, #f59e0b) 1;
  position: relative;
}

.table-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.table-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  margin: 0;
}

/* PERBAIKAN UTAMA - Wrapper dengan horizontal scroll */
.notional-table-wrapper {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  overflow-x: auto; /* Tambahkan horizontal scroll */
  overflow-y: visible;
  border: 1px solid rgba(241, 245, 249, 0.8);
  /* Smooth scrolling pada mobile */
  -webkit-overflow-scrolling: touch;
}

.notional-table {
  width: 100%;
  min-width: 450px; /* Minimum width untuk mencegah kolom terlalu sempit */
  border-collapse: collapse;
  background: white;
}

.notional-table thead {
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #f59e0b 100%);
  color: white;
}

.notional-table th {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  text-align: left;
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap; /* Prevent text wrapping */
}

.notional-table td {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 600;
  transition: background 0.2s ease;
  white-space: nowrap; /* Prevent text wrapping */
}

.notional-table tbody tr:hover {
  background: linear-gradient(
    90deg,
    rgba(37, 99, 235, 0.03),
    rgba(245, 158, 11, 0.03)
  );
  transform: scale(1.005);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.notional-table .total-row {
  background: linear-gradient(
    135deg,
    rgba(224, 242, 254, 0.8),
    rgba(254, 243, 224, 0.8)
  );
  font-weight: 800;
  border-top: 2px solid;
  border-image: linear-gradient(90deg, #2563eb, #f59e0b) 1;
}

.product-icon {
  margin-right: 0.75rem;
  font-size: 1.2rem;
}

/* Enhanced Time Filters */
.time-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-top: 1px solid rgba(241, 245, 249, 0.8);
}

.time-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
}

.time-info i {
  color: #2563eb;
}

.refresh-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #f59e0b);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.refresh-btn:hover {
  transform: scale(1.1) rotate(180deg);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 768px) {
  .notional-table-container {
    padding: 1rem; /* Kurangi padding pada mobile */
  }

  .table-title {
    font-size: 1.1rem;
  }

  .notional-table {
    min-width: 400px; /* Lebih kecil untuk mobile */
  }

  .notional-table th,
  .notional-table td {
    padding: 1rem; /* Kurangi padding cell */
    font-size: 0.85rem;
  }

  .time-filters {
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 480px) {
  .notional-table-container {
    padding: 0.75rem;
  }

  .table-title {
    font-size: 1rem;
    letter-spacing: 0.3px;
  }

  .notional-table {
    min-width: 350px; /* Minimum untuk small screens */
  }

  .notional-table th,
  .notional-table td {
    padding: 0.75rem 0.5rem; /* Padding lebih kecil */
    font-size: 0.8rem;
  }

  .time-filters {
    padding: 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ===== SCROLL INDICATOR (Optional) ===== */
.notional-table-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.notional-table-wrapper:hover::after {
  opacity: 1;
}

/* Styling untuk scrollbar pada webkit browsers */
.notional-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.notional-table-wrapper::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.notional-table-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  border-radius: 4px;
}

.notional-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #1d4ed8, #d97706);
}

/* ========================================
   RIGHT SIDE: ENHANCED EXCHANGE INFO
   ======================================== */
.exchange-info-widget {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 8px 20px rgba(37, 99, 235, 0.05);
  overflow: hidden;
  width: 320px;
  height: fit-content;
  position: sticky;
  top: 30px;
}

.exchange-info-header {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  color: white;
  padding: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.exchange-info-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.header-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.exchange-info-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  flex: 1;
}

.header-decoration {
  width: 20px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #f59e0b);
  border-radius: 2px;
}

.exchange-info-content {
  max-height: none;
  overflow-y: visible;
}

.exchange-info-item {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border-bottom: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.exchange-info-item:hover {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.02),
    rgba(245, 158, 11, 0.02)
  );
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.item-left {
  flex: 1;
}

.info-code {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-family: "Monaco", "Courier New", monospace;
  display: inline-block;
  border: 1px solid rgba(241, 245, 249, 0.8);
}

.info-description {
  font-size: 0.85rem;
  color: #1e293b;
  line-height: 1.4;
  font-weight: 600;
}

.item-right {
  margin-left: 1rem;
  color: #64748b;
  transition: all 0.2s ease;
}

.exchange-info-item:hover .item-right {
  color: #2563eb;
  transform: translateX(4px);
}

.exchange-info-footer {
  padding: 1.5rem;
  border-top: 1px solid #f1f5f9;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.view-more-btn {
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #f59e0b 100%);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.view-more-btn:hover::before {
  left: 100%;
}

.view-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
}

.view-more-btn i {
  transition: transform 0.2s ease;
}

.view-more-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .exchange-info-footer {
    padding: 1rem;
    border-top: 1px solid #f1f5f9;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
    position: sticky;
    bottom: 0;
    z-index: 2;
  }
  .view-more-btn {
    font-size: 1rem;
    padding: 1rem;
    border-radius: 14px;
  }
}
/* Custom Scrollbar */
/* .exchange-info-content::-webkit-scrollbar {
  width: 6px;
}

.exchange-info-content::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.exchange-info-content::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #2563eb, #f59e0b);
  border-radius: 3px;
} */

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
  .charts-exchange-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .exchange-info-widget {
    position: static;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    order: -1;
  }
}

@media (max-width: 768px) {
  .charts-section {
    padding: 3rem 0;
  }

  .chart-tabs {
    flex-direction: column;
    border-radius: 12px;
  }

  .chart-tab {
    padding: 1rem 1.5rem;
    justify-content: center;
    border-bottom: none;
    border-right: 4px solid transparent;
  }

  .chart-tab.active {
    border-right: 4px solid #fbbf24;
    border-bottom: none;
  }

  .chart-filters {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .filter-group,
  .filter-group.full-width {
    min-width: auto;
    width: 100%;
  }

  .exchange-info-content {
    max-height: 300px;
  }

  .exchange-info-item {
    padding: 1rem;
  }
}

/* ============================
   LATEST ARTICLES SECTION
============================ */
.latest-news-area {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.modern-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
  position: relative;
}

.modern-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--jfx-balanced-gradient);
  transform: scaleX(0);
  transition: var(--transition);
}

.modern-card:hover::before {
  transform: scaleX(1);
}

.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.news-header {
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.news-grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.main-article .modern-card {
  margin-bottom: 2rem;
}

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.image-container:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.8),
    rgba(245, 158, 11, 0.6)
  ); */
  opacity: 0;
  transform: translateY(6%);
  transition: opacity 0.28s ease, transform 0.28s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-container:hover .image-overlay {
  opacity: 1;
  transform: translateY(0);
}

.read-more-btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.read-more-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.category-tag {
  background: var(--jfx-balanced-gradient);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.article-content {
  padding: 1.5rem;
}

.article-meta {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.article-meta::before {
  content: "";
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
}

.article-title {
  color: #111111;
  font-weight: 700;
  line-height: 1.3;
  transition: var(--transition);
  text-decoration: none;
  display: block;
  margin-bottom: 1rem;
}

.article-title a {
  text-align: justify;
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.22s ease, text-shadow 0.28s ease;
}

.article-title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), transparent 70%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.article-title a:hover,
.article-title a:focus-visible {
  color: var(--primary-color) !important;
  text-shadow: 0 1px 10px
    color-mix(in oklab, var(--primary-color) 45%, transparent);
}

.article-title a:hover::after,
.article-title a:focus-visible::after {
  transform: scaleX(1);
}

.article-excerpt {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Middle Articles Grid */
.middle-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.article-small .image-container {
  height: 150px;
}

.article-small .article-content {
  padding: 1rem;
}

.article-small .article-title {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* CSS UPDATE UNTUK BAGIAN NEWS HEADLINE DAN MIDDLE TANPA SIDE  */

/* Side Articles */
.side-articles .modern-card {
  padding: 1.5rem;
}

.side-article-list {
  margin-bottom: 1.5rem;
}

.side-article-item {
  display: flex;
  gap: 14px;
  padding: 0.75rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  border: 1px solid #f1f5f9;
  transition: var(--transition);
}

.side-article-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--primary-color) 30%, #e9ecef);
}

.side-article-item .image-container {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
}

.article-info {
  flex: 1;
}

.side-article-item .article-title {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.side-article-item .article-meta {
  font-size: 0.8rem;
  margin-bottom: 0;
}

.read-all-section {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.btn-article {
  --btn-bg: #ffffff;
  --btn-fg: #2563eb;
  --btn-grad: var(--jfx-balanced-gradient);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  color: var(--btn-fg);
  text-decoration: none;
  background: linear-gradient(var(--btn-bg), var(--btn-bg)) padding-box,
    var(--btn-grad) border-box;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.16);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease,
    background 0.25s ease;
}

.btn-article:hover {
  color: #fff;
  background: var(--btn-grad) padding-box, var(--btn-grad) border-box;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(59, 130, 246, 0.28);
  text-decoration: none;
}

.btn-article i {
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-article:hover i {
  transform: translateX(4px);
}

.btn-article:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(59, 130, 246, 0.2);
}

.btn-article:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18),
    0 8px 24px rgba(59, 130, 246, 0.22);
}

/* ============================
   ANIMATIONS
============================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}

.content-loading {
  opacity: 0;
  transform: translateY(20px);
}

.content-loaded {
  opacity: 1;
  transform: translateY(0);
  transition: var(--transition);
}

/* ============================
   SCROLL TO TOP BUTTON
============================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--jfx-balanced-gradient);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

/* ============================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
    min-height: 400px;
    max-height: 500px;
  }

  .hero-content {
    margin-left: 2rem;
    max-width: 90%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .container {
    padding: 0 1rem;
  }

  .price-grid,
  .tables-grid {
    grid-template-columns: 1fr;
  }

  .price-info {
    grid-template-columns: 1fr;
  }

  .chart-widget {
    margin: 0 -1rem;
  }

  .chart-tabs-compact {
    padding-left: 15px;
    flex-wrap: wrap;
  }

  .chart-tab-compact {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .chart-container-compact {
    border-radius: 0 8px 8px 8px;
  }

  .symbol-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .symbol-code {
    font-size: 1.3rem;
  }

  .symbol-value {
    font-size: 1.5rem;
  }

  .time-filters-compact {
    flex-direction: column;
    gap: 10px;
    padding: 10px 15px;
  }

  .time-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }

  .chart-display-compact {
    height: 280px;
  }

  .notional-data-grid {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 280px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .middle-articles {
    grid-template-columns: 1fr;
  }

  .hero-indicators {
    bottom: 20px;
  }

  .indicator {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .price-card,
  .table-card {
    padding: 1.5rem;
  }

  .chart-tabs-compact {
    padding-left: 10px;
  }

  .chart-tab-compact {
    font-size: 0.75rem;
    padding: 5px 8px;
    flex: 1;
    text-align: center;
  }

  .chart-symbol-info {
    padding: 12px 15px;
  }

  .chart-area-compact {
    padding: 5px 10px;
  }

  .time-btn-compact {
    padding: 3px 8px;
    font-size: 0.75rem;
  }

  .chart-display-compact {
    height: 250px;
  }

  .btn-article {
    padding: 0.475rem 0.85rem;
  }

  .news-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .news-grid {
    padding: 1.5rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .modern-card,
  .modern-card .article-title a,
  .modern-card .article-title a::after {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================
   UTILITY CLASSES
============================ */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}
.mb-2 {
  margin-bottom: 1rem;
}
.mb-3 {
  margin-bottom: 1.5rem;
}
.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}
.mt-2 {
  margin-top: 1rem;
}
.mt-3 {
  margin-top: 1.5rem;
}
.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}
.visible {
  display: block;
}

/* ============================
   LOADING STATES
============================ */
.loading {
  position: relative;
  opacity: 0.7;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 3px solid rgba(37, 99, 235, 0.3);
  border-top: 3px solid var(--jfx-blue);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.exchange-info-item .info-link {
  text-decoration: none;
  color: inherit;
}

/* =================== NEW PRODUCT RELEASE SECTION =================== */
/* =================== NEW PRODUCT RELEASE SECTION – NEWS ONLY =================== */

:root {
  --dk: #0c56a6;
  --md: #1363df;
  --lt: #1fb7f0;
  --gd: #f59e0b;
  --ink: #0f172a;
  --ink-2: #334155;
  --panel: #f8fafc;
}

.new-product-release {
  padding: 3rem 0 2.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e7eef7 100%);
  position: relative;
  overflow: hidden;
}

.npr-eyebrow {
  margin: 0 auto 1rem;
  max-width: 960px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  background: linear-gradient(90deg, var(--md) 0%, #6d7bb4 50%, var(--gd) 100%);
  box-shadow: 0 6px 22px rgba(19, 99, 223, 0.18);
}

.npr-headline {
  margin: 0 0 1rem;
  font-size: clamp(0.5rem, 0.7rem + 3vw, 1.8rem);
  line-height: 1.15;
  font-weight: 900;
  color: var(--ink);
}

/* CTA */
.npr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  background: #fff;
  color: var(--md);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(19, 99, 223, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.npr-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(19, 99, 223, 0.22);
  color: var(--md);
  text-decoration: none;
}

.npr-cta-secondary {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  padding: 0.7rem 1rem;
  font-weight: 800;
}

/* Transitions for news wrapper */
#news-wrapper {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

#news-wrapper.news-hidden {
  display: none;
}

#news-wrapper.news-revealing {
  display: block;
  opacity: 0;
  transform: translateY(50px);
}

#news-wrapper.news-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading */
.news-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  color: var(--ink-2);
}

.news-loading .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.3rem;
  border-color: var(--md);
  border-right-color: transparent;
}

.news-loading p {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

#news-wrapper.news-loaded .news-loading {
  display: none;
}

/* News grid */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem;
  margin-top: 1.25rem;
}

/* News card */
.news-card {
  background: rgba(255, 255, 255, 0.65);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(12, 86, 166, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  animation: cardReveal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.news-card:nth-child(1) {
  animation-delay: 0.1s;
}

.news-card:nth-child(2) {
  animation-delay: 0.22s;
}

.news-card:nth-child(3) {
  animation-delay: 0.34s;
}

.news-card:nth-child(4) {
  animation-delay: 0.46s;
}

.news-card:nth-child(5) {
  animation-delay: 0.58s;
}

.news-card:nth-child(6) {
  animation-delay: 0.7s;
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(36px) scale(0.92) rotateX(8deg);
  }
  60% {
    transform: translateY(-3px) scale(1.01) rotateX(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
  }
}

.news-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 34px rgba(12, 86, 166, 0.18);
}

/* Image */
.news-card-image-wrapper {
  width: 100%;
  height: 130px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
  position: relative;
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  display: block;
}

.news-card:hover .news-card-image {
  transform: scale(1.06);
  filter: brightness(1.04);
}

.news-card-image.loading {
  opacity: 0.3;
  filter: blur(5px);
}

.news-card-image.loaded {
  animation: imageReveal 0.5s ease forwards;
}

@keyframes imageReveal {
  from {
    opacity: 0;
    filter: blur(10px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

.news-card-image.error {
  opacity: 0.5;
}

/* Body */
.news-card-body {
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
  color: var(--md);
}

.news-card-summary {
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Responsive */
.new-product-release .d-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 399px) {
  .npr-headline {
    font-size: 1.35rem;
    margin-bottom: 0.85rem;
  }

  .npr-eyebrow {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.75rem;
  }

  .npr-cta {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }

  .news-card-image-wrapper {
    height: 120px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
}

@media (min-width: 400px) and (max-width: 576px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
}

@media (min-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
}
/* batas new product css */

@media (max-width: 768px) {
  .charts-exchange-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .charts-exchange-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
  }
}

.hero-title {
text-align: center;
}

.hero {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* pastikan di atas video dan overlay */
}

.hero-content {
  margin: 0 auto !important;
  text-align: center !important;
  max-width: 900px !important;
}


/* ======================timpa an untuk section news artikel  */
