

.creditCard {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 14px;
  text-align: center;
  margin-bottom: 14px;
}

.creditCard.main {
  box-shadow: 0 0 25px rgba(255,0,120,0.6);
}

.creditCard img {
  width: 120px;
  height: 120px;
}


.creditCard h3, .creditCard h4 {
  margin: 0;
  color: #ffccdd;
}

.creditCard p, .creditCard span {
  font-size: 14px;
  opacity: 0.8;
}

.creditCard a {
  font-size: 13px;
  color: #ff7aa2;
  text-decoration: none;
}

.creditsTeam {
  display: flex;
  flex-direction: column;
}

.creditsText {
  margin: 18px 0;
  font-size: 14px;
  opacity: 0.85;
  text-align: center;
}

.creditsSocials {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.creditsSocials a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
#centerCredits {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  overflow-y: auto;
}
.creditsLayout {
  height: 100%;
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.creditCard h4 {
  margin-top: 10px;
  font-size: 20px;
}
.creditsRow {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.creditMain h3 {
  margin-top: 15px;
  font-size: 28px;
}
.creditMain img {
  width: 170px;
  height: 170px;
}
.creditsContent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}

.creditBox {
  width: 200px;
  padding: 25px 15px;
  background: rgba(255,255,255,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-radius: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  box-shadow: 0 0 20px rgba(255,0,120,0.25);
}
.creditBox.main {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(255,0,120,0.5);
}

.creditBox h3,
.creditBox h4 {
  margin: 0;
  color: #ffccdd;
}

.creditBox span {
  font-size: 14px;
  opacity: 0.8;
  text-align: center;
}
.creditBox img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;

  border: 3px solid rgba(255,255,255,0.4);
  box-shadow: 
    0 0 0 3px rgba(255,0,120,0.4),
    0 0 25px rgba(255,0,120,0.6);
}

.creditBox.main img {
  width: 160px;
  height: 160px;
}
.creditsLinks {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.creditBtn {
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;

  background: rgba(255,255,255,0.1);
  color: white;

  box-shadow: 0 0 20px rgba(255,0,120,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.creditBox:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(255,0,120,0.7);
}

.creditBtn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(255,0,120,0.8);
}

.creditBtn.discord { background: #5865F2; }
.creditBtn.insta { background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af); }
.creditBtn.tiktok { background: #000; }

.creditsClose {
  position: absolute;
  top: 20px;
  right: 25px;

  font-size: 32px;
  font-weight: bold;
  cursor: pointer;

  color: rgba(255,255,255,0.7);
  transition: transform 0.2s, color 0.2s;
  z-index: 10;
}

.creditsClose:hover {
  color: #ff3366;
  transform: scale(1.2);
}
.creditBox img {
  transition: transform 0.25s ease;
}

.creditBox:hover img {
  transform: scale(1.05);
}

@media (max-height: 750px) {
  .creditsContent {
    gap: 20px;
  }

  .creditsRow {
    flex-wrap: wrap;
    gap: 25px;
  }

  .creditBox {
    width: 160px;
  }
}

.creditsTitle {
  width: 100%;
  text-align: center;
  font-size: 48px;
  margin: 20px 0 25px;
  text-shadow: 0 0 20px #ff3366;
}

.creditsBoxCenter {
  width: 100%;
  height: 100%;
  max-height: none;
  overflow: hidden;

  background: none;
  box-shadow: none;
  backdrop-filter: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;

  overflow-y: auto;
  padding-bottom: 40px;
}