* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
  background: #000;
  overflow: hidden;
  color: #fff;
}

video {
  position: absolute;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s linear;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.top {
  position: absolute;
  top: 15px;
  left: 15px;
}

.live {
  color: red;
  font-weight: bold;
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0.3; }
}

.stats {
  font-size: 14px;
}

.watch {
  font-size: 13px;
}

.chat-box {
  position: absolute;
  left: 10px;
  bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat {
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 13px;
}

/* BUTTONS */
.buttons {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  max-width: 320px;
  z-index: 10;
}

.btn {
  display: block;
  padding: 14px;
  margin: 10px 0;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.2s;
}

/* WARNA KHAS */
.wa {
  background: #25D366;
}

.telegram {
  background: #0088cc;
}

.snap {
  background: #FFFC00;
  color: #000;
}

.tiktok {
  background: #000;
  border: 1px solid #fff;
}

/* HOVER + GLOW */
.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

/* CLICK EFFECT */
.btn:active {
  transform: scale(0.92);
  animation: shake 0.2s;
}

@keyframes shake {
  0%   { transform: translateX(0); }
  25%  { transform: translateX(-2px); }
  50%  { transform: translateX(2px); }
  75%  { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

/* EMOJI */
.emoji {
  position: absolute;
  bottom: 0;
  font-size: 22px;
  animation: rise 4s linear forwards;
}

@keyframes rise {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(-700px); opacity: 0; }
}

/* GIFT */
.gift {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  animation: giftUp 3s linear forwards;
}

@keyframes giftUp {
  0%   { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, -400px); opacity: 0; }
}

/* NOTIF */
.notif {
  position: absolute;
  top: 70px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 12px;
}