@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Orbitron:wght@500;800;900&display=swap');

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

body {
  font-family: 'Fira Code', monospace;
  background-color: #05050a;
  color: #a0aec0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.card {
  background-color: #0d0e15;
  max-width: 380px;
  width: 100%;
  padding: 40px 25px;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.35);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
  transform: translateY(-2px);
}

header .avatar-glow {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
}

header .avatar-glow::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(45deg, #00f0ff, #ff007f);
  z-index: 1;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.6);
}

header img {
  width: 105px;
  height: 105px;
  border-radius: 50%;
  border: 3px solid #0d0e15;
  position: relative;
  z-index: 2;
  object-fit: cover;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
  margin-bottom: 5px;
}

main {
  margin-top: 10px;
  margin-bottom: 30px;
}

main h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: #ff007f;
  letter-spacing: 2px;
  text-shadow: 0 0 5px rgba(255, 0, 127, 0.4);
  margin-bottom: 15px;
}

main p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #94a3b8;
}

main .highlight {
  color: #00f0ff;
  font-weight: 700;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.4);
}

main strong {
  color: #ffffff;
  font-weight: 700;
  border-bottom: 1px dashed #ff007f;
}

main em {
  font-style: normal;
  color: #facc15;
}

section h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #475569;
  margin-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 8px;
}

/* HORIZONTAL SOCIAL BUTTONS */
section ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

section ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #00f0ff;
  background-color: #0a0b10;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  border: 1px solid #1e293b;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
}

section ul li a:hover {
  color: #ffffff;
  background-color: #ff007f;
  border-color: #ff007f;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.7);
  transform: translateY(-2px);
  text-shadow: 0 0 5px #ffffff;
}

footer {
  margin-top: 35px;
  font-size: 0.7rem;
  color: #475569;
  letter-spacing: 1px;
}
