:root {
  --bg-color: #031a1a;
  --gradient-color: #0f7f81;
  --text-color: rgba(255, 255, 255, 0.85);
  --icon-color: rgba(255, 255, 255, 0.7);
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at 50% 150%, var(--gradient-color) -100%, transparent 80%);
  background-attachment: fixed;
  height: 100%;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.4);
}

.link-card {
  background: rgba(25, 240, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.link-card:hover {
  transform: translateY(-5px);
  background: rgba(0, 245, 255, 0.15);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon {
  color: var(--icon-color);
  transition: all 0.3s ease;
}

.link-card:hover .icon {
  transform: scale(1.1);
  color: rgba(255, 255, 255, 0.9);
}

.info-box {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border-left: 3px solid var(--icon-color);
}

.social-icons a {
  transition: all 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
}

#no_vpn {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 30%;
  border-radius: 10%;
}
