.creator-section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.creator-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
}

/* Creator Grid */
.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Creator Card */
.creator-card {
  background-color: #252525;
  border: 1px solid #333333;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

.creator-card:hover {
  border-color: #666666;
  transform: translateY(-4px);
}

/* Creator Icon */
.creator-icon {
  width: 120px;
  height: 120px;
  border-radius: 3%;
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: #1a1a1a;
  border: 2px solid #333333;
}

.creator-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Creator Name */
.creator-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

/* Creator Social */
.creator-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.x-logo {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}

.creator-social a {
  color: #cccccc;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 16px;
  transition: color 0.3s ease;
}

.creator-social a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* Recruitment Section */
.recruitment {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid #333333;
}

.recruitment p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #cccccc;
}

.recruitment a {
  color: #ffffff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.recruitment a:hover {
  color: #999999;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .creator-section h1 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .creator-card {
    padding: 1.5rem 1rem;
  }

  .creator-icon {
    width: 100px;
    height: 100px;
  }

  .creator-name {
    font-size: 1rem;
  }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .creator-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
