
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;500;700&display=swap');

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  max-width: 400px;
  width: 90%;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: fadeIn 1s ease-out;
}

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

.profile-img {
  width: 90px;
  height: 90px;
  margin-top: 10px;

  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #00ffff;
  box-shadow: 0 0 15px #00ffff88;
}

h1 {
  margin: 10px 0;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.bio {
  font-size: 16px;
  margin-bottom: 30px;
  color: #ccc;
  font-weight: 300;
}

.links a {
  display: block;
  background: linear-gradient(90deg, #0077ff, #00ffff);
  color: #000;
  text-decoration: none;
  margin: 12px 0;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #00ffff66;
}

.links a i {
  margin-right: 12px;
}

.links a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffffcc;
}


.logo-box {
  width: 140px;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 10px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px #00ffff55;
}

.profile-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: none;
  border: none;
}


.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  font-size: 22px;
  color: #00ffff;
  background-color: rgba(255,255,255,0.08);
  padding: 12px;
  border-radius: 50%;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icons a:hover {
  background-color: #00ffff;
  color: #111;
  transform: scale(1.15);
}
