* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  overflow-x: hidden;
}

.hero {
  text-align: center;
  padding: 80px 20px 40px;
  position: relative;
  z-index: 2;
}

.animated-text {
  font-size: 3em;
  background: linear-gradient(90deg, #ff4da6, #ff99cc, #ff4da6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.subtitle {
  font-size: 1.2em;
  margin: 15px 0;
  opacity: 0.8;
}

.profile {
  margin-top: 20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(255,255,255,0.6);
}

main {
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

section {
  margin-bottom: 50px;
}

h2 {
  font-size: 2em;
  margin-bottom: 20px;
  animation: fadeIn 2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  margin: 10px 0;
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-5px) scale(1.03);
  background: rgba(255, 255, 255, 0.2);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  background: rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

