@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  font-family: 'Poppins', sans-serif;
  color: #e0ffe0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  text-align: center;
  padding: 30px;
  max-width: 900px;
  width: 90%;
  animation: fadeIn 1.5s ease-in-out;
}

.logo {
  width: 250px;
  height: 250px;
  animation: float 3s ease-in-out infinite;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.green {
  color: #66bb6a;
}

.subtitle {
  font-size: 1.1rem;
  color: #999;
  margin-bottom: 40px;
}

.vote-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.vote-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 25px;
  min-width: 250px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border 0.3s ease;
}

.vote-box:hover {
  border-color: #66bb6a;
}

.vote-box h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.vote-box a {
  display: inline-block;
  background: #66bb6a;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.vote-box a:hover {
  background: #5cae60;
  transform: scale(1.05);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.footer-text {
  margin-top: 60px;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}
