body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', 'Nunito', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.7) blur(2px) grayscale(10%);
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  z-index: -1;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #fff6fa;
  box-shadow: 0 2px 12px 0 rgba(255, 182, 193, 0.15);
  margin-bottom: 1rem;
  background: #fff6fa;
  object-fit: cover;
}

h1 {
  font-size: 2rem;
  color: #ff7eb9;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  letter-spacing: 1px;
}

.intro {
  font-size: 1.1rem;
  color: #6d6d6d;
  margin: 0;
  background: rgba(255,255,255,0.6);
  padding: 0.3em 1em;
  border-radius: 1em;
  box-shadow: 0 1px 6px 0 rgba(255, 182, 193, 0.08);
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  max-width: 600px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: rgba(255,255,255,0.85);
  border-radius: 1.5em;
  box-shadow: 0 2px 12px 0 rgba(255, 182, 193, 0.10);
  padding: 0.7em 1.4em;
  font-size: 1.1rem;
  color: #ff7eb9;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.12s, box-shadow 0.12s, background 0.12s;
  border: 2px solid #fff0f6;
}

.link-card:hover {
  transform: translateY(-4px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 24px 0 rgba(255, 182, 193, 0.18);
  background: #ffe3f3;
  color: #ff4fa3;
}

.link-card span {
  margin-left: 0.2em;
}

@media (max-width: 600px) {
  .links {
    gap: 0.7rem;
    max-width: 95vw;
  }
  .link-card {
    font-size: 1rem;
    padding: 0.6em 1em;
  }
  .avatar {
    width: 72px;
    height: 72px;
  }
  h1 {
    font-size: 1.3rem;
  }
} 