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

body {
  font-family: "Arial", sans-serif;
  background: #ff6b35 url("img/Desktop.webp") no-repeat center top fixed;
  background-size: contain;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

.background-link {
  display: block;
  width: 100%;
  height: 100vh;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 100%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.05) 2px,
      rgba(255, 255, 255, 0.05) 4px
    );
  pointer-events: none;
}

.container {
  max-width: 100%;
  margin: 0;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.revolution-hands {
  font-size: 6rem;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.fist {
  animation: wave 2s ease-in-out infinite;
  animation-delay: calc(var(--delay) * 0.2s);
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-20deg);
  }
}

.vote-text {
  font-size: 5rem;
  color: white;
  margin: 0;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.number-4 {
  font-size: 8rem;
  color: #ff5722;
  margin: 0;
  text-shadow: 4px 4px 0px #e64a19, 8px 8px 0px #d84315, 12px 12px 0px #bf360c;
  font-weight: 900;
  line-height: 0.8;
  display: inline-block;
  transform: perspective(500px) rotateX(15deg);
}

.election-text {
  font-size: 2.5rem;
  color: white;
  margin: 20px 0 40px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.vote-button {
  background: linear-gradient(45deg, #ff5722, #e64a19);
  color: white;
  border: 3px solid white;
  padding: 20px 50px;
  font-size: 1.8rem;
  border-radius: 50px;
  cursor: pointer;
  margin: 40px 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vote-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: linear-gradient(45deg, #e64a19, #d84315);
}

.candidates-section {
  margin: 40px 0;
  width: 100%;
}

.candidates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.candidate-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.candidate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  border-color: #ff5722;
}

.candidate-image {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  background: linear-gradient(45deg, #ecf0f1, #bdc3c7);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #7f8c8d;
  border: 3px solid #ff5722;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.candidate-title {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.candidate-description {
  font-size: 0.9rem;
  color: #7f8c8d;
  line-height: 1.4;
  text-align: center;
}

.tagline {
  font-size: 1.8rem;
  color: white;
  margin-top: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tagline .dot {
  color: #ff5722;
  font-size: 2rem;
  margin: 0 10px;
}

@media (max-width: 768px) {
  body {
    background: #ff6b35 url("img/Mobile.webp") no-repeat center center fixed;
    background-size: contain;
  }

  .vote-text {
    font-size: 3rem;
  }

  .number-4 {
    font-size: 5rem;
  }

  .election-text {
    font-size: 1.8rem;
  }

  .candidates-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .candidate-image {
    width: 100px;
    height: 100px;
    font-size: 2rem;
  }

  .candidate-title {
    font-size: 1rem;
  }

  .candidate-description {
    font-size: 0.8rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .revolution-hands {
    font-size: 4rem;
  }

  .vote-button {
    font-size: 1.4rem;
    padding: 15px 30px;
  }
}
