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

.creatorHero {
  min-height: 55vh;

  display: flex;

  justify-content: center;

  align-items: center;

  text-align: center;

  padding: 120px 20px 60px;
}

.heroLogo {
  width: 260px;

  margin-bottom: 30px;

  filter: drop-shadow(0 0 20px #03fcf0)
    drop-shadow(0 0 60px rgba(3, 252, 240, 0.35));
}

.creatorHero h1 {
  font-family: "Orbitron", sans-serif;

  font-size: 4rem;

  margin-bottom: 20px;
}

.creatorHero span {
  color: #03fcf0;

  text-shadow: 0 0 15px #03fcf0;
}

.creatorHero p {
  max-width: 700px;

  margin: auto;

  color: #d6d6d6;

  line-height: 1.8;

  font-size: 1.1rem;
}

/* ==========================================================
   GRID
========================================================== */

.creatorGrid {
  width: min(1500px, 95%);

  margin: auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));

  gap: 40px;

  padding-bottom: 80px;
}

/* ==========================================================
   CARD
========================================================== */

.creatorCard {
  background: #0b0b0b;

  border: 1px solid rgba(3, 252, 240, 0.15);

  border-radius: 28px;

  padding: 40px 35px;

  text-align: center;

  transition: 0.35s;

  box-shadow: 0 0 30px rgba(0, 0, 0, 0.45);
}

.creatorCard:hover {
  transform: translateY(-8px);

  border-color: #03fcf0;

  box-shadow:
    0 0 25px rgba(3, 252, 240, 0.18),
    0 20px 45px rgba(0, 0, 0, 0.55);
}

.creatorCard img {
  width: 170px;

  height: 170px;

  border-radius: 50%;

  object-fit: cover;

  margin-bottom: 28px;

  border: 4px solid #03fcf0;

  box-shadow:
    0 0 18px #03fcf0,
    0 0 40px rgba(3, 252, 240, 0.25);
}

.creatorCard h2 {
  font-size: 2rem;

  margin-bottom: 10px;
}

.role {
  display: inline-block;

  color: #03fcf0;

  font-weight: 700;

  margin-bottom: 25px;
}

.creatorCard p {
  color: #d8d8d8;

  line-height: 1.8;

  margin-bottom: 35px;
} /* ==========================================================
   STATS
========================================================== */

.stats {
  display: flex;

  justify-content: center;

  gap: 12px;

  margin-bottom: 28px;

  flex-wrap: wrap;
}

.stat {
  width: 78px;

  padding: 14px 10px;

  background: #111;

  border: 1px solid rgba(3, 252, 240, 0.18);

  border-radius: 14px;

  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-3px);

  border-color: #03fcf0;

  box-shadow: 0 0 18px rgba(3, 252, 240, 0.25);
}

.number {
  font-size: 2rem;

  font-weight: 800;

  color: #03fcf0;

  line-height: 1;

  margin-bottom: 8px;
}

.subs {
  color: #ff3b3b;
}

.views {
  color: #03fcf0;
}

.videos {
  color: #03fcf0;
}

.label {
  font-size: 0.9rem;

  color: #bdbdbd;

  line-height: 1.2;
}

/* ==========================================================
   SOCIALS
========================================================== */

.socials {
  display: flex;

  justify-content: center;

  gap: 14px;

  margin-top: 15px;
}

.socials a {
  width: 48px;

  height: 48px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 50%;

  text-decoration: none;

  color: #fff;

  border: 1px solid rgba(3, 252, 240, 0.25);

  background: #0f0f0f;

  transition: 0.3s;

  font-size: 1.2rem;
}

.socials a:hover {
  color: #03fcf0;

  border-color: #03fcf0;

  transform: translateY(-4px);

  box-shadow: 0 0 20px rgba(3, 252, 240, 0.35);
} /* ==========================================================
   FOOTER
========================================================== */

footer {
  margin-top: 80px;

  padding: 35px 20px;

  text-align: center;

  color: #8d8d8d;

  border-top: 1px solid rgba(3, 252, 240, 0.12);
}

/* ==========================================================
   ANIMATIONS
========================================================== */

.creatorCard {
  animation: fadeUp 0.6s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(20px);
  }

  to {
    opacity: 1;

    transform: none;
  }
}

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

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

  .heroLogo {
    width: 170px;
  }

  .creatorHero h1 {
    font-size: 2.6rem;
  }

  .creatorGrid {
    grid-template-columns: 1fr;

    width: 92%;
  }

  .creatorCard {
    min-height: auto;

    padding: 30px 22px;
  }

  .creatorCard img {
    width: 130px;

    height: 130px;
  }

  .creatorCard h2 {
    font-size: 1.5rem;
  }

  .stats {
    gap: 10px;
  }

  .stat {
    width: 70px;

    padding: 12px 8px;
  }

  .number {
    font-size: 1.5rem;
  }

  .socials {
    gap: 10px;
  }

  .socials a {
    width: 42px;

    height: 42px;
  }
}

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

@media (max-width: 480px) {
  .creatorHero {
    padding: 90px 15px 30px;
  }

  .heroLogo {
    width: 140px;
  }

  .creatorHero h1 {
    font-size: 2rem;
  }

  .creatorHero p {
    font-size: 0.9rem;
  }

  .creatorGrid {
    width: 90%;

    gap: 25px;
  }

  .creatorCard {
    padding: 25px 20px;
  }

  .creatorCard img {
    width: 110px;

    height: 110px;
  }

  .creatorCard h2 {
    font-size: 1.3rem;
  }

  .role {
    font-size: 1rem;
  }

  .creatorCard p {
    font-size: 0.9rem;
  }

  .stats {
    gap: 8px;
  }

  .stat {
    width: 60px;

    padding: 10px 6px;
  }

  .number {
    font-size: 1.2rem;
  }

  .label {
    font-size: 0.7rem;
  }

  .socials {
    gap: 8px;
  }

  .socials a {
    width: 36px;

    height: 36px;

    font-size: 1rem;
  }
}
/* ==========================================================
   FINAL CARD POLISH
========================================================== */

.creatorCard h2 {
  margin: 0;

  margin-top: 10px;

  font-size: 3rem;

  font-weight: 800;

  line-height: 1.1;

  color: #fff;
}

.role {
  display: block;

  margin-top: 12px;

  margin-bottom: 28px;

  color: #03fcf0;

  font-size: 1.15rem;

  font-weight: 700;

  background: none;

  padding: 0;
}

.creatorCard p {
  width: 92%;

  margin: 0 auto 35px;

  color: #d5d5d5;

  font-size: 1.1rem;

  line-height: 1.8;
}

.stats {
  display: flex;

  justify-content: center;

  gap: 14px;

  flex-wrap: wrap;

  margin-bottom: 32px;
}

.stat {
  flex: 1;

  min-width: 95px;

  max-width: 120px;

  padding: 16px 12px;

  background: #101010;

  border: 1px solid rgba(3, 252, 240, 0.15);

  border-radius: 16px;

  transition: 0.3s;
}

.stat:hover {
  transform: translateY(-4px);

  border-color: #03fcf0;

  box-shadow: 0 0 20px rgba(3, 252, 240, 0.25);
}

.number {
  font-size: 2rem;

  font-weight: 800;

  line-height: 1;

  margin-bottom: 8px;
}

.subs {
  color: #ff4040;
}

.views {
  color: #03fcf0;
}

.videos {
  color: #03fcf0;
}

.label {
  font-size: 0.92rem;

  color: #aaaaaa;
}

.socials {
  display: flex;

  justify-content: center;

  gap: 18px;

  margin-top: auto;
}

.socials a {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  display: flex;

  justify-content: center;

  align-items: center;

  border: 1px solid rgba(3, 252, 240, 0.18);

  color: white;

  font-size: 1.25rem;

  text-decoration: none;

  transition: 0.3s;
}

.socials a:hover {
  transform: translateY(-5px);

  border-color: #03fcf0;

  color: #03fcf0;

  box-shadow: 0 0 20px rgba(3, 252, 240, 0.3);
}

.creatorCard img {
  width: 175px;

  height: 175px;

  border-radius: 50%;

  object-fit: cover;

  margin-bottom: 25px;

  border: 4px solid #03fcf0;

  box-shadow:
    0 0 20px #03fcf0,
    0 0 45px rgba(3, 252, 240, 0.25);
}
