/* RefZone Referee Shortage Page - Public */
:root {
  --pink: #ff4f81;
  --purple: #8a2be2;
  --bg-light: #fdf4ff;
  --text-dark: #221133;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
}

.shortage-hero {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  animation: fadeIn 1s ease forwards;
}

.shortage-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.shortage-hero p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.stat {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1rem 1.5rem;
  text-align: center;
  width: 230px;
}

.stat .count {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--purple);
  white-space: nowrap;
}

.cause {
  background: #fff;
  margin: 1.5rem auto;
  padding: 1rem 1.5rem;
  max-width: 800px;
  border-left: 6px solid var(--pink);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.cause h3 {
  margin-top: 0;
  color: var(--purple);
}

.accordion {
  max-width: 800px;
  margin: 2rem auto;
}

.accordion .item {
  border: 1px solid var(--purple);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  background: var(--purple);
  color: #fff;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.accordion .content {
  display: none;
  padding: 1rem;
  background: #fff;
}

.accordion .item.open .content { display: block; }
.accordion .item.open button { background: var(--pink); }

.help-list {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.fun-fact {
  max-width: 800px;
  margin: 2rem auto;
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.fun-fact .options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.fun-fact button {
  background: var(--purple);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.fun-fact button:hover,
.fun-fact button:focus {
  background: var(--pink);
}

.fun-fact .feedback {
  margin-top: 1rem;
  font-weight: 700;
  color: var(--purple);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
