:root {
  --text-color: rgba(255, 240, 245, 0.95);
  --icon-color: rgba(255, 220, 230, 0.85);
  --bg-mask-color: rgba(20, 15, 35, 0.55);
}

html, body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
  background: url('/images/mzk.jpg') no-repeat center center fixed !important;
  background-size: cover !important;
  background-color: var(--bg-mask-color) !important;
  background-blend-mode: overlay !important;
  animation: none !important;
  transition: none !important;
  color: var(--text-color);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,230,0.15) 0%, rgba(255,255,255,0) 70%);
  animation: float 20s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-1200px) rotate(360deg);
    opacity: 0;
  }
}

.container {
  position: relative !important;
  z-index: 10 !important;
  max-width: 42rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.link-card,
.rounded-lg,
footer,
.profile-pic-container {
  position: relative !important;
  z-index: 15 !important;
}

.profile-pic-container {
  display: inline-block;
  position: relative;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 200, 220, 0.6);
}

.profile-pic-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(0.6px);
  z-index: 2;
}

.link-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  border: 1px solid rgba(255, 200, 220, 0.25);
  transition: all 0.2s ease;
}

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

.icon {
  color: var(--icon-color);
}

.rounded-lg {
  background: rgba(30, 10, 40, 0.5) !important;
  backdrop-filter: blur(8px) !important;
  border-left: 3px solid rgba(255, 220, 230, 0.8) !important;
  border-radius: 12px !important;
}

.social-icons a {
  color: var(--icon-color);
  transition: all 0.2s ease;
}

.social-icons a:hover {
  color: rgba(255, 240, 245, 1);
  transform: scale(1.1);
}

footer a {
  color: #f4b1cf;
  font-weight: bold;
  transition: all 0.2s ease;
}

footer a:hover {
  color: rgba(255, 220, 230, 1);
}