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

body {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.2px;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.bg::before,
.bg::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.02) 40px,
    rgba(255,255,255,0.02) 80px
  );
}

.bg::before {
  top: -50%;
  animation: wave1 25s linear infinite;
  opacity: 0.6;
}

.bg::after {
  top: -30%;
  animation: wave2 18s linear infinite reverse;
  opacity: 0.4;
}

@keyframes wave1 {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  100% { transform: translateX(-50%) translateY(30px) rotate(3deg); }
}

@keyframes wave2 {
  0% { transform: translateX(0) translateY(0) rotate(0deg); }
  100% { transform: translateX(-40%) translateY(50px) rotate(-2deg); }
}

.card {
  background: rgba(20, 20, 20, 0.6);
  padding: 28px;
  border-radius: 22px;
  width: 90%;
  max-width: 340px;
  text-align: center;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.06);
  animation: fade 1s ease, glow 4s ease-in-out infinite;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-3px);
}

@keyframes glow {
  0%,100% {
    box-shadow:
      0 0 30px rgba(0,0,0,0.7),
      0 0 5px rgba(255,255,255,0.05);
  }
  50% {
    box-shadow:
      0 0 40px rgba(0,0,0,0.8),
      0 0 20px rgba(255,255,255,0.15);
  }
}

.pfp {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid rgba(255,255,255,0.25);
  transition: 0.4s;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.pfp:hover {
  transform: scale(1.08);
  border-color: rgba(255,255,255,0.6);
  box-shadow: 0 0 30px rgba(255,255,255,0.15);
}

h1 {
  margin: 10px 0 14px;
  font-weight: 600;
  font-size: clamp(20px, 5vw, 26px);
  letter-spacing: 0.4px;
}

p {
  font-size: clamp(13px, 3.5vw, 14.5px);
  line-height: 1.7;
  opacity: 0.85;
  letter-spacing: 0.2px;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  cursor: pointer;
  transition: 0.5s;
}

#overlay h1 {
  opacity: 0.7;
  font-weight: 400;
  transition: 0.3s;
}

#overlay:hover h1 {
  opacity: 1;
  transform: scale(1.05);
}

#secretMsg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: rgba(10,10,10,0.95);
  padding: 20px 35px;
  border-radius: 12px;
  font-size: 19px;
  display: none;
  opacity: 0;
  transition: all 0.4s;
  letter-spacing: 0.4px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 30px rgba(0,0,0,0.8);
}
