body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #050816;
  color: #fff;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

#particles-js {
  position: absolute;
  inset: 0;
}

.content {
  position: relative;
  z-index: 2;
}

.avatar {
  width: 160px;
  border-radius: 50%;
}

/* TEXT */
h1 {
  margin: 10px 0;
}

p {
  color: #aaa;
}

/* SOCIAL */
.social {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social a {
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #00bfff;
  border: 1px solid #00bfff;
  transition: 0.3s;
}

.social a:hover {
  background: #00bfff;
  color: #050816;
  transform: translateY(-5px);
  box-shadow: 0 0 15px #00bfff;
}

/* SECTIONS */
.section {
  padding: 80px 20px;
  text-align: center;
}

.dark {
  background: #0d0f25;
}

/* SKILLS */
.skills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.skill {
  padding: 10px 20px;
  background: #1a1a2e;
  border-radius: 20px;
  transition: 0.3s;
}

.skill:hover {
  transform: scale(1.1);
  background: #00bfff;
  color: #050816;
}

/* PROJECTS */
.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.card {
  background: #1a1a2e;
  padding: 20px;
  width: 250px;
  border-radius: 12px;
  transition: 0.4s;
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

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

/* VIEW BUTTON 🔥 */
.view-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 25px;
  background: linear-gradient(90deg, #00bfff, #007bff);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.view-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  opacity: 0;
}

.view-btn:hover::before {
  opacity: 1;
  transform: translateX(100%);
}

.view-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 15px #00bfff;
}

/* BUTTON */
.btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  border-radius: 30px;
  background: #00bfff;
  color: #050816;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

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

.stagger {
  opacity: 0;
  transform: translateY(20px);
}

.stagger.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.5s ease;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
}
