/* ==========================================================
   MINECO STUDIOS - CREATORS
========================================================== */

.creators-page {
  min-height: 100vh;
}

.creatorHero {
  padding: 142px 24px 48px;
  text-align: center;
}

.heroContent {
  width: min(820px, 100%);
  margin: 0 auto;
}

.creator-kicker {
  margin-bottom: 10px;
  color: #7f8b8b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.creatorHero h1,
.join-creators-panel h2 {
  font-family: "Orbitron", sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
}

.creatorHero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.creatorHero h1 span,
.join-creators-panel h2 span {
  color: #03fcf0;
  text-shadow: 0 0 18px rgba(3, 252, 240, 0.5);
}

.creatorHero > .heroContent > p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: #c7c7c7;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ==========================================================
   CREATOR LIST
========================================================== */

.creators-list-section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 96px;
}

.creatorGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 360px));
  justify-content: center;
  gap: 24px;
}

.creatorCard {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(13, 18, 18, 0.94), rgba(7, 8, 8, 0.96));
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.creatorCard::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #03fcf0, transparent);
  opacity: 0.55;
}

.creatorCard:hover {
  transform: translateY(-5px);
  border-color: rgba(3, 252, 240, 0.28);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(3, 252, 240, 0.08);
}

.card-image {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 34px 24px 18px;
}

.creator-avatar {
  width: 128px;
  height: 128px;
  border: 3px solid rgba(3, 252, 240, 0.78);
  border-radius: 50%;
  object-fit: cover;
  background: #0d0d0d;
  box-shadow:
    0 0 0 7px rgba(3, 252, 240, 0.045),
    0 0 28px rgba(3, 252, 240, 0.18);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border: 1px solid rgba(3, 252, 240, 0.3);
  border-radius: 999px;
  background: rgba(3, 252, 240, 0.09);
  color: #03fcf0;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: calc(100% - 180px);
  padding: 0 28px 30px;
  text-align: center;
}

.creatorCard h2 {
  margin-bottom: 8px;
  font-size: 1.65rem;
  line-height: 1.15;
}

.role {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(3, 252, 240, 0.16);
  border-radius: 999px;
  background: rgba(3, 252, 240, 0.06);
  color: #03fcf0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creatorCard .creator-bio {
  flex: 1;
  margin-bottom: 24px;
  color: #bdbdbd;
  font-size: 0.94rem;
  line-height: 1.65;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: #d8d8d8;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(3, 252, 240, 0.45);
  background: rgba(3, 252, 240, 0.08);
  color: #03fcf0;
}

.loading-state,
.empty-state,
.error-state {
  grid-column: 1 / -1;
  padding: 70px 20px;
  color: #9e9e9e;
  text-align: center;
}

.loading-state i,
.empty-state i,
.error-state i {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
  color: #03fcf0;
}

/* ==========================================================
   BECOME A CREATOR
========================================================== */

.join-creators-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 100px;
}

.join-creators-panel {
  padding: 56px 36px;
  border: 1px solid rgba(3, 252, 240, 0.14);
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(3, 252, 240, 0.07), transparent 55%),
    rgba(8, 10, 10, 0.8);
  text-align: center;
}

.join-creators-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
}

.join-creators-panel > p:not(.creator-kicker) {
  max-width: 720px;
  margin: 0 auto 28px;
  color: #bdbdbd;
  font-size: 1rem;
  line-height: 1.7;
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.join-actions .button {
  min-width: 150px;
  padding: 13px 22px;
  border-width: 1px;
  border-radius: 11px;
  box-shadow: none;
}

.join-actions .button-primary {
  background: #03fcf0;
  color: #050505;
}

.join-actions .button-tertiary {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #d3d3d3;
}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 900px) {
  .creatorHero {
    padding: 118px 20px 42px;
  }

  .creators-list-section {
    padding-bottom: 72px;
  }

  .creatorCard {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .creatorHero {
    padding: 98px 16px 36px;
  }

  .creatorHero > .heroContent > p:last-child {
    font-size: 0.94rem;
  }

  .creators-list-section,
  .join-creators-section {
    width: min(100% - 28px, 1120px);
  }

  .creatorGrid {
    gap: 16px;
  }

  .creatorCard {
    min-height: 0;
  }

  .creator-avatar {
    width: 112px;
    height: 112px;
  }

  .card-content {
    height: auto;
    padding: 0 22px 26px;
  }

  .creatorCard .creator-bio {
    flex: initial;
  }

  .join-creators-panel {
    padding: 42px 20px;
  }

  .join-actions {
    flex-direction: column;
    align-items: center;
  }

  .join-actions .button {
    width: min(290px, 100%);
  }
}


/* Per-creator profile accent colour */
.creatorCard {
  border-color: rgba(var(--creator-accent-rgb, 3, 252, 240), 0.16);
}
.creatorCard::before {
  background: linear-gradient(90deg, transparent, var(--creator-accent, #03fcf0), transparent);
}
.creatorCard:hover {
  border-color: rgba(var(--creator-accent-rgb, 3, 252, 240), 0.42);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42), 0 0 30px rgba(var(--creator-accent-rgb, 3, 252, 240), 0.13);
}
.creatorCard .creator-avatar {
  border-color: var(--creator-accent, #03fcf0);
  box-shadow: 0 0 0 7px rgba(var(--creator-accent-rgb, 3, 252, 240), 0.045), 0 0 28px rgba(var(--creator-accent-rgb, 3, 252, 240), 0.22);
}
.creatorCard .role,
.creatorCard .featured-badge {
  border-color: rgba(var(--creator-accent-rgb, 3, 252, 240), 0.25);
  background: rgba(var(--creator-accent-rgb, 3, 252, 240), 0.075);
  color: var(--creator-accent, #03fcf0);
}
.creatorCard .socials a:hover {
  border-color: rgba(var(--creator-accent-rgb, 3, 252, 240), 0.55);
  background: rgba(var(--creator-accent-rgb, 3, 252, 240), 0.09);
  color: var(--creator-accent, #03fcf0);
  box-shadow: 0 0 18px rgba(var(--creator-accent-rgb, 3, 252, 240), 0.15);
}
