:root {
  --primary-color: #0070f3;
  --secondary-color: #6d28d9;
  --background: #0f1116;
  --card-bg: rgba(30, 30, 40, 0.5);
  --text-color: #ffffff;
  --text-muted: #a0aec0;
  --accent-color: #00f2fe;
  --border-radius: 1rem;
  --shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.7);
  --transition: all 0.3s ease;
}

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

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: linear-gradient(135deg, var(--background) 0%, #16151f 100%);
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile {
  text-align: center;
  margin-bottom: 2.5rem;
}

.greeting {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(0, 242, 254, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--accent-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.bio {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 90%;
  margin: 0 auto 1rem;
}

.links {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.link-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
  /* width: 70%; */
}

.link-text {
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
}

.link-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-align: center;
}

.link-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.link-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.link-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.link-card:hover::before {
  transform: translateX(100%);
}

.link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 2rem;
  height: 2rem; */
  color: var(--accent-color);
}

footer {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.social-icon {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.social-icon:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

.copyright {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  h1 {
    font-size: 1.7rem;
  }

  .tagline {
    font-size: 0.9rem;
  }

  .bio {
    font-size: 0.9rem;
  }

  .link-card {
    padding: 0.9rem 1.2rem;
  }

  .link-text {
    font-size: 0.9rem;
  }

  .link-description {
    font-size: 0.9rem;
  }
}
