body {
  background-color: #000;
  color: #33ff33;
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  padding: 20px;
}

.terminal {
  max-width: 900px;
  margin: auto;
  background-color: #111;
  border: 1px solid #33ff33;
  padding: 20px 30px 30px;
  box-shadow: 0 0 20px #0f0;
  animation: fadeIn 1.5s ease-out;
}

/* Profile section */
.profile-section {
  text-align: center;
  margin-bottom: 30px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #33ff33;
  margin-bottom: 15px;
  object-fit: cover;
}

h1 {
  color: #00ff00;
  margin-bottom: 20px;
}

h2 {
  color: #00ff00;
  animation: slideIn 0.8s ease forwards;
  opacity: 0;
  margin-top: 30px;
}

p, ul {
  animation: fadeInUp 1s ease-out forwards;
  opacity: 0;
  margin-left: 20px;
}

ul {
  list-style-type: square;
}

li {
  margin-bottom: 8px;
}

a {
  color: #00ffff;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

a:hover {
  color: #39ff14;
  text-shadow: 0 0 5px #39ff14;
}

footer {
  text-align: center;
  margin-top: 30px;
  color: #888;
  font-size: 14px;
}

footer hr {
  border-color: #333;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  0% { transform: translateX(-50px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.activity-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.activity-gallery img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.activity-gallery img:hover {
  transform: scale(1.05);
}
