/* ────────────────────────────────────────────────
   PREMIUM NEON CYBER THEME – NO CONTAINER
   Clean • Professional • Futuristic
───────────────────────────────────────────────── */

:root {
  --bg: #05060f;
  --text: #f5fbff;
  --text-muted: #9ecbff;

  --primary: #00eaff;
  --primary-soft: rgba(0, 234, 255, 0.15);

  --accent: #ff00d4;
  --accent-soft: rgba(255, 0, 212, 0.15);

  --border: rgba(0, 234, 255, 0.35);

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body – Premium Neon Atmosphere */
body {
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  text-align: center;
  min-height: 100vh;
  padding: 80px 20px 120px;

  /* subtle premium glow layers */
  background-image:
    radial-gradient(circle at 20% 20%, var(--primary-soft) 0%, transparent 35%),
    radial-gradient(circle at 80% 70%, var(--accent-soft) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Profile Image – Clean Neon Ring */
.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 40px;
  display: block;

  border: 3px solid var(--primary);
  box-shadow:
    0 0 30px rgba(0, 234, 255, 0.4),
    0 0 60px rgba(0, 234, 255, 0.2);

  transition: var(--transition);
}

.profile-img:hover {
  transform: scale(1.08);
  box-shadow:
    0 0 40px rgba(0, 234, 255, 0.6),
    0 0 80px rgba(255, 0, 212, 0.4);
}

/* Name – Elegant Animated Gradient */
.name {
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;

  background: linear-gradient(
    90deg,
    #ffffff,
    var(--primary),
    var(--accent),
    #ffffff
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: premiumFlow 8s ease-in-out infinite;

  text-shadow: 0 0 30px rgba(0, 234, 255, 0.25);
}

@keyframes premiumFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Bio – Minimal & Readable */
.bio {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 60px;
  opacity: 0.95;
}

/* Links Wrapper */
.links {
  max-width: 480px;
  margin: 0 auto;
}

/* Neon Buttons – Professional Style */
.links a {
  display: block;
  margin: 20px auto;
  padding: 18px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;

  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 18px;

  background: transparent;

  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Subtle inner glow */
.links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

/* Hover State – Premium Lift */
.links a:hover {
  transform: translateY(-6px);
  color: #fff;
  border-color: transparent;

  box-shadow:
    0 0 40px rgba(0, 234, 255, 0.4),
    0 20px 50px rgba(0, 0, 0, 0.5);
}

.links a:hover::before {
  opacity: 1;
}

/* Footer */
footer {
  margin-top: 120px;
  font-size: 0.95rem;
  color: #555;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.3s;
}

footer a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 520px) {
  body {
    padding: 60px 18px 100px;
  }

  .profile-img {
    width: 130px;
    height: 130px;
  }

  .name {
    font-size: 2.4rem;
  }

  .bio {
    font-size: 1.05rem;
  }

  .links a {
    font-size: 1rem;
    padding: 16px 22px;
  }
}
