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

body {
  background: #041327;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding: 20px;
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 70%
    ),
    radial-gradient(circle at 50% 50%, rgba(8, 32, 64, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.container {
  max-width: 450px;
  width: 100%;
  background: rgba(6, 22, 45, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
}

.decorative-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.corner-tl {
  top: 20px;
  left: 20px;
  border-right: none;
  border-bottom: none;
}

.corner-br {
  bottom: 20px;
  right: 20px;
  border-left: none;
  border-top: none;
}

.profile {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.profile::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
}

.profile-img-container {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.profile-img-container::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  z-index: -1;
}

.name {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: 1px;
}

.title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 300;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: "Montserrat", sans-serif;
  position: relative;
  overflow: hidden;
}

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

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

.link:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.1);
}

.link i {
  font-size: 20px;
  margin-right: 20px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.link:hover i {
  color: rgba(255, 255, 255, 0.8);
}

.link span {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .container {
    padding: 30px;
  }

  .profile-img-container {
    width: 140px;
    height: 140px;
  }

  .name {
    font-size: 28px;
  }
}
