.contact {
  background: var(--bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--aura-blue);
  margin-bottom: 16px;
}

.title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.description {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.links {
  display: flex;
  gap: 16px;
}

.socialLink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.socialLink:hover {
  border-color: var(--aura-blue);
  box-shadow: 0 0 20px rgba(74, 158, 255, 0.15);
}

/* Voter Section */
.voter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-align: center;
}

.voteButton {
  position: relative;
  padding: 24px 48px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(74, 158, 255, 0.05) 100%);
  border: 2px solid var(--aura-blue);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.voteButton::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--aura-blue) 0%, rgba(74, 158, 255, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.voteButton:hover:not(:disabled)::before {
  opacity: 1;
}

.voteButton:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 0 40px rgba(74, 158, 255, 0.4);
}

.voteButton span {
  position: relative;
  z-index: 1;
}

.voteButton:disabled {
  cursor: not-allowed;
}

.voteButton.voted {
  background: linear-gradient(135deg, rgba(74, 158, 255, 0.2) 0%, rgba(74, 158, 255, 0.1) 100%);
  border-color: var(--aura-blue);
  cursor: default;
}

.voteButton.voted::before {
  opacity: 0.3;
}

.checkmark {
  margin-right: 8px;
  font-size: 20px;
}

.votingText {
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.voteCount {
  margin-top: 24px;
  font-size: 15px;
  color: var(--text-secondary);
}

.countNumber {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--aura-blue) 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countLabel {
  color: var(--text-secondary);
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 24px;
  text-align: center;
}

.footerContent {
  max-width: 1200px;
  margin: 0 auto;
}

.footerLogo {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.footerText {
  font-size: 14px;
  color: var(--text-secondary);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.copyright {
  font-size: 13px;
  color: var(--text-secondary);
  opacity: 0.6;
}

@media (max-width: 968px) {
  .content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .title {
    font-size: 36px;
  }

  .voter {
    padding: 40px 24px;
  }

  .voteButton {
    padding: 20px 36px;
    font-size: 16px;
  }

  .links {
    flex-direction: column;
  }
}
