* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #010408, #071329);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

/* Titles */

.main-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 50px;
  opacity: 0.9;
}

/* Candidate Cards */

.candidates {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.card {
  width: 400px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 25px;
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.18);
}

.card img {
  display: block;
  margin: 0 auto 20px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
}

.card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

/* Announcement Section */

.announcement {
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 25px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.announcement h4 {
  margin-bottom: 10px;
  font-weight: 600;
}

.announcement p {
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Button */

.vote-button {
  margin-top: 10px;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  background: linear-gradient(45deg, #3396b3, #0072ff);
  color: #fff;
  transition: 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */

@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .candidates {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .card {
    width: 100%;
    max-width: 320px;
  }
}

