* {
  box-sizing: border-box;
  font-family: 'main';
}

body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at top, #121212 0%, #050505 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  font-size: 18px;
}

#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  width: 460px;
  padding: 44px 50px;
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(18px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.8);
  text-align: center;
  animation: fadeUp 1s ease forwards;
}

.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.01),
    rgba(255,255,255,0.06)
  );
  filter: blur(20px);
  opacity: 0.5;
  z-index: -1;
}

.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.profile img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.08);
}

.profile h1 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.bio {
  font-size: 1.2rem;
  color: #bdbdbd;
  margin: 18px 0 32px;
  line-height: 1.7;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.socials a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.socials a:hover {
  transform: translateY(-6px);
  background: rgba(30, 30, 30, 1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 12px 30px rgba(0, 0, 0, 0.7);
}

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

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.footer {
  position: fixed;
  bottom: 16px;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
  pointer-events: auto;
}

.footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer a:hover {
  color: rgba(255, 255, 255, 0.85);
}

@font-face {
  font-family: 'main';
  src: url(/Minecraft.ttf);
}
