/* pages/stadium.css - 球场管理 Premium */
.stadium-header {
  text-align: center; padding: var(--sp-4) var(--sp-3);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-3);
  box-shadow: var(--shadow-xs);
  border: 1px solid rgba(0,0,0,0.04);
}
.stadium-header h2 { font-size: 20px; font-weight: 800; }
.stadium-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
  border: 1px solid var(--gray-200);
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.stadium-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-light), transparent);
  opacity: 0.5;
}
.stadium-level { margin-bottom: var(--sp-2); position: relative; }
.stadium-name { font-size: 22px; font-weight: 800; color: var(--green-primary); }
.stadium-level-badge {
  font-size: 13px; color: var(--gray-500); font-weight: 600;
  background: var(--gray-100); padding: 2px 10px;
  border-radius: var(--radius-full); display: inline-block;
}
.stadium-capacity { margin-bottom: var(--sp-4); position: relative; }
.stadium-capacity h3 { font-size: 28px; color: var(--gray-800); font-weight: 800; }
.stadium-capacity h3 span { font-size: 14px; color: var(--gray-500); font-weight: 500; }
.stadium-upgrading {
  padding: var(--sp-2); font-size: 13px; color: var(--gray-500);
  background: var(--gold-light); border-radius: var(--radius-sm);
  position: relative;
}

/* 设施 */
.facilities-section { }
.facilities-list {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
}
.facility-item {
  display: flex; align-items: center;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--gray-100);
  gap: var(--sp-3);
}
.facility-item:last-child { border-bottom: none; }
.facility-info { flex: 1; }
.facility-name { font-weight: 700; font-size: 15px; }
.facility-level {
  font-size: 12px; color: var(--gray-500); font-weight: 600;
  margin-left: var(--sp-1);
}
.facility-desc { font-size: 12px; color: var(--gray-500); margin-top: 2px; }
.facility-action { }
