/* Statistics Panel Styles */

.statistics-content {
  padding: 5px;
}

.stats-section {
  margin-bottom: 25px;
  padding: 15px;
  background: linear-gradient(135deg, #16213e 0%, #1a2640 100%);
  /* Dark blue */
  border-radius: 8px;
  border: 1px solid #34495e;
}

.stats-section h3 {
  margin: 0 0 15px 0;
  color: #f39c12;
  /* Orange headers */
  font-size: 1.1em;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 8px;
}

.stats-section h4 {
  margin: 12px 0 8px 0;
  color: #ecf0f1;
  /* Light text */
  font-size: 0.95em;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.stat-card {
  text-align: center;
  padding: 15px;
  background: rgba(0, 0, 0, 0.3);
  /* Darker bg */
  border-radius: 8px;
  border: 2px solid #34495e;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: #f39c12;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.4);
}

.stat-value {
  font-size: 2em;
  font-weight: bold;
  color: #f39c12;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85em;
  color: #7f8c8d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Progress Stats */
.progress-stats {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Stat Rows */
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ecf0f1;
  font-size: 0.95em;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-row span {
  color: #95a5a6;
  /* Light grey */
}

.stat-row strong {
  color: #ecf0f1;
  /* Light text */
  font-size: 1.05em;
}

/* Genre Stats */
.genre-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Exploration Stats */
.exploration-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Economy Stats */
.economy-stats {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Top Musicians List */
.top-musicians ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.top-musicians li {
  padding: 8px 12px;
  margin: 4px 0;
  background: rgba(0, 0, 0, 0.3);
  /* Dark bg */
  border-left: 3px solid #f39c12;
  border-radius: 4px;
  font-size: 0.9em;
  color: #bdc3c7;
  /* Light text */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-musicians li strong {
  color: #f39c12;
  font-size: 1.1em;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .stat-card {
    padding: 12px;
  }

  .stat-value {
    font-size: 1.5em;
  }

  .stats-section {
    padding: 12px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}