:root {
  --neon-cyan: #00ffcc;
  --glass-bg: rgba(5, 5, 5, 0.8);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #000;
  overflow: hidden;
  height: 100vh;
}

#mainBg {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #000000, #0a0a2e);
  transition: background 4s ease-in-out;
  position: relative;
}

/* Glassmorphic Profile Card */
.profile-card {
  position: relative;
  z-index: 10;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 204, 0.3);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 0 50px rgba(0, 255, 204, 0.1);
}

.profile-img {
  width: 170px;
  height: 170px;
  border-radius: 15%;
  border: 2px solid var(--neon-cyan);
  margin-bottom: 25px;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(0, 255, 204, 0.3);
}

h1 {
  font-family: "Courier New", monospace;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* Typewriter text style */
.typing-container {
  font-family: "Courier New", monospace;
  color: var(--neon-cyan);
  font-size: 0.95rem;
  min-height: 20px;
  margin-bottom: 30px;
}

.cursor {
  display: inline-block;
  width: 8px;
  background-color: var(--neon-cyan);
  margin-left: 5px;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.links-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 10px;
  font-weight: 500;
  border: 1px solid rgba(0, 255, 204, 0.1);
  transition: 0.3s ease;
}

.social-link:hover {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
  transform: translateY(-2px);
}
