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

body {
  background-color: #0a0a0a;
  color: #e0e0e0;
  font-family: 'Courier New', Courier, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  align-items: center;
  gap: 4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 3rem;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
}

/* Background image behind content */
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(') no-repeat center bottom;
  background-size: contain;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.avatar img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 0;
  border: 2px solid #444;
  position: relative;
  z-index: 1;
}

.title-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.title {
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.gifs {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.gifs img {
  width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.links a {
  text-decoration: none;
  color: #e0e0e0;
  transition: color 0.3s ease;
  position: relative;
}

.links a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.links a:hover {
  color: #fff;
}

.links a:hover::after {
  transform: scaleX(1);
}

iframe {
  position: absolute;
  width: 0;
  height: 0;
  border: none;
}
