* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  cursor: none; /* hide default cursor */
}

body {
  min-height: 100vh;
  background: black;
  color: white;
  overflow-x: hidden;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: rgba(0, 255, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease, height 0.15s ease, background 0.15s ease;
  z-index: 999;
}

/* Animated Background */
.bg {
  position: fixed;
  inset: 0;
  background: linear-gradient(-45deg, #0a0a0a, #111, #050505, #151515);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  z-index: -1;
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #00f7ff;
}

/* Splash */
.center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.enter {
  font-size: 3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.enter:hover {
  transform: scale(1.08);
  opacity: 0.85;
}

/* Fade Out */
.fade-out {
  animation: fadeOut 0.7s forwards;
}
@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* Portfolio Card */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 6rem;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.45);
}

/* Reveal Animation on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

.pfp {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.subtitle {
  opacity: 0.75;
  margin-bottom: 1rem;
}

.buttons .btn {
  display: inline-block;
  margin: 0.3rem;
  padding: 0.5rem 1rem;
  background: #00f7ff;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.buttons .btn.outline {
  background: transparent;
  border: 2px solid #00f7ff;
  color: #00f7ff;
}

section {
  width: 90%;
  max-width: 900px;
  margin-bottom: 3rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.grid .card {
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  min-width: 150px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid .card.hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,255,255,0.3);
}

.badge {
  display: inline-block;
  background: #00f7ff;
  color: black;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin: 0.2rem;
  font-size: 0.8rem;
}

.contact-card {
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 1rem 1.5rem;
  border-radius: 10px;
}

.copy-btn {
  margin-left: 0.5rem;
  padding: 0.2rem 0.5rem;
  border: none;
  background: #00f7ff;
  color: black;
  border-radius: 4px;
  cursor: pointer;
}

footer {
  text-align: center;
  padding: 2rem;
  opacity: 0.7;
}
