:root {
  --font: "Geist", "Geist Placeholder", sans-serif;
  --bg-dark: #111111;
  --text2: #ffffff;
  --accent: #e63946;
}

.creator-section {
  background-color: var(--bg-dark);
  padding: 80px 40px;
  font-family: var(--font);
  text-align: center;
}

.creator-logo {
  width: 180px;
  margin-bottom: 40px;
}

.creator-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.creator-image img {
  width: 260px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.creator-text {
  color: var(--text2);
  text-align: left;
  max-width: 500px;
}

.creator-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.creator-text .dot {
  color: var(--accent);
  margin-left: 4px;
}

.creator-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Tablet View */
@media (max-width: 1024px) {
  .creator-grid {
    flex-direction: column;
    gap: 40px;
  }

  .creator-text {
    text-align: center;
  }

  .creator-text h2 {
    font-size: 1.8rem;
  }

  .creator-image img {
    width: 220px;
  }
}

/* Mobile View */
@media (max-width: 768px) {
  .creator-section {
    padding: 60px 20px;
  }

  .creator-text h2 {
    font-size: 1.6rem;
  }

  .creator-text p {
    font-size: 0.95rem;
  }

  .creator-image img {
    width: 180px;
  }
}