/* Super Sete color overrides for diadesorte-resultado.css shared styles */
:root {
  --accent: #85be4d;
  --accent-dark: #5a9e2f;
}

/* Ball gradient: Super Sete lime-green */
.res-ball {
  background: linear-gradient(135deg, #9ed160 0%, #5a9e2f 100%);
  box-shadow: 0 8px 16px rgba(133, 190, 77, 0.2), inset 0 2px 4px rgba(255, 255, 255, 0.5), inset 0 -2px 4px rgba(0, 0, 0, 0.15);
}
.res-ball:hover {
  box-shadow: 0 12px 20px rgba(133, 190, 77, 0.35), inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

/* Banner shadow */
.res-banner {
  box-shadow: 0 10px 25px rgba(133, 190, 77, 0.15);
}

/* Top tier prize card: lime-green */
.res-prize-card.top-tier {
  background: #f5faea;
  border-color: rgba(133, 190, 77, 0.35);
}
.res-prize-card.top-tier:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 25px rgba(133, 190, 77, 0.2);
}
.res-prize-card.top-tier .res-prize-tier { color: var(--accent-dark); }
.res-prize-card.top-tier .res-prize-value { color: var(--accent-dark); }

/* Digit columns — Super Sete special display */
.res-digit-cols {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}
.res-digit-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.res-digit-col-label {
  font-size: 10px;
  color: #9ca3af;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.res-digit {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9ed160 0%, #5a9e2f 100%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(133, 190, 77, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.res-digit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(133, 190, 77, 0.4);
}

/* Stats CTA badge + button */
.res-stats-badge { background: var(--accent) !important; }
.stats-primary-btn {
  background: var(--accent) !important;
  box-shadow: 0 4px 12px rgba(133, 190, 77, 0.25) !important;
}
.stats-primary-btn:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 6px 15px rgba(90, 158, 47, 0.3) !important;
}
