/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Background Video */
.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.35);
}

/* Kontainer Utama */
.container {
  text-align: center;
  color: white;
  width: 90%;
  max-width: 420px;
  padding: 20px;
  backdrop-filter: blur(5px);
}

/* Profile */
.profile img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 10px;
}

.profile h2 {
  font-size: 26px;
  margin-bottom: 5px;
}

.profile p {
  font-size: 14px;
  opacity: 0.9;
}

.love {
  display: inline-block;
  font-size: 22px;
  margin-top: 8px;
}

/* Link Button */
.links {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  padding: 12px 14px;
  font-size: 17px;
  font-weight: bold;
  border-radius: 8px;
  transition: 0.2s;
}

/* Warna Khusus */
.whatsapp { background: #25d366; }
.discord { background: #5865f2; }
.tiktok { background: #000; }
.instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); }
.shop { background: #0ea5e9; }

/* Hover Efek */
.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
