:root {
  --bg: #000000;
  --card: rgba(30, 30, 46, 0.7);
  --text: #ffffff;
  --accent: #000000;
  --muted: #ffffff;
  --blob: linear-gradient(135deg, #ffffff, #5c5c5c);
}

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

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
  position: relative;
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  background: var(--blob);
  filter: blur(150px);
  border-radius: 50%;
  animation: float 12s ease-in-out infinite alternate;
  z-index: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes float {
  0% {
    transform: translate(-50%, -60%) scale(1);
  }
  100% {
    transform: translate(-40%, -40%) scale(1.2);
  }
}

.wrapper {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent */
  backdrop-filter: blur(20px);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1s ease-in;
  z-index: 1;
  position: relative;
}

.intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.intro img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin-bottom: 1rem;
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.1rem;
  color: #ffffff;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #000000b3;
  color: var(--text);
  text-decoration: none;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  transition: background 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.links a:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

.links a i {
  color: var(--accent);
  transition: color 0.3s ease;
}

.links a:hover i {
  color: #ffffff; /* Optional: secondary accent on hover */
}

.fa-envelope {
  /* flamingo */
  color: #ffffff;
} /* rosewater */
.fa-github {
  color: #ffffff;
} /* blue */
.fa-discord {
  color: #ffffff;
} /* peach */
.fa-square-rss {
  color: #ffffff;
}

::selection {
  background: #ffffff; /* Mauve */
  color: #000000; /* Base */
}

@media (max-width: 768px) {
  .wrapper {
    grid-template-columns: 1fr;
  }

  .intro {
    align-items: center;
    text-align: center;
  }

  .intro h1 {
    font-size: 2rem;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
