*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:"Inter",system-ui,sans-serif;
}

:root{
  --bg:#020617;
  --card:#0b0b14;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --neon:#38bdf8;
  --neon2:#6366f1;
}

body{
  background:radial-gradient(circle at top,#0f172a,#020617);
  color:var(--text);
}

.container{
  max-width:1000px;
  margin:auto;
  padding:0 18px;
}

.top-bar{padding:18px 0;}
.back-link{color:var(--neon);text-decoration:none;font-weight:600;}

.page-header{margin-bottom:60px;}
.page-header h1{font-size:34px;font-weight:800;margin-bottom:12px;}
.page-header p{color:var(--muted);max-width:700px;}

.image-section{
  display:grid;
  gap:32px;
  margin-bottom:90px;
}

.image-desc h2{font-size:20px;font-weight:800;margin-bottom:10px;}
.image-desc p{font-size:14px;color:var(--muted);margin-bottom:14px;}

.external-link{color:var(--neon);font-weight:600;text-decoration:none;}

.carousel-wrapper{
  position:relative;
  overflow:hidden;
  padding:26px;
  border-radius:26px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:32px 32px;
  box-shadow:0 40px 90px rgba(0,0,0,.9);
}

.carousel-track{
  display:flex;
  gap:18px;
  transition:.6s cubic-bezier(.16,1,.3,1);
}

.carousel-item{
  min-width:100%;
  background:#05050a;
  padding:6px;
  border-radius:18px;
  cursor:pointer;
  box-shadow:0 20px 50px rgba(0,0,0,.8);
}

.carousel-item img{
  width:100%;
  border-radius:14px;
}

.carousel-btn{
  position:absolute;
  top:45%;
  background:linear-gradient(135deg,var(--neon),var(--neon2));
  color:#000;
  border:none;
  padding:6px 12px;
  border-radius:50%;
  cursor:pointer;
}

/* VIDEO */
.video-wrapper{position:relative;cursor:pointer;}
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:42px;
  background:rgba(0,0,0,.6);
  color:#fff;
  width:70px;
  height:70px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 25px rgba(56,189,248,.8);
}

/* VIDEO MODAL */
.video-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.95);
  z-index:9999;
  justify-content:center;
  align-items:center;
}

.video-modal.show{display:flex;}
.video-modal video{
  width:90%;
  max-width:900px;
  border-radius:14px;
}

.close-video{
  position:absolute;
  top:20px;
  right:26px;
  font-size:34px;
  color:#fff;
  cursor:pointer;
}

/* CTA */
.cta-box{
  background:linear-gradient(135deg,var(--neon),var(--neon2));
  padding:46px;
  border-radius:26px;
  text-align:center;
  color:#000;
}

.cta-btn{
  display:inline-block;
  background:#020617;
  color:#fff;
  padding:12px 26px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
}

/* RESPONSIVE */
@media(min-width:900px){
  .image-section{
    grid-template-columns:1.2fr 1fr;
    align-items:center;
  }
  .carousel-item{
    min-width:calc(100%/3 - 12px);
  }
}
@media(max-width:900px){
  .carousel-item{
    min-width:calc(100%/2 - 10px);
  }
}
@media(max-width:600px){
  .carousel-item{min-width:100%;}
}

/* IMAGE FULLSCREEN MODAL */

.img-modal{
  display:none;
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.95);
  z-index:999999; /* DIPAKSA PALING ATAS */

  justify-content:center;
  align-items:center;
}

.img-modal.show{
  display:flex;
}

.img-modal img{
  max-width:95%;
  max-height:95%;
  border-radius:14px;
  animation:zoomIn .3s ease;

  box-shadow:
    0 0 40px rgba(56,189,248,.6),
    0 0 80px rgba(99,102,241,.5);
}

.close-img{
  position:absolute;
  top:20px;
  right:26px;
  font-size:36px;
  color:#fff;
  cursor:pointer;
}

@keyframes zoomIn{
  from{transform:scale(.8);opacity:0}
  to{transform:scale(1);opacity:1}
}
