/* SpawnScape614 vote page — extends style.css */

.vote-name-panel {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--green-border);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
  margin-bottom: 1.25rem;
}

.vote-name-panel label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.vote-name-panel input {
  flex: 1 1 220px;
  min-width: 180px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(5, 15, 5, 0.8);
  border: 1px solid var(--green-border);
  border-radius: 8px;
}

.vote-name-panel input:focus {
  outline: none;
  border-color: var(--green-neon);
  box-shadow: 0 0 0 3px rgba(57, 255, 20, 0.15);
}

.vote-name-panel .hint {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.vote-banner {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--green-border);
  background: var(--bg-panel-light);
  font-size: 0.92rem;
}

.vote-banner.ok {
  border-color: rgba(57, 255, 20, 0.45);
  color: var(--green-neon);
}

.vote-banner.warn {
  border-color: rgba(255, 120, 80, 0.45);
  color: #ff9a7a;
}

.vote-banner.info {
  color: var(--text);
}

.vote-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(280px, 420px);
  margin-bottom: 1.5rem;
}

.vote-site-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.35rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--green-border);
  background: var(--bg-panel);
  box-shadow: var(--shadow);
}

.vote-site-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  margin: 0;
  color: var(--green-neon);
}

.vote-site-card .vote-status {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.vote-site-card .vote-status.claimable { color: var(--green-neon); }
.vote-site-card .vote-status.cooldown { color: #ff9a7a; }
.vote-site-card .vote-status.pending { color: var(--gold); }

.vote-site-card .vote-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.vote-site-card .vote-meta strong {
  color: var(--gold);
}

.vote-site-card .btn-vote {
  margin-top: auto;
  display: inline-block;
  padding: 0.75rem 1.2rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: #031003;
  background: linear-gradient(180deg, var(--green-neon), #2ecc1a);
  border: 1px solid var(--green-glow);
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.15s;
}

.vote-site-card .btn-vote:hover:not([aria-disabled="true"]) {
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.35);
}

.vote-site-card .btn-vote[aria-disabled="true"] {
  opacity: 0.55;
  cursor: not-allowed;
  background: #2a4a2a;
  color: var(--text-muted);
  border-color: var(--green-border);
}

.vote-odds-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.vote-odds-card {
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid var(--green-border);
  background: rgba(8, 24, 8, 0.75);
}

.vote-odds-card h4 {
  font-family: 'Cinzel', serif;
  color: var(--green-neon);
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.vote-odds-card .pct {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.vote-odds-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.vote-odds-card.rare {
  border-color: rgba(212, 175, 55, 0.45);
}

.vote-odds-card.rare .pct {
  color: var(--purple);
}
