body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}

#particles-js {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: radial-gradient(circle at top left, #0f2027, #203a43, #2c5364);
}

h1 {
  font-size: 3.2rem;
  margin: 0.5rem 0;
  letter-spacing: 2px;
}
h2 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ccc;
  margin: 0.2rem 0;
}
.role {
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(90deg, #1577c1, #20b0c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 1rem 0;
}
.subtext {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #aaa;
  max-width: 500px;
  line-height: 1.6;
}
.avatar {
  width: 160px;
  margin-bottom: 1rem;
}

/* Contact Card */
.contact-card {
  background: #111;
  border-radius: 12px;
  padding: 2rem;
  max-width: 600px;
  margin: 3rem auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}
.contact-card h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.contact-card p {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Buttons inside card */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.contact-buttons .btn {
  text-decoration: none;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
}
.btn.github { background: #19222e; }
.btn.github:hover { background: #444c56; }
.btn.discord { background: #5865F2; }
.btn.discord:hover { background: #888cc4; }
.btn.instagram {  
  background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  color: #fff;
  border: none; }
.btn.instagram:hover {  background: linear-gradient(45deg, #3b3a3a, #7b7a7a, #858585, #3b3a3a); }

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .role { font-size: 1.1rem; }
  .contact-card { padding: 1.5rem; }
  .contact-buttons { flex-direction: column; }
  .contact-buttons .btn { 
    width: auto;      
    min-width: 200px;  
    justify-content: center;
  }
}

