/* Minimal modern dark design */
body {
  background-color: #111;
  color: #eee;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

.hidden {
  display: none;
}

/* Push animation */
@keyframes pushAnim {
  0% { transform: scale(1); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1); }
}

.push {
  animation: pushAnim 0.15s ease-in-out;
}

header {
  text-align: center;
  padding: 80px 20px 40px;
}

header h1 {
  font-size: 3.5rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 1px;
  cursor: pointer;
}

header p {
  font-size: 1.1rem;
  color: rgba(238,238,238,0.6);
  margin-top: 8px;
}

.faq {
  width: 90%;
  max-width: 600px;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  padding: 18px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.faq-item:hover {
  background-color: #222;
}

.faq-question {
  font-weight: 500;
  font-size: 1.2rem;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  margin-top: 10px;
  color: rgba(238, 238, 238, 0.8);
  line-height: 1.5;
  padding: 0 0;
}

.faq-item.active .faq-answer {
  padding-top: 8px;
}

footer {
  margin-top: auto;
  padding: 25px 20px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(238,238,238,0.6);
}

a {
  color: #4da6ff;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #80c1ff;
}

/* Clicker Game */
#clicker-game {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  gap: 20px;
  opacity: 0;
}

#clicker-img {
  width: 150px;
  height: 150px;
  cursor: pointer;
}

#click-count {
  font-size: 1.5rem;
}
