/* Voting Page Only — Black + White */

.vote-page {
  background: #000;
  color: #fff;
  min-height: 100vh;
  padding-top: 90px; /* fixed navbar space */
}

.vote-header {
  text-align: center;
  padding: 50px 20px 20px;
}

.vote-logo {
  width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.vote-title {
  font-family: 'Super-Comic', Arial, sans-serif;
  letter-spacing: 2px;
  font-size: 2.4rem;
  margin: 0;
}

.vote-subtitle {
  margin-top: 10px;
  opacity: 0.85;
  color: rgba(255,255,255,0.88);
}

/* Carousel wrapper */
.carousel {
  display: flex;
  justify-content: center;
  padding: 30px 14px 70px;
}

.slide-viewport {
  width: min(900px, 92vw);
}

/* Slides area */
.slides {
  position: relative;
  min-height: 520px;
}

.slide {
  display: none;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.55);
}

.slide.is-active {
  display: block;
}

.slide-title {
  margin: 0 0 10px;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
}

.slide-desc {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}

/* Voting options */
.options {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.option {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.option:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-1px);
}

.option input {
  transform: scale(1.15);
}

.option .name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.option .meta {
  margin-left: auto;
  font-size: 0.95rem;
  opacity: 0.85;
  color: rgba(255,255,255,0.85);
}

/* Footer: dots + counter */
.carousel-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-top: 14px;
  padding: 0 4px;
}

.footer-right {
  text-align: right;
}

.counter {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.status {
  margin: 6px 0 0;
  opacity: 0.85;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
}

/* Dots */
.dots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* Controls at bottom, side-by-side */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.15s ease;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.12);
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* Submit slide */
.submit-box {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}

.primary-btn {
  background: #fff;
  color: #000;
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.primary-btn:hover {
  background: #aaa;
  transform: scale(1.03);
}

.mono {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.9rem;
  overflow: auto;
}

/* Footer */
.vote-footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.vote-footer a {
  color: #fff;
}
