.vote-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 20px 80px;
  text-align: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  background: #39ff14;
}

.glow-1 {
  top: -200px;
  left: -150px;
}

.glow-2 {
  bottom: -200px;
  right: -150px;
}

.vote-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.55rem 1rem;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  color: #9dff9d;

  margin-bottom: 2rem;
}

.vote-badge svg {
  color: #39ff14;
}

.vote-hero h1 {
  font-size: 3.6rem;

  margin: 0;

  line-height: 1.1;

  font-weight: 800;
}

.vote-hero p {
  max-width: 720px;

  margin: 2rem auto;

  color: #9ca3af;

  font-size: 1.05rem;

  line-height: 1.8;
}

.hero-buttons {
  display: flex;

  justify-content: center;

  gap: 1rem;

  flex-wrap: wrap;
}

.btn-vote {
  display: inline-flex;

  align-items: center;

  gap: 0.8rem;

  padding: 16px 30px;

  border-radius: 14px;

  background: #39ff14;

  color: #000;

  text-decoration: none;

  font-weight: 700;

  transition: 0.25s;
}

.btn-vote:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 35px rgba(57, 255, 20, 0.25);
}

.btn-secondary {
  display: inline-flex;

  align-items: center;

  padding: 16px 30px;

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  text-decoration: none;

  color: white;

  transition: 0.25s;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.vote-features {
  padding: 80px 20px;
}

.feature-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

  gap: 1.5rem;
}

.feature-card {
  background: #111;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 18px;

  padding: 2rem;

  transition: 0.25s;
}

.feature-icon {
  width: 58px;

  height: 58px;

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(57, 255, 20, 0.08);

  color: #39ff14;

  margin-bottom: 1.5rem;
}

.feature-card h3 {
  margin: 0 0 1rem;

  font-size: 1.3rem;
}

.feature-card p {
  color: #9ca3af;

  line-height: 1.7;
}

.vote-section {
  padding: 0 20px 100px;
}

.vote-panel {
  display: grid;

  grid-template-columns: 2fr 1fr;

  gap: 3rem;

  background: #111;

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  padding: 3rem;
}

.section-label {
  color: #39ff14;

  text-transform: uppercase;

  letter-spacing: 1px;

  font-size: 0.8rem;

  font-weight: 700;
}

.vote-content h2 {
  margin: 1rem 0;

  font-size: 2.4rem;
}

.vote-content p {
  color: #9ca3af;

  line-height: 1.8;
}

.vote-content ul {
  margin-top: 2rem;

  padding-left: 1.2rem;
}

.vote-content li {
  margin-bottom: 0.8rem;

  color: #d1d5db;
}

.vote-action {
  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;
}

.vote-button-large {
  display: inline-flex;

  align-items: center;

  gap: 0.8rem;

  background: #39ff14;

  color: #000;

  text-decoration: none;

  font-weight: 700;

  padding: 18px 34px;

  border-radius: 16px;

  transition: 0.25s;
}

.vote-button-large:hover {
  transform: translateY(-4px);

  box-shadow: 0 20px 40px rgba(57, 255, 20, 0.25);
}

.vote-action small {
  margin-top: 1rem;

  color: #888;
}

@media (max-width: 900px) {
  .vote-panel {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .vote-content ul {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .vote-hero {
    padding-top: 90px;
  }

  .vote-hero h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-vote,
  .btn-secondary,
  .vote-button-large {
    width: 100%;

    justify-content: center;
  }
}
