.credits-hero {
  text-align: center;
  margin: 2rem 0 3rem;
}
.credits-logo {
  width: 100px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}
.credits-hero h1 {
  font-family: 'HTCD', var(--font-main);
  font-size: 3.5rem;
  background: linear-gradient(135deg, #fff, #aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 3px;
}
.tagline {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.description {
  color: var(--text-tertiary);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-section {
  margin-bottom: 3rem;
}
.team-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
}
.team-section h2 i {
  margin-right: 0.5rem;
  color: var(--accent-primary);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.8rem 1.2rem;
  border-radius: 12px;
  background: #1a1a1a;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.15);
}
.team-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid rgba(255,255,255,0.15);
}
.team-card .info h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.team-card .role {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-primary);
  font-weight: 500;
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}
.team-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.thanks-section {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: #1a1a1a;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}
.thanks-section h2 {
  font-size: 1.6rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.thanks-section h2 i {
  color: #ff4d6d;
  margin-right: 0.5rem;
}
.thanks-section p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
img {
  display: block;
  margin: auto;
  width: 50%;
}