  /* ============================= */
  /* ===== 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:18px;
  }

  @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:18px;
    overflow:hidden;
    cursor:pointer;
    transition:all 0.3s ease;
    box-shadow:0 8px 30px rgba(0,0,0,0.6);
  }

  .card:hover{
    transform:translateY(-8px) scale(1.02);
    box-shadow:0 12px 40px rgba(0,0,0,0.8);
  }

  /* ✅ THUMBNAIL SERAGAM & RAPI */
  .card img{
    width:100%;
    aspect-ratio:9/16;
    object-fit:cover;
    display:block;
    transition:transform 0.4s ease;
  }

  .card:hover img{
    transform:scale(1.05);
  }

  /* Info bawah thumbnail */
  .card .info{
    padding:14px;
    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%;
    aspect-ratio:9/16;
    object-fit:cover;
    border-radius:18px;
  }

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

  .thumb:hover .play{
    transform:translate(-50%,-50%) scale(1.15);
  }

  video{
    width:100%;
    border-radius:18px;
    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:18px;
    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;
  }

  #videoTitle::after{
    content:"";
    display:block;
    width:80px;
    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:14px;
    background:#1f1f1f;
    color:white;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
    box-shadow:0 6px 20px rgba(0,0,0,0.5);
  }

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

  /* ============================= */
  /* 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 26px;
    border-radius:50px;
    font-weight:800;
    font-size:16px;
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    gap:8px;
    box-shadow:0 10px 35px rgba(0,0,0,0.5);
    z-index:9999;
    transition:all 0.3s ease;
  }

  .wa-top-btn:hover{
    transform:translateX(-50%) scale(1.08);
    box-shadow:0 15px 40px rgba(0,0,0,0.7);
  }

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

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

  /* ============================= */
/* TOP SOCIAL BUTTONS (BIG) */
/* ============================= */

.top-social{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:40px;
}

.top-btn{
  padding:18px 40px;        /* lebih besar */
  border-radius:60px;
  font-weight:900;
  font-size:20px;           /* teks lebih besar */
  text-decoration:none;
  color:white;
  transition:all 0.3s ease;
  box-shadow:0 12px 35px rgba(0,0,0,0.7);
  display:inline-flex;
  align-items:center;
  gap:12px;
  letter-spacing:0.5px;
}

.top-btn:hover{
  transform:translateY(-6px) scale(1.08);
  box-shadow:0 18px 50px rgba(0,0,0,0.9);
}

.wa{
  background:linear-gradient(135deg,#25D366,#128C7E);
}

.tg{
  background:linear-gradient(135deg,#0088cc,#005f99);
}

/* Mobile biar tetap enak */
@media (max-width:480px){
  .top-btn{
    padding:14px 24px;
    font-size:16px;
  }
}