* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: none;
}

/* ===== INTRO ===== */
.intro {
  position: fixed;
  inset: 0;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  font-size: 14px;
  letter-spacing: 4px;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.intro span {
  opacity: 0.75;
  animation: blink 1.5s infinite;
}

.fade-out {
  opacity: 0;
}

@keyframes blink {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hidden {
  display: none;
}

/* ===== CURSOR ===== */
.custom-cursor {
  position: fixed;
  width: 26px;
  height: 26px;
  background: radial-gradient(circle, white 40%, rgba(255,255,255,0.15));
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000;
}

/* ===== BACKGROUND ===== */
.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: -1;
}

/* ===== ANIMATIONS ===== */
@keyframes boxGlow {
  0% { transform: scale(0.995); box-shadow: 0 0 4px rgba(255,255,255,0.15); }
  50% { transform: scale(1.01); box-shadow: 0 0 14px rgba(255,255,255,0.3); }
  100% { transform: scale(0.995); }
}

@keyframes textGlow {
  0% { text-shadow: 0 0 4px rgba(255,255,255,0.2); }
  50% { text-shadow: 0 0 14px rgba(255,255,255,0.35); }
  100% { text-shadow: 0 0 4px rgba(255,255,255,0.2); }
}

.glow-box { animation: boxGlow 1.5s infinite; }
.glow-text { animation: textGlow 1.5s infinite; }

/* ===== CARD ===== */
.card {
  width: 500px;
  padding: 40px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 3.5px solid rgba(255,255,255,0.8);
  text-align: center;
  z-index: 2;
}

/* ===== PROFILE ===== */
.profile img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  margin-bottom: 30px;
}

.neon-text { font-size: 30px; letter-spacing: 3px; }
.neon-sub { font-size: 20px; opacity: 0.9; }

/* ===== LINKS ===== */
.links {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.links a {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 2.5px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  transition: transform 0.3s ease;
}

.links a:hover { transform: scale(1.15); }
.snap { color: #FFFC00; }
.insta { color: #E1306C; }
.github { color: white; }

/* ===== MUSIC PLAYER ===== */
.music-player {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  padding: 10px 16px;
  border-radius: 14px;
  z-index: 3;
}
