/* ============================= */
/* ===== BASE ===== */
/* ============================= */
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:#0b0b0b;
  color:white;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:16px;
  padding-top:100px;
  box-sizing:border-box;
}

.hidden{
  display:none;
}

/* ============================= */
/* ===== HEADER TITLE ===== */
/* ============================= */
.page-title{
  text-align:center;
  font-size:28px;
  font-weight:900;
  margin-bottom:6px;
  letter-spacing:1px;
}

.sub-title{
  text-align:center;
  font-size:14px;
  color:#aaa;
  margin-bottom:22px;
  letter-spacing:1px;
}

.glow-title{
  color:#ffd166;
  text-shadow:
    0 0 8px #ffb703,
    0 0 18px rgba(255,183,3,0.6);
}

/* ============================= */
/* ===== BACK BUTTON ===== */
/* ============================= */
.back{
  display:inline-block;
  margin-bottom:20px;
  background:#1a1a1a;
  padding:10px 16px;
  border-radius:10px;
  color:white;
  text-decoration:none;
  font-size:14px;
  transition:0.25s;
}

.back:hover{
  background:#2a2a2a;
  transform:translateY(-2px);
}

/* ============================= */
/* ===== GRID ===== */
/* ============================= */
.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

@media (min-width:700px){
  .grid{
    grid-template-columns:repeat(4,1fr);
  }
}

@media (min-width:1100px){
  .grid{
    grid-template-columns:repeat(5,1fr);
  }
}

/* ============================= */
/* ===== CARD ===== */
/* ============================= */
.card{
  background:#151515;
  border-radius:16px;
  overflow:hidden;
  cursor:pointer;
  transition:0.25s ease;
  box-shadow:0 6px 25px rgba(0,0,0,0.5);
}

.card:hover{
  transform:translateY(-6px);
}

.card img{
  width:100%;
  aspect-ratio:9/16;
  object-fit:cover;
  display:block;
}

.card .info{
  padding:12px;
  font-size:14px;
  font-weight:700;
  line-height:1.4;
}

/* ============================= */
/* ===== PLAYER ===== */
/* ============================= */
.player{
  max-width:850px;
  margin:0 auto;
}

.thumb{
  position:relative;
  cursor:pointer;
}

.thumb img{
  width:100%;
  border-radius:16px;
}

.play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  font-size:70px;
  opacity:0.95;
}

video{
  width:100%;
  border-radius:16px;
  background:black;
}

/* ============================= */
/* 🎬 PREMIUM VIDEO TITLE */
/* ============================= */
#videoTitle{
  position:relative;
  font-size:26px;
  font-weight:900;
  text-align:center;
  margin:30px auto 20px auto;
  padding:18px 24px;
  max-width:900px;
  line-height:1.5;
  letter-spacing:0.5px;

  background:linear-gradient(145deg,#111,#1c1c1c);
  border-radius:16px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.05);

  color:#ffffff;
  word-wrap:break-word;
  overflow-wrap:break-word;
}

/* Garis aksen bawah */
#videoTitle::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  margin:14px auto 0 auto;
  border-radius:6px;
  background:linear-gradient(90deg,#ffb703,#fb8500);
}

/* Responsive */
@media (max-width:480px){
  #videoTitle{
    font-size:20px;
    padding:16px;
  }
}

/* ============================= */
/* ===== NAV BUTTON ===== */
/* ============================= */
.nav{
  margin-top:20px;
  text-align:center;
}

button{
  padding:11px 20px;
  margin:6px;
  border:none;
  border-radius:12px;
  background:#1f1f1f;
  color:white;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  transition:0.25s;
  box-shadow:0 4px 15px rgba(0,0,0,0.5);
}

button:hover{
  background:#2f2f2f;
  transform:translateY(-3px);
}

/* ============================= */
/* WHATSAPP TOP BUTTON */
/* ============================= */
.wa-top-btn{
  position:fixed;
  top:15px;
  left:50%;
  transform:translateX(-50%);
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:white;
  padding:12px 24px;
  border-radius:50px;
  font-weight:800;
  font-size:16px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow:0 10px 30px rgba(0,0,0,0.4);
  z-index:9999;
  transition:all 0.3s ease;
}

.wa-top-btn:hover{
  transform:translateX(-50%) scale(1.06);
  box-shadow:0 12px 35px rgba(0,0,0,0.6);
}

.wa-icon{
  font-size:18px;
}

@media (max-width:480px){
  .wa-top-btn{
    font-size:14px;
    padding:10px 18px;
  }
}