* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #2b2f55, #0a0c1a 70%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e6e9ff;
}

.card {
  background: rgba(20, 22, 45, 0.6);
  backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 45px 65px;
  text-align: center;
  box-shadow: 0 0 60px rgba(120, 130, 255, 0.15), 0 0 120px rgba(255, 0, 0, 0.08);
  border: 1px solid rgba(140, 160, 255, 0.15);
}

.avatar {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7a84ff, rgb(212, 62, 7));
  padding: 3px;
  margin: 0 auto 30px auto;
  box-shadow: 0 0 25px rgba(84, 91, 179, 0.6), 0 0 45px rgba(179, 0, 0, 0.4);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

h1 {
  font-size: 2.7rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  color: #dfe3ff;
  text-shadow: 0 0 15px rgba(120, 130, 255, 0.5);
}

.logo {
  font-size: 2.7rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  color: #dfe3ff;
  text-shadow: 0 0 15px rgba(120, 130, 255, 0.5);
  display: inline-block;
}

/* cut upper section of i and k */
.cut {
  display: inline-block;
  clip-path: polygon(0 0, 100% 0, 100% 25%, 0 25%, 0 100%, 100% 100%, 100% 0, 0 0);
}

.tagline {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 28px;
  color: #b8c0ff;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.socials a {
  text-decoration: none;
  color: #e6e9ff;
  padding: 12px 22px;
  border-radius: 22px;
  background: rgba(120, 130, 255, 0.12);
  border: 1px solid rgba(140, 160, 255, 0.25);
  transition: 0.3s ease;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(120, 130, 255, 0.2);
}

.socials a:hover {
  background: rgba(255, 40, 40, 0.2);
  border-color: rgba(255, 40, 40, 0.6);
  box-shadow: 0 0 25px rgba(255, 40, 40, 0.5);
  transform: translateY(-4px) scale(1.03);
}