:root {
  --bg: #0b0d12;
  --card: #121622;
  --primary: #4f8cff;
  --text: #e8ebf1;
  --muted: #9aa3b2;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(
    1200px 600px at 50% -10%,
    #1b2340 0%,
    var(--bg) 40%
  );
  color: var(--text);
  min-height: 100vh;
  padding: 24px 16px 60px;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Profile */
.profile {
  background: linear-gradient(180deg, #151a2e, var(--card));
  border-radius: var(--radius);
  padding: 24px 20px 22px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--primary), #7aa7ff);
  display: grid;
  place-items: center;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}
.bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Socials */
.socials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.social {
  background: var(--card);
  border-radius: 14px;
  padding: 16px 10px;
  text-align: center;
  text-decoration: none;
  color: var(--text);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.social i {
  font-size: 22px;
  color: var(--primary);
}

.social:hover {
  transform: translateY(-3px);
  background: #1a2040;
}

/* Sections */
.section {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

/* Card template */
.item {
  background: linear-gradient(180deg, #141936, #0f1428);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(79, 140, 255, 0.25);
}

.item-title {
  font-size: 15px;
  font-weight: 600;
}
.item-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Footer */
footer {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
