body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: rgba(0, 0, 0, 0.6);
  border-bottom: 2px solid #3fe281;
}

header .logo {
  width: 90px;
  transition: 0.3s;
}

header .logo:hover {
  transform: scale(1.1) translateY(-5px);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

nav a:hover {
  color: #3fe281;
}

/* TEAM */
.team-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
}

.team-section h2 {
  text-align: center;
  font-size: 36px;
  color: #3fe281;
  margin-bottom: 40px;
}

.team-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}
.team-member {
  background: #1a1a1a;
  border: 2px solid #3fe281;
  border-radius: 15px;
  padding: 20px;
  width: 190px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.member-photo {
  width: 150px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.member-photo:hover {
  transform: scale(1.05);
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.socials img {
  width: 30px;
  transition: transform 0.3s ease;
}

.socials img:hover {
  transform: scale(1.2);
}

.member-desc {
  color: #ccc;
  font-size: 14px;
  line-height: 1.4;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: #777;
  border-top: 2px solid #3fe281;
  margin-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}