/* ==========================================================================
   Yozza SMP — Vote page (vote.html)
   Vote-site cards in a responsive grid.
   ========================================================================== */

.vote-main {
  padding: 130px 0 120px;
}

.vote-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1.2;
}

.vote-lead {
  margin-top: 14px;
  font-size: 20px;
  color: #c9bdd1;
  max-width: 620px;
}

.vote-info {
  margin-top: 28px;
  padding: 18px 22px;
  background: rgba(240, 79, 234, 0.08);
  border: 1px solid rgba(240, 79, 234, 0.22);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.vote-info strong { color: var(--c-primary); }

.vote-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.vote-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: rgba(28, 10, 38, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color .25s ease, transform .25s ease;
}

.vote-card:hover {
  border-color: rgba(240, 79, 234, 0.4);
  transform: translateY(-3px);
}

.vote-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.vote-site {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-white);
}

.vote-cooldown {
  flex: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--c-primary);
}

.vote-desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #c9bdd1;
  flex: 1;
}

.vote-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  border-radius: var(--radius);
  background-color: var(--c-primary);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s var(--ease-site);
}

.vote-btn:hover { background-color: var(--c-primary-hover); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .vote-main { padding: 126px 0 80px; }
  .vote-title { font-size: 32px; }
  .vote-lead { font-size: 16px; }
}
