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

body {
  min-height: 100vh;
  background: radial-gradient(ellipse 120% 80% at 50% 0%, #1a1a2e 0%, #0f0f1a 40%, #050508 100%);
  font-family: 'JetBrains Mono', monospace;
  color: #e0e0e0;
  overflow-x: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem 3rem;
  position: relative;
}

.card {
  position: relative;
  width: 100%;
  max-width: 720px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.profile-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}

.profile-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.15), inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.name {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.35rem;
}

.title {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(0, 212, 255, 0.9);
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
}

.bio {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(224, 224, 224, 0.85);
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.social-grid {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 1.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e1e2e 0%, #151520 100%);
  border: 2px solid rgba(0, 212, 255, 0.35);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.social-link:hover {
  transform: scale(1.1);
  border-color: rgba(0, 212, 255, 0.8);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.25);
}

.social-link:focus {
  outline: 2px solid rgba(0, 212, 255, 0.6);
  outline-offset: 3px;
}

.social-link svg {
  width: 34px;
  height: 34px;
}

@media (max-width: 600px) {
  .profile-img {
    width: 180px;
    height: 180px;
  }

  .name {
    font-size: 1.45rem;
  }

  .title {
    font-size: 0.85rem;
  }

  .bio {
    font-size: 0.9rem;
  }

  .social-link {
    width: 56px;
    height: 56px;
  }

  .social-link svg {
    width: 28px;
    height: 28px;
  }
}
