
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {  
  background-color: #121212;
  color: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 15px;
  position: relative;
}


body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: radial-gradient(circle at center, #2e2e2e40 0%, transparent 70%);
  z-index: 0;
}


.wrapper {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  padding: 30px 20px;
  text-align: center;
}


.profile-img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 12px;
  background-color: #1f1f1f;
  padding: 10px;
  margin-bottom: 15px;
}



h1 {
  font-size: 22px;
  margin-bottom: 4px;
}

.username {
  color: #aaa;
  margin-bottom: 20px;
}


.card-btn {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #2c2c2c, #1f1f1f);
  border-radius: 20px;
  padding: 15px 20px;
  margin: 12px 0;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.card-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.icon-box {
  width: 48px;
  height: 48px;
  background-color: #161616;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 22px;
  color: #d4af37;
}

.text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.text-box .tag {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.text-box .label {
  font-size: 16px;
  font-weight: 500;
}

.arrow {
  color: #d4af37;
  font-size: 16px;
}


.icon-box {
  width: 48px;
  height: 48px;
  background-color: #161616;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.icon-box i {
  font-size: 22px;
  color: #d4af37;
}

.text-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.text-box .tag {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.text-box .label {
  font-size: 16px;
  font-weight: 500;
}

.arrow {
  color: #d4af37;
  font-size: 16px;
}



.btn.instagram {
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf);
}

.btn.whatsapp {
  background: #d4af37;
}


.gallery {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}


footer {
  margin-top: 40px;
  font-size: 13px;
  color: #666;
  text-align: center;
}

.footer-netpixel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-netpixel img {
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-netpixel img:hover {
  opacity: 1;
}


.logo-background {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  background-image: url('logo-hm.png'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.05;
  filter: blur(40px);
  z-index: 0;
}

.background-blur {
    top: -260px;
    width: 100%;
    opacity: .5;
    height: 520px;
    filter: blur(50px);
    position: absolute;
    will-change: filter;
    border-radius: 520px;
    background-size: cover;
    background-position: 50%;
    background-image: url(logo.png);

}

.whatsapp-plug-icon {
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  right: 120px;
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  cursor: pointer;
  background-color: #15cc74;
  transition: .3s;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('whatsplug.svg');
  background-size: 50% auto;
}

@media(max-width: 768px) {
  .whatsapp-plug-icon {
    bottom: 80px;
    right: 30px;
    width: 40px;
    height: 40px;
  }
}

.whatsapp-plug-icon:hover {
  background-color: #15cc74;
}

.whatsapp-plug-icon::after,
.whatsapp-plug-icon::before {
  content: '';
  position: absolute;
  opacity: 0;
  border: 4px solid #15cc74;
  left: -10px;
  top: -10px;
  right: -10px;
  bottom: -10px;
  -webkit-border-radius: 50%;
  animation: WaveWhatsApp 1.5s ease infinite;
}

.whatsapp-plug-icon::after {
  animation-delay: .5s;
}

.whatsapp-plug-icon:hover::after {
  border: 4px solid #15cc74;
}

.whatsapp-plug-icon:hover::before {
  border: 4px solid #15cc74;
}

@keyframes WaveWhatsApp {
  0% {
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}