/* ===================== BODY ===================== */

body {
  margin: 0;
  background: black;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

.container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  position: relative;
  z-index: 1;
  margin-top: 60px;
}

iframe{
  width:100%;
  height:100%;
  border:none;
  pointer-events:auto;
}

/* ===================== OVERLAY ===================== */

.overlay{
  position:absolute;
  bottom:80px;
  left:10px;
  z-index:5;
}

.actions{
  position:absolute;
  right:10px;
  bottom:100px;
  text-align:center;
  z-index:5;
}

.actions div{
  margin:15px 0;
  font-size:22px;
  cursor:pointer;
}

.actions div:last-child{
  color:yellow;
}

/* ===== TOPBAR & MENU HARUS PALING ATAS ===== */
.menu-btn {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 99999;
  cursor: pointer;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  background: rgba(0,0,0,0.8);
  padding: 10px;
  z-index: 99998;
}

.dropdown {
  position: fixed;
  top: 50px;
  right: 15px;
  background: #111;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  z-index: 99999;
}

.topbar button.active{
  background:#ff0050;
  color:#fff;
  font-weight:bold;
}

/* ===== VIDEO JANGAN NUTUPI UI ===== */
iframe, video {
  pointer-events: none;
}

.video-box iframe,
.video-box video {
  pointer-events: auto;
}

/* ===================== VOLUME ===================== */

.volume-control{
  position:fixed;
  top:60px;
  right:10px;
  z-index:999999;
  background:rgba(0,0,0,0.6);
  padding:6px 10px;
  border-radius:10px;
}

/* ===================== DONASI PAGE ===================== */

.donasi-page{
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  background:black;
  padding:20px;
  overflow:auto;
}

.donasi-box{
  width:100%;
  max-width:420px;
  background:#111;
  padding:30px 25px;
  border-radius:20px;
  text-align:center;
  box-shadow:0 0 25px rgba(255,255,255,0.05);
}

.donasi-box h2{
  margin-bottom:10px;
  font-size:22px;
}

.donasi-box p{
  font-size:14px;
  color:#bbb;
  line-height:1.6;
  margin-bottom:20px;
}

.qr-img{
  width:200px;
  margin:15px auto;
  background:white;
  padding:10px;
  border-radius:15px;
}

.nominal-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:20px 0;
}

.nominal-grid button{
  padding:10px;
  background:#222;
  border:none;
  color:white;
  border-radius:10px;
  cursor:pointer;
  transition:0.3s;
}

.nominal-grid button:hover{
  background:yellow;
  color:black;
  font-weight:bold;
}

.donasi-btn{
  width:100%;
  padding:14px;
  background:yellow;
  color:black;
  border:none;
  border-radius:12px;
  font-weight:bold;
  cursor:pointer;
  transition:0.3s;
}

.donasi-btn:hover{
  background:#ffd000;
  transform:scale(1.03);
}

.back-home{
  display:block;
  margin-top:20px;
  font-size:13px;
  color:#888;
  text-decoration:none;
}

.back-home:hover{
  color:white;
}

/* ===================== AI FLOAT ===================== */

.ai-float{
  position:fixed;
  left:15px;
  bottom:90px;
  width:60px;
  height:60px;
  background:#2b6cff;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  border-radius:50%;
  text-decoration:none;
  z-index:999999;
}
.topbar{
  display:flex;
  overflow-x:auto;
  gap:10px;
  padding:10px;
  background:#000;
  position:sticky;
  top:0;
  z-index:1000;
}

.cat-btn{
  background:#111;
  color:#aaa;
  border:none;
  padding:8px 15px;
  border-radius:20px;
  cursor:pointer;
  transition:0.3s;
  white-space:nowrap;
}

.cat-btn:hover{
  background:#222;
  color:#fff;
}

.cat-btn.active{
  background:#ff0050;
  color:#fff;
  font-weight:bold;
  box-shadow:0 0 10px rgba(255,0,80,0.6);
}

.topbar.trending { background:#ff004f; }
.topbar.news { background:#0066ff; }
.topbar.sports { background:#00c853; }
.topbar.music { background:#9c27b0; }
