#LoginSection {
    text-align: center;
    display: flex;
    font-size: 1em;
    padding: 1em;
}

#input {
    outline: none;
    border: none;
}

.login_flex {
    display: flex;
    flex-direction: column;
}

#statusLogin {
    padding: 0.5em;
}

.playerLoginButton {
    background-color: black;
}

#gifToro {
    width: 70%;
}

.no-outline {
    border: none;
    outline: none;
}

.bg-black {
    background-color: rgb(1, 0, 28);
}



/* Section label */
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
  margin: 1.5rem 0 0.6rem;
  padding-bottom: 6px;
}


/* Icons */
.row-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 6px;
}
.leaderboard-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

/* HERO */
.hero {
  display: flex;
  flex-direction: column;
 
}
.avatar-wrap {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-info {
    margin-top: 1em;
}
.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-name {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}
.hero-uuid {
  font-size: 11px;
  color: #555;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stat rows */
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
}

.stat-row-label {
  color: #aaa;
  display: flex;
  align-items: center;
}
.stat-row-value {
  color: #fff;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 8px;
}
.stat-card {
  background: #1a1a2e;
  border: 0.5px solid #2a2a3a;
  border-radius: 8px;
  padding: 10px 12px;
}
.stat-card-label {
  color: #888;
  margin-bottom: 4px;
}
.stat-card-value {
  color: #fff;
}
.stat-card-value--sm {
  line-height: 1.3;
}
.stat-card-sub {
  color: #555;
  margin-top: 2px;
}

/* Progress bars */
.prog-item {
  margin-bottom: 14px;
}
.prog-item:last-child {
  margin-bottom: 0;
}
.prog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.prog-label {
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prog-value {
  color: #fff;
}
.prog-total {
  color: #555;
}
.prog-track {
  height: 6px;
  border-radius: 99px;
  background: #2a2a3a;
  overflow: hidden;
}
.prog-fill {
  height: 100%;
  border-radius: 99px;
  transition: width 0.6s ease;
}
.fill-purple { background: #7F77DD; }
.fill-teal   { background: #1D9E75; }
.fill-amber  { background: #BA7517; }
.fill-coral  { background: #D85A30; }
.fill-blue   { background: #378ADD; }

.rank-name {
    margin-top: 1em;
}

/* Leaderboard */
.leaderboard-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #1a1a2e;
  border: 0.5px solid #2a2a3a;
  border-radius: 8px;
  padding: 12px 14px;
}
.leaderboard-pos {
  color: #f0b429;
  min-width: 48px;
  text-align: center;
}
.leaderboard-info {
  flex: 1;
}
.leaderboard-main {
  color: #fff;
}
.leaderboard-sub {
  color: #555;
  margin-top: 2px;
}

.Hero-Wrap {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}