body {
  background: #000;
  color: #0ff;
  font-family: 'Courier New', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  position: relative;
  margin: 0;
}


.grid-bg {
  position: absolute;
  width: 200%;
  height: 150%;
  background-image: 
    linear-gradient(#0ff2 1px, transparent 1px),
    linear-gradient(90deg, #0ff2 1px, transparent 1px);
  background-size: 40px 40px;
  top: -50%;
  left: -50%;
  z-index: 0;
  animation: moveGrid 10s linear infinite;
}

@keyframes moveGrid {
  from { transform: translate(0, 0); }
  to { transform: translate(40px, 40px); }
}


.hud-wrapper {
  position: relative;
  padding: 40px;
  z-index: 1;
}

.card {
 border: 2px solid #00ffff; 
  border-radius: 12px;
  padding: 40px;
  width: 400px;
  min-height: 400px;

 
  box-shadow: 
    0 0 10px #00ffff,
    0 0 20px #00ffff,
    0 0 40px #00ffff,
    inset 0 0 5px #00ffff;

  display: flex;
  flex-direction: column;
  gap: 25px;
  position: centre;
  padding-top:310px;
  z-index: 2;

  
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);

  align-items: center;

}


.image-wrapper {
  position: absolute;
  top: 20px;
  left:50%;
  transform: translateX(-50%);
  width: 220px; 
  height: 280px;  
  clip-path: polygon(
    20% 0%,   
    100% 0%, 
    100% 100%, 
    0% 100%, 
    0% 20%   
  );
  border: 3px solid #0ff;
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff inset;
  overflow: hidden;
  z-index: 3;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.image-scan {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: vertical-scan 3s infinite linear;
  mix-blend-mode: screen;
}

@keyframes vertical-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}


.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;     
  text-align: center;
}

.card-content h2 {
  margin: 0 0 15px;
  font-size: 26px;
  color: #fff;
  text-shadow: 0 0 12px #0ff, 0 0 25px #0ff;
}

.card-content p {
  margin: 10px 0;
  font-size: 18px;
  line-height: 1.6;
  color: #0ff;
}


.scan-line {
  position: relative;
  margin-top: 20px;
  height: 4px;
  background: #0ff;
  animation: scan 2s infinite linear;
  box-shadow: 0 0 20px #0ff;
}

@keyframes scan {
  0% { opacity: 0; transform: translateX(-100%); }
  50% { opacity: 1; transform: translateX(100%); }
  100% { opacity: 0; transform: translateX(-100%); }
}


.hud-bracket {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 3px solid #0ff;
  box-shadow: 0 0 20px #0ff;
}

.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.bio {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.5;
  color: #aaa;
  font-style: italic;
}


.social-links {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-links a {
  text-decoration: none;
  color: #0ff;
  font-weight: bold;
  font-size: 16px;
  padding: 6px 12px;
  border: 2px solid #0ff;
  border-radius: 8px;
  box-shadow: 0 0 10px #0ff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
}
