:root {
  --accent: #00d1ff;
  --bg: #0a0f1c;
  --card-bg: #131c2c;
  --text: #eaf6ff;
  --muted: #9baec8;
}

/* Page background */
body {
  margin: 0;
  background: var(--bg);
  font-family: "Poppins", sans-serif;
  color: var(--text);
}

/* Section wrapper */
.directors-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
}

/* Director card */
.director-card {
  text-align: center;
  background: var(--card-bg);
  border-radius: 24px;
  padding: 40px 30px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 0 30px rgba(0, 209, 255, 0.15),
              0 0 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0, 209, 255, 0.25),
              0 0 100px rgba(0, 0, 0, 0.7);
}

/* Image box */
.photo-box {
  width: 300px;
  height: 300px;
  margin: 0 auto 20px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid rgba(0, 209, 255, 0.4);
  box-shadow: 0 0 25px rgba(0, 209, 255, 0.2),
              inset 0 0 20px rgba(255, 255, 255, 0.03);
  background: radial-gradient(circle at top left, rgba(0, 209, 255, 0.1), rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}

.photo-box:hover {
  transform: scale(1.05) rotateY(5deg);
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

/* Text content */
.name {
  font-size: 1.6rem;
  margin: 10px 0 4px;
  color: var(--accent);
  text-shadow: 0 0 12px rgba(0, 209, 255, 0.5);
}

.title {
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #c9d9eb;
  margin-bottom: 20px;
}

/* Skills list */
.skills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.skills li {
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(0, 209, 255, 0.1);
  border: 1px solid rgba(0, 209, 255, 0.2);
  font-size: 0.9rem;
  color: var(--accent);
  position: relative;
  transition: background 0.3s ease;
}

.skills li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0, 209, 255, 0.6);
}

.skills li:hover {
  background: rgba(0, 209, 255, 0.2);
}

/* Responsive: single column on small screens */
@media (max-width: 820px) {
  .directors-section {
    flex-direction: column;
    align-items: center;
  }
}
