
/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  cursor: default;
  text-align: center;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.container {
  width: 90%;
  max-width: 450px;
  position: relative;
  z-index: 2;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 2px solid white;
  transition: transform 0.3s ease;
}
.profile-pic:hover {
  transform: scale(1.05);
}

.name {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
}

.description {
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #ccc;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 15px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
  backdrop-filter: blur(8px);
}
.link-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

.footer {
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}

.button-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.button-group {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.icon-button {
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
  background: none;
  color: white;
}
.icon-button i {
  font-size: 24px;
}
.icon-button:hover {
  transform: scale(1.1);
  color: #ddd;
}
.icon-button:active {
  transform: scale(0.95);
}

/* Ripple effect on tap */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: ripple 0.6s linear;
  pointer-events: none;
  transform: scale(0);
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
