/* Reset default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

body {
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0f1f 50%, #0f0a14 100%);
  background-attachment: fixed;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  cursor: default;
  text-align: center;
  padding: 20px 0 20px 0;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(139, 69, 139, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(199, 21, 133, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

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

.profile-pic {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid rgba(255, 105, 180, 0.5);
  box-shadow: 0 0 30px rgba(255, 105, 180, 0.3),
              0 0 60px rgba(139, 69, 139, 0.2),
              inset 0 0 20px rgba(255, 105, 180, 0.1);
  transition: all 0.4s ease;
}

.profile-pic:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 105, 180, 0.5),
              0 0 80px rgba(139, 69, 139, 0.3),
              inset 0 0 30px rgba(255, 105, 180, 0.2);
  border-color: rgba(255, 105, 180, 0.8);
}

.name {
  font-size: 32px;
  font-weight: 700;
  margin: 15px 0;
  background: linear-gradient(135deg, #ff69b4 0%, #da70d6 50%, #ba55d3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  text-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.description {
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 1.7;
  color: #e0d0e0;
  font-weight: 300;
  letter-spacing: 0.3px;
}

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

.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(139, 69, 139, 0.2) 0%, rgba(199, 21, 133, 0.2) 100%);
  backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 18px 20px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 500;
  border: 1px solid rgba(255, 105, 180, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.link-button:hover::before {
  left: 100%;
}

.link-button:hover {
  background: linear-gradient(135deg, rgba(139, 69, 139, 0.35) 0%, rgba(199, 21, 133, 0.35) 100%);
  transform: translateY(-2px);
  border-color: rgba(255, 105, 180, 0.6);
  box-shadow: 0 6px 25px rgba(255, 105, 180, 0.4),
              0 0 30px rgba(139, 69, 139, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.link-button:active {
  transform: translateY(0);
}

.link-button i {
  font-size: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 105, 180, 0.5));
}

.footer {
  margin-top: 45px;
  font-size: 14px;
  color: #b8a0b8;
  font-weight: 300;
}

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

.button-group {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.icon-button {
  border: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(139, 69, 139, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #ffffff;
  border: 1px solid rgba(255, 105, 180, 0.2);
}

.icon-button i {
  font-size: 22px;
  transition: all 0.3s ease;
}

.icon-button:hover {
  transform: scale(1.15) translateY(-2px);
  background: rgba(139, 69, 139, 0.3);
  border-color: rgba(255, 105, 180, 0.5);
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
  color: #ff69b4;
}

.icon-button:hover i {
  filter: drop-shadow(0 0 8px rgba(255, 105, 180, 0.8));
}

.icon-button:active {
  transform: scale(1.05) translateY(0);
}

.link-button-text {
  font-size: 14px;
  color: #d0b0d0;
  opacity: 0.9;
}

.copyright {
  margin-top: 20px;
  font-size: 12px;
  color: #9a7a9a;
  font-weight: 300;
}