.container,
body {
  position: relative;
}
.links,
.links a,
body {
  display: flex;
}
body {
  font-family: Arial, sans-serif;
  background: url("https://raw.githubusercontent.com/MrBroowc/mail/refs/heads/main/assets/img/viviana-background.jpg")
    center center/cover no-repeat fixed;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.507);
  backdrop-filter: blur(3px);
  z-index: 1;
}
.container,
.links a {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.container {
  z-index: 2;
  border-radius: 20px;
  padding: 40px;
  width: 350px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.profile {
  margin-bottom: 25px;
}
.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
}

.profile-image-container {
  position: relative;
  display: inline-block;
}

.decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  pointer-events: none;
  transition: transform 0.3s ease;
}

.profile-image-container:hover .decoration {
  transform: translate(-50%, -50%) scale(1.05);
}
@keyframes fire {
  0% {
    text-shadow: 
      0 -0.05em 0.3em #FFF,
      0.01em -0.02em 0.25em #FE0,
      0.01em -0.05em 0.25em #FC0,
      0.02em -0.15em 0.35em #F90,
      0.04em -0.20em 0.45em #F70,
      0.05em -0.25em 0.55em #F70,
      0.06em -0.2em 1.2em #F50,
      0.1em -0.1em 1.5em #F40,
      0 0 2em #F30;
    transform: scale(1) rotate(-1deg);
    filter: blur(0.007em);
  }
  25% {
    text-shadow: 
      0 -0.02em 0.4em #FFF,
      0.02em -0.04em 0.3em #FE0,
      0.02em -0.08em 0.3em #FC0,
      0.03em -0.16em 0.4em #F90,
      0.05em -0.22em 0.5em #F70,
      0.06em -0.27em 0.6em #F70,
      0.07em -0.22em 1.3em #F50,
      0.12em -0.12em 1.6em #F40,
      0 0 2.5em #F30;
    transform: scale(1.02) rotate(1deg);
    filter: blur(0.01em);
  }
  50% {
    text-shadow: 
      0 -0.06em 0.35em #FFF,
      0.01em -0.03em 0.3em #FE0,
      0.01em -0.06em 0.3em #FC0,
      0.02em -0.14em 0.4em #F90,
      0.04em -0.21em 0.5em #F70,
      0.05em -0.26em 0.6em #F70,
      0.06em -0.21em 1.4em #F50,
      0.1em -0.11em 1.7em #F40,
      0 0 2.2em #F30;
    transform: scale(0.98) rotate(-1deg);
    filter: blur(0.005em);
  }
  75% {
    text-shadow: 
      0 -0.03em 0.45em #FFF,
      0.02em -0.05em 0.35em #FE0,
      0.02em -0.07em 0.35em #FC0,
      0.03em -0.17em 0.45em #F90,
      0.05em -0.23em 0.55em #F70,
      0.06em -0.28em 0.65em #F70,
      0.07em -0.23em 1.5em #F50,
      0.12em -0.13em 1.8em #F40,
      0 0 2.7em #F30;
    transform: scale(1.02) rotate(1deg);
    filter: blur(0.01em);
  }
  100% {
    text-shadow: 
      0 -0.05em 0.3em #FFF,
      0.01em -0.02em 0.25em #FE0,
      0.01em -0.05em 0.25em #FC0,
      0.02em -0.15em 0.35em #F90,
      0.04em -0.20em 0.45em #F70,
      0.05em -0.25em 0.55em #F70,
      0.06em -0.2em 1.2em #F50,
      0.1em -0.1em 1.5em #F40,
      0 0 2em #F30;
    transform: scale(1) rotate(-1deg);
    filter: blur(0.007em);
  }
}

#profileName {
  margin: 15px 0;
  font-size: 26px;
  color: #000000;
  animation: fire 3s infinite;
  font-weight: bold;
  letter-spacing: 2px;
  filter: brightness(1.6) contrast(1.4) saturate(1.2);
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(255, 69, 0, 0.4);
  position: relative;
  z-index: 1;
  text-shadow: 
    0 0 10px rgba(255, 69, 0, 0.8),
    0 0 20px rgba(255, 165, 0, 0.8),
    0 0 30px rgba(255, 69, 0, 0.6);
}
#profileBio,
.links a {
  color: #333;
  text-shadow: 0px 0px 5px rgb(255, 255, 255);
  font-weight: 700;
}
#profileBio {
  font-size: 15px;
  margin-bottom: 20px;
}
.links {
  flex-direction: column;
  align-items: center;
}
.links a {
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  margin: 10px 0;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 80%;
  max-width: 300px;
}
.links a i {
  margin-right: 10px;
  font-size: 18px;
  animation: 2s infinite icon-bounce;
}
@keyframes icon-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.footer {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 12px;
}
@media (max-width: 550px) {
  .container {
    width: 100%;
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    border-radius: 0%;
  }
  .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  h1 {
    font-size: 22px;
  }
  .links {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .links a,
  p {
    font-size: 14px;
  }
  .links a {
    padding: 10px;
    width: 90%;
  }
}
