:root{
  --primary:#6366f1;
  --secondary:#8b5cf6;
  --bg:#f5f7ff;
}

*{box-sizing:border-box;font-family:'Inter',sans-serif}

body{
  margin:0;
  background:var(--bg);
  color:#111827;
}

/* ===== NAVBAR ===== */
.navbar{
  height:64px;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(135deg,#6d7cf2,#7c5cf4);
  color:white;
  position:relative;
}

.brand h2{
  margin:0;
  font-size:20px;
  font-weight:800;
}
.brand span{
  font-size:12px;
  opacity:.85;
}

/* avatar */
.profile{
  position:relative;
}
.avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  background:white;
  color:#6d7cf2;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  cursor:pointer;
}
.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}

/* dropdown */
.dropdown{
  position:absolute;
  right:0;
  top:52px;
  width:180px;
  background:white;
  border-radius:14px;
  box-shadow:0 25px 50px rgba(0,0,0,.15);
  overflow:hidden;
  display:none;
}

.dropdown a{
  display:block;
  padding:14px 16px;
  font-size:14px;
  text-decoration:none;
  color:#111827;
}
.dropdown a:hover{
  background:#f3f4f6;
}

/* ===== HERO ===== */
.container{
  max-width:1200px;
  margin:auto;
  padding:28px;
}

.hero{
  margin-top:20px;
  background:linear-gradient(135deg,#6d7cf2,#7c5cf4);
  border-radius:28px;
  padding:42px;
  color:white;
  box-shadow:0 35px 80px rgba(0,0,0,.25);
}

.hero h1{
  margin:0;
  font-size:34px;
  font-weight:800;
}

.hero p{
  margin:12px 0 20px;
  opacity:.9;
}

.status{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.2);
  padding:8px 16px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
}

/* ===== VIDEO ===== */
.section{
  margin-top:40px;
}

.section h3{
  margin:0 0 6px;
  font-size:20px;
}

.section p{
  margin:0;
  color:#6b7280;
  font-size:14px;
}

.grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:22px;
}

.card iframe{
  width:100%;
  height:220px;
  border-radius:16px;
  background:#eee;
}

iframe{
  width:100%;
  height:180px;
  border-radius:14px;
}

.card h4{
  margin:14px 0 6px;
}

.download{
  display:inline-block;
  margin-top:10px;
  background:var(--primary);
  color:white;
  padding:10px 16px;
  border-radius:999px;
  font-size:13px;
  text-decoration:none;
}
.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg,#f59e0b,#f97316);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.subscribe-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 35px rgba(0,0,0,.2);
}

/* ===== VIP LOCK ===== */
.locked {
  opacity: 0.4;
  pointer-events: none;
  filter: blur(1px);
}

/* Thumbnail wrapper */
.thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}

/* Image di dalam thumbnail */
.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge (VIP / FREE) */
.card .badge {
  display: inline-block;
  margin: 8px 0;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffb347, #ffcc33);
  color: #000;
}



