body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(to bottom right, rgb(41, 74, 122), rgb(15, 15, 15));
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  color: white;
  position: relative;
  padding: 20px;
  overflow-y: auto;
  overflow-x: hidden !important;
}

.bio-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(25px);
  border-radius: 25px;
  padding: 50px 70px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.6);
  text-align: left;
  max-width: 700px;
}

.bio-card h1 {
  font-size: 2.8rem;
  margin-bottom: 0.3em;
}

.bio-card h2 {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1em;
}

.bio-text {
  font-size: 1rem;
  line-height: 1.8em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5em;
}

.bio-text a {
  color: #f6d77a;
  text-decoration: none;
  transition: 0.3s;
}

.bio-text a:hover {
  text-decoration: underline;
  color: #ffeaa7;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.15s ease;
  color: white;
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.2),
    0 6px 15px rgba(0, 0, 0, 0.6);
}

.btn:hover {
  box-shadow:
    inset 0 2px 4px rgba(255, 255, 255, 0.25),
    0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn:active {
  transform: translateY(3px);
}

.discord {
  background: linear-gradient(180deg, #6874f8, #4b56d9);
}

.github {
  background: linear-gradient(180deg, #333, #1a1a1a);
}

.telegram {
  background: linear-gradient(180deg, #36aee2, #1c8ac7);
}

.material-symbols-outlined {
  font-size: 22px;
  vertical-align: middle;
}

footer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 25px;
  text-align: center;
}

@media (max-width: 1024px) {
  .bio-card {
    padding: 40px 50px;
    max-width: 600px;
  }

  .bio-card h1 {
    font-size: 2.3rem;
  }

  .bio-card h2 {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  body {
    padding: 40px 20px;
  }

  .bio-card {
    padding: 30px 35px;
    border-radius: 20px;
    width: 100%;
  }

  .bio-card h1 {
    font-size: 2rem;
  }

  .bio-card h2 {
    font-size: 1rem;
  }

  .bio-text {
    font-size: 0.95rem;
  }

  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .bio-card {
    padding: 25px 25px;
    border-radius: 18px;
    text-align: center;
  }

  .bio-card h1 {
    font-size: 1.8rem;
  }

  .bio-card h2 {
    font-size: 0.9rem;
  }

  .bio-text {
    font-size: 0.9rem;
    line-height: 1.6em;
  }

  .buttons {
    gap: 12px;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  footer {
    font-size: 0.7rem;
  }
}