/* auteur : Z3S_2 */

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-size: 300% 300%;
  color: white;
  position: relative;
}

.container {
  width: 100%;
  max-width: 900px;
  padding: 40px;
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  position: relative;
  z-index: 10;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.logo-container .logo {
  width: 60px;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(180, 50, 255, 0.589));
}

h1 {
  font-family: "Press Start 2P", cursive;
  font-size: 1.8rem;
  margin: 0;
  color: #fff;
  text-shadow: 0 0 8px #e98a4f;
  line-height: 1.2;
  text-align: center;
}

.intro {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 30px;
  text-align: center;
}

.green {
  color: #a239cd;
  font-weight: 600;
}

.gold {
  color: #facc15;
  font-weight: 600;
}

.vote-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 500px;
  margin-bottom: 20px;
}

.vote-btn {
  background: linear-gradient(90deg, #e98a4f, #533121);
  color: white;
  text-decoration: none;
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vote-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(179, 95, 52, 0.2);
}

.info-blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}

.rewards,
.commands {
  text-align: center;
  width: 100%;
}

.rewards ul,
.rewards li,
.commands ul,
.commands li {
  list-style: none;
  padding: 0;
  margin: 0 0 6px 0;
  text-align: inherit;
}

.nested {
  margin-top: 6px;
  font-size: 0.85rem;
  opacity: 0.9;
}

footer {
  font-size: 0.75rem;
  color: #aaa;
  margin-top: 30px;
  text-align: center;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
  .container {
    padding: 25px;
    margin-top: 100px;
  }

  h1 {
    font-size: 1.8rem;
    text-align: center;
  }

  .logo-container {
    gap: 10px;
  }

  .logo-container .logo {
    width: 50px;
  }

  .vote-links {
    flex-direction: column;
    gap: 12px;
  }

  .vote-btn {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .info-blocks {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }

  .rewards,
  .commands {
    text-align: left;
    width: 100%;
  }

  .rewards ul,
  .commands ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

@media (min-width: 1025px) {
  .container {
    padding: 50px;
    max-width: 1000px;
  }

  .logo-container .logo {
    width: 80px;
  }

  h1 {
    font-size: 2rem;
    text-align: left;
  }

  .intro {
    text-align: center;
  }

  .info-blocks {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin: 0 auto 40px auto;
  }

  .rewards,
  .commands {
    text-align: center;
    width: 100%;
  }

  .vote-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .vote-btn {
    flex: 1 1 calc(25% - 20px);
    max-width: 220px;
    min-width: 150px;
    padding: 12px 50px;
    font-size: 0.75rem;
    text-align: center;
  }
}
