* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0a;
  color: #cfcfe7;
  font-family: 'JetBrains Mono', monospace;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.card {
  display: flex;
  flex-direction: row;
  max-width: 800px;
  margin: 5rem auto;
  padding: 2rem;
  background: rgba(25, 25, 40, 0.85);
  border-radius: 12px;
  border: 1px solid #2a2a3f;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(150, 150, 255, 0.1);
}

.avatar {
  width: 200px;
  height: auto;
  border-radius: 10px;
  border: 2px solid #444;
  box-shadow: 0 0 10px rgba(200, 200, 255, 0.2);
}

.info {
  margin-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info h1 {
  font-size: 2rem;
  color: #aabaff;
  margin-bottom: 0.5rem;
}

.info p {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 1rem;
}

.links {
  list-style: none;
  padding-left: 0;
}

.links li {
  margin-bottom: 0.4rem;
}

.links a {
  color: #9cd7ff;
  text-decoration: none;
  transition: 0.2s ease;
}

.links a:hover {
  color: #fff;
  text-shadow: 0 0 5px #a3dfff;
}

footer {
  text-align: center;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #777;
}

/* Background effects */
.stars {
  background: url('assets/stars.png') repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  animation: starsMove 200s linear infinite;
  opacity: 0.05;
  z-index: -2;
}

@keyframes starsMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50%, -50%); }
}

.rain {
  background: url('assets/rain.png') repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  animation: rainFall 12s linear infinite;
  z-index: -1;
}

@keyframes rainFall {
  0% { background-position: 0 0; }
  100% { background-position: 0 1000px; }
}
.cursor-star {
  position: fixed;
  width: 6px;
  height: 6px;
  background: #b07aff;
  border-radius: 50%;
  box-shadow: 0 0 8px #d8aaff, 0 0 14px #9e5bff;
  pointer-events: none;
  z-index: 9999;
  animation: fadeOut 1s ease-out forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

