.vote-hero {
  position: relative;
  background: radial-gradient(circle at top left, rgba(47, 195, 107, 0.25), transparent 60%),
    radial-gradient(circle at top right, rgba(21, 91, 56, 0.45), transparent 65%),
    #030b05;
  overflow: hidden;
}

.vote-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 11, 5, 0) 0%, rgba(3, 11, 5, 0.85) 100%);
  pointer-events: none;
}

.vote-hero .container {
  position: relative;
  z-index: 1;
}


.vote-hero .page-title {
  margin-bottom: 28px;
}

.vote-hero .page-title .sec-title {
  color: #ffffff;
}

.vote-hero__description {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
  margin: 20px auto 0;
}

.vote-status {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  justify-content: center;
}

.vote-status__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  background: rgba(3, 11, 5, 0.65);
  border: 1px solid rgba(47, 195, 107, 0.35);
}

.vote-status__item i {
  color: #2fc36b;
  font-size: 16px;
}

.vote-app {
  padding: 40px 0 80px;
}

.vote-panel {
  margin-bottom: 48px;
  padding: 32px;
  border-radius: 16px;
  background: rgba(3, 11, 5, 0.75);
  border: 1px solid rgba(47, 195, 107, 0.2);
}

.vote-panel__heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.vote-panel__heading h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #ffffff;
}

.vote-panel__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.vote-panel__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vote-panel__meta i {
  color: #2fc36b;
}

.vote-feedback__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.vote-feedback__meta {
  margin: 6px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

.vote-alert {
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 24px;
  background: rgba(21, 91, 56, 0.12);
  border: 1px solid rgba(47, 195, 107, 0.35);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.vote-alert i {
  color: #2fc36b;
  margin-top: 4px;
}

.vote-alert.is-error {
  border-color: rgba(255, 91, 91, 0.45);
  background: rgba(132, 32, 32, 0.18);
}

.vote-alert.is-error i {
  color: #ff5b5b;
}

.vote-alert.is-success {
  border-color: rgba(159, 232, 112, 0.6);
  background: rgba(47, 195, 107, 0.2);
  color: rgba(241, 255, 235, 0.92);
}

.vote-alert.is-success i {
  color: #9fe870;
}

.vote-grid {
  display: grid;
  gap: 24px;
}

.vote-grid--winners {
  align-items: stretch;
}

.vote-toast {
  position: sticky;
  top: 16px;
  z-index: 5;
  margin: 0 auto 24px;
  max-width: 420px;
  box-shadow: 0 18px 38px rgba(3, 11, 5, 0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
  opacity: 0;
  transform: translateY(-10px);
}

.vote-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.vote-toast.is-dismissing {
  opacity: 0;
  transform: translateY(-14px);
}

body.page-monument-vote .vote-hero {
  padding-top: calc(var(--section-space) + var(--sticky-header-offset));
  padding-bottom: calc(var(--section-space) * 0.45);
}

@media (max-width: 991px) {
  body.page-monument-vote .vote-hero {
    padding-top: calc(var(--section-space-mobile) + var(--sticky-header-offset));
    padding-bottom: calc(var(--section-space-mobile) * 0.6);
  }
}

@media (min-width: 768px) {
  .vote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .vote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.vote-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(3, 11, 5, 0.7);
  border: 1px solid rgba(47, 195, 107, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.vote-card.is-winner {
  border-color: rgba(255, 206, 115, 0.6);
  box-shadow: 0 18px 42px rgba(255, 206, 115, 0.22);
}

.vote-card.is-final {
  border-color: rgba(47, 195, 107, 0.32);
}

.vote-card.is-selectable:hover {
  border-color: rgba(47, 195, 107, 0.55);
  transform: translateY(-2px);
}

.vote-card.is-locked {
  cursor: default;
}

.vote-card.is-submitting {
  cursor: wait;
  opacity: 0.75;
}

.vote-card.is-submitting .vote-card__action {
  pointer-events: none;
}

.vote-card.is-locked:not(.is-selected) {
  border-color: rgba(47, 195, 107, 0.28);
  box-shadow: none;
  transform: none;
}

.vote-card__media {
  position: relative;
  padding-top: 60%;
  overflow: hidden;
}

.vote-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vote-card__body {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vote-card__status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 206, 115, 0.14);
  border: 1px solid rgba(255, 206, 115, 0.4);
  color: rgba(255, 242, 214, 0.92);
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
}

.vote-card__status-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 206, 115, 0.2);
  border: 1px solid rgba(255, 206, 115, 0.45);
  color: rgba(255, 242, 214, 0.92);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  padding: 0 10px;
}

.vote-card__status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vote-card__status-label i {
  color: rgba(255, 206, 115, 0.85);
}

.vote-card__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.vote-card__title h3 {
  font-size: 20px;
  margin: 0;
  flex: 1;
  color: #ffffff;
}

.vote-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.vote-card__summary {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.vote-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vote-card__badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(21, 91, 56, 0.25);
  border: 1px solid rgba(47, 195, 107, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  color: rgba(159, 232, 112, 0.92);
}

.vote-card__badge--green {
  background: rgba(21, 91, 56, 0.25);
  border-color: rgba(47, 195, 107, 0.35);
  color: rgba(159, 232, 112, 0.92);
}

.vote-card__badge--blue {
  border-color: rgba(79, 160, 255, 0.45);
  background: rgba(79, 160, 255, 0.15);
  color: rgba(153, 204, 255, 0.95);
}

.vote-card__badge--red {
  border-color: rgba(255, 112, 112, 0.45);
  background: rgba(255, 112, 112, 0.15);
  color: rgba(255, 175, 175, 0.95);
}

.vote-card__badge--custom {
  border-color: rgba(144, 155, 255, 0.4);
  background: rgba(144, 155, 255, 0.15);
  color: rgba(210, 214, 255, 0.95);
}

.vote-card__footer {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.vote-card__footer--results {
  justify-content: space-between;
}
.vote-card__action {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(47, 195, 107, 0.45);
  background: rgba(47, 195, 107, 0.18);
  color: #9fe870;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.vote-card__action-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.vote-card__action-label i {
  font-size: 0.95rem;
}

.vote-card__action:hover {
  border-color: rgba(47, 195, 107, 0.7);
  background: rgba(47, 195, 107, 0.28);
  color: #b4f68b;
}

.vote-card__action:focus-visible {
  outline: 2px solid rgba(159, 232, 112, 0.8);
  outline-offset: 2px;
}

.vote-card__action.is-active {
  background: #2fc36b;
  border-color: rgba(47, 195, 107, 0.95);
  color: #030b05;
  box-shadow: 0 12px 30px rgba(47, 195, 107, 0.35);
}

.vote-card__action.is-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.75;
  box-shadow: none;
}

.vote-card.is-selected .vote-card__action.is-disabled {
  opacity: 1;
  box-shadow: 0 12px 30px rgba(47, 195, 107, 0.35);
}

.vote-card.is-locked .vote-card__action {
  background: rgba(47, 195, 107, 0.16);
  border-color: rgba(159, 232, 112, 0.45);
  color: #9fe870;
}

.vote-card__tally {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}

.vote-card__tally--final {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 242, 214, 0.92);
}

.vote-card__result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vote-card__result i {
  color: rgba(255, 206, 115, 0.8);
}

.vote-card.is-selected {
  border-color: rgba(159, 232, 112, 0.85);
  box-shadow: 0 0 0 1px rgba(47, 195, 107, 0.45), 0 18px 40px rgba(47, 195, 107, 0.25);
  transform: translateY(-2px);
}

.vote-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.vote-actions__meta {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.vote-actions__meta.is-locked {
  color: #9fe870;
  font-weight: 600;
}

.vote-actions .th-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vote-actions .th-btn.is-locked {
  background: rgba(47, 195, 107, 0.18);
  border-color: rgba(159, 232, 112, 0.55);
  color: #9fe870;
  cursor: default;
  pointer-events: none;
}

.vote-actions .th-btn.is-locked i {
  color: #9fe870;
}

.vote-actions .th-btn.is-loading {
  cursor: wait;
  opacity: 0.8;
  pointer-events: none;
}

.vote-results__container {
  margin-top: 40px;
}

.vote-results {
  margin-top: 0;
  padding: 18px 20px;
  border-radius: 14px;
  background: rgba(3, 11, 5, 0.65);
  border: 1px solid rgba(47, 195, 107, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.vote-results__heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.vote-results__heading i {
  color: #2fc36b;
}

.vote-results__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(21, 91, 56, 0.14);
  border: 1px solid rgba(47, 195, 107, 0.22);
}

.vote-results__row.is-leading {
  background: rgba(47, 195, 107, 0.22);
  border-color: rgba(159, 232, 112, 0.55);
  box-shadow: 0 12px 26px rgba(47, 195, 107, 0.25);
}

.vote-results__row.is-runner-up {
  border-color: rgba(79, 160, 255, 0.35);
}

.vote-results__position {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 700;
  color: #2fc36b;
  background: rgba(47, 195, 107, 0.18);
  border: 1px solid rgba(47, 195, 107, 0.35);
}

.vote-results__row.is-leading .vote-results__position {
  background: #2fc36b;
  color: #030b05;
  border-color: rgba(47, 195, 107, 0.95);
}

.vote-results__name {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.vote-results__votes {
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.vote-winners__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  margin-bottom: 26px;
  border-radius: 16px;
  background: rgba(3, 11, 5, 0.65);
  border: 1px solid rgba(255, 206, 115, 0.35);
  color: rgba(255, 255, 255, 0.85);
}

.vote-winners__summary h3 {
  margin: 0 0 6px;
  color: #fff2d6;
  font-size: 22px;
  font-weight: 600;
}

.vote-winners__summary p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
}

.vote-winners__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 206, 115, 0.16);
  border: 1px solid rgba(255, 206, 115, 0.35);
  color: #ffce73;
  font-size: 20px;
}

.vote-empty {
  text-align: center;
  padding: 60px 20px;
  border-radius: 16px;
  border: 1px dashed rgba(47, 195, 107, 0.25);
  background: rgba(3, 11, 5, 0.55);
  color: rgba(255, 255, 255, 0.68);
}

.vote-loader {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.vote-loader span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(47, 195, 107, 0.4);
  border-top-color: #2fc36b;
  animation: vote-spin 0.8s linear infinite;
}

@keyframes vote-spin {
  to {
    transform: rotate(360deg);
  }
}
