.team-container {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(10, 10, 10, 0.9);
  min-height: calc(100vh - 60px);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.team-member {
  background: rgba(26, 26, 26, 0.95);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 51, 51, 0.2);
}

.member-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-bottom: 3px solid var(--primary-color);
}

.member-info {
  padding: 1.5rem;
}

.member-name {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.member-role {
  font-size: 1.1rem;
  color: #ff6666;
  margin-bottom: 1rem;
}

.member-description {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.member-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.member-social a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: var(--primary-color);
}

.team-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(26, 26, 26, 0.95);
  border-radius: 15px;
}

.team-header h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.team-header p {
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.team-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.category-button {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 25px;
  background: rgba(255, 51, 51, 0.1);
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-button.active,
.category-button:hover {
  background: var(--primary-color);
}