body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: radial-gradient(circle at top, #121414, #050505);
  color: white;
}

/* MAIN */
.main {
  max-width: 420px;
  margin: auto;
  padding: 20px 16px 10px;
}

/* PROFILE */
.profile {
  text-align: center;
  margin-bottom: 30px;
}

.avatar {
  width: 90px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(0,219,233,0.3);
}

.profile h1 {
  font-family: 'Newsreader';
  font-size: 30px;
  margin: 10px 0 0;
}

.profile p {
  font-size: 11px;
  letter-spacing: 2px;
  color: #00dbe9;
}

/* LINKS */
.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px;
  border-radius: 16px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);

  text-decoration: none;
  color: white;
}

/* LEFT */
.left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ICON */
svg {
  width: 22px;
  height: 22px;
  stroke: #00dbe9;
  fill: none;
  stroke-width: 2;
}

/* RIGHT TEXT */
.link small {
  font-size: 11px;
  opacity: 0.6;
}

/* TOUCH */
.link:active {
  transform: scale(0.96);
}

/* FOOTER */
.footer {
  padding: 16px;
}

.footer-card {
  max-width: 420px;
  margin: auto;
  padding: 14px 16px;

  border-radius: 18px;
  background: rgba(255,255,255,0.05);

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LEFT */
.footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  background: #00ff88;
  border-radius: 50%;
}

/* RIGHT */
.footer-right {
  display: flex;
  gap: 16px;
}

.footer-right svg {
  width: 22px;
  height: 22px;
}

/* CONTACT BOXES */
.contacts {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 12px 16px;
  border-radius: 12px;
  min-width: 150px;
  text-align: center;
}

.contact-box a {
  color: #00dbe9;
  text-decoration: none;
  font-weight: 600;
  display: block;
}

.contact-box .label {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 6px;
}
