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

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, #53b0f1, #b36de5);

  min-height: 100vh;

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

/* WRAP */
.socials-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* CARD */
.social-card {
  width: 340px;
  padding: 25px;

  border-radius: 20px;

  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.15);

  text-align: center;
}

/* PROFILE */
.profile img {
  width: 90px;
  height: 90px;
  border-radius: 50%;

  margin-bottom: 10px;

  border: 3px solid rgba(255,255,255,0.6);
}

.profile h1 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;

  margin-bottom: 20px;
}

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

/* BUTTONS */
.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px;

  border-radius: 10px;

  background: rgba(255,255,255,0.9);
  color: #4f5bd5;

  text-decoration: none;
  font-weight: 600;

  transition: all 0.25s ease;
}

/* HOVER */
.links a:hover {
  transform: translateY(-3px) scale(1.02);

  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ICON */
.links i {
  font-size: 18px;
}