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

body {
  font-family: 'Unbounded', sans-serif;
  min-height: 100vh;
  color: #fff;
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #050008, #120014, #1a001f);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    url('images/bg1.png') center / cover no-repeat;
  opacity: 0.25;
  z-index: -1;
}

.container {
  width: 100%;
  text-align: center;
}

.content-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem 1rem;
}

/* === Avatar === */
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

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

/* === Title === */
h1 {
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 700;
}

/* === Subtitle === */
.subtitle {
  font-size: 0.95rem;
  opacity: 0.7;
}

/* === Social Icons === */
.social-icons {
  display: flex;
  gap: 1.3rem;
  margin: 1.2rem 0 1.8rem;
}

.social-icons a {
  font-size: 1.25rem;
  color: white;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 1;
}

/* === Link Cards === */
.link-list {
  width: min(420px, 90vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-card {
  padding: 1rem 1.3rem;
  border-radius: 18px;
  text-decoration: none;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, background 0.25s ease;
}

.link-card span {
  font-size: 0.75rem;
  opacity: 0.6;
}

.link-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

/* === Disclaimer === */
.disclaimer {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.55rem;
  opacity: 0.25;
}

/* === Fade-in === */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
