body {
    margin: 0;
    height: 100vh;
    background-color: black;
    font-family: Arial, sans-serif;
    color: white;
}

h1 {
  text-align: center;
}
/* Cím középen */
.center-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    text-align: center;
}

.title {
    font-size: 52px;
    font-weight: bold;
    background: linear-gradient(90deg, #d4af37, #b97cff, #4aa3ff, #d4af37);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 6s linear infinite;
}

/* Számláló a szöveg alatt */
.countdown {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

#timer {
    font-size: 32px;
    font-weight: bold;
    color: #f1d48a; /* picit halványabb arany */
}; /* ← sima fehér, ide bármilyen színt írhatsz */



/* ===== MOBIL FINOMHANGOLÁS ===== */
@media (max-width: 600px) {
  .title {
    font-size: 28px;
  }

  .divider {
    width: 90%;
  }

  .subcategory strong {
    font-size: 1.1em;
  }

  .subcategory label {
    font-size: 1em;
    padding: 12px;
  }
}

@keyframes gradientMove {
    from { background-position: 0%; }
    to { background-position: 300%; }
}

.vote-button {
    color: #f5d27a;
    text-decoration: none;
    font-weight: 700;
}