/* --- Statistics page styles --- */
.statistics-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 0 40px 0;
}
.stat-card {
  background: #FF2E93;
  border-radius: 20px;
  border: 4px solid #222;
  padding: 30px 10px 24px 10px;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 4px 8px 0 #2d1a5a44;
}
.stat-icon-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.stat-icon {
  font-size: 48px !important;
  color: #fff;
}
.stat-number {
  color: #fff;
  font-size: 56px;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 4px;
}
.stat-label {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
}
.section-card {
  background: #fff;
  border-radius: 20px;
  border: 4px solid #222;
  padding: 24px 10px 18px 10px;
  margin-bottom: 28px;
  box-shadow: 4px 8px 0 #2d1a5a44;
}
.section-title {
  color: #222;
  text-align: center;
  margin-bottom: 8px;
  font-size: 24px;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
}
.divider {
  height: 3px;
  background: #222;
  margin: 16px 0;
  border-radius: 2px;
}
.items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.list-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  border: 3px solid #222;
  margin-bottom: 0;
}
.rank-badge {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: #00D9FF;
  border: 3px solid #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-right: 12px;
}
.item-content {
  flex: 1;
}
.item-label {
  color: #222;
  font-size: 18px;
  font-family: 'Fredoka', Arial, sans-serif;
  font-weight: 700;
}
@media (max-width: 600px) {
  .statistics-container { padding: 8px 0 20px 0; }
  .stat-card, .section-card { padding: 16px 4px 10px 4px; }
  .stat-number { font-size: 36px; }
  .section-title { font-size: 18px; }
  .item-label { font-size: 15px; }
  .rank-badge { width: 28px; height: 28px; font-size: 13px; }
}
