:root {
  --bg-color: #1b1d23;
  --card-bg: #292d3e;
  --text-color: #ffffff;
  --accent: #61dafb;
  --shadow: rgba(0, 0, 0, 0.3);
}

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

body {
  background: linear-gradient(135deg, #1a1c24, #242837);
  color: var(--text-color);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
  width: 100%;
}

.card {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 30px var(--shadow);
  text-align: center;
  animation: fadeIn 1s ease-out;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.title {
  font-size: 2.8rem;
  background: linear-gradient(to right, #61dafb, #9f7aea);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 1.2rem;
}

.bio {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.links a {
  background: var(--accent);
  color: #000;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.links a:hover {
  background: #ffffff;
  color: #000000;
  transform: scale(1.05);
}

.footer {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 1.5rem;
  opacity: 0.6;
}

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

/* Адаптивность */
@media (max-width: 480px) {
  .card {
    padding: 1.5rem;
  }

  .title {
    font-size: 2.2rem;
  }

  .bio {
    font-size: 0.95rem;
  }
}
