body { font-family: 'Inter', sans-serif; }
.pulse {
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.fade-in {
  animation: fadeIn 1s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-up {
  animation: slideUp 0.5s ease-in-out;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-down {
  animation: slideDown 0.3s ease-out;
}

.soon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: red;
    color: white;
    border-radius: 50%;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    display: none;  /* Inizialmente nascosto */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

#download-win.disabled, #download-mac.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.toast {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 1000;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.faq-answer {
  margin-top: 0px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.faq-answer.show {
  max-height: 200px;
  opacity: 1;
}
#language-switch {
  z-index: 10;
}

/* Privacy */
#privacy-text ul {
  margin-left: 20px;
  padding-left: 20px;
  list-style-type: disc;
}

#privacy-text li {
  margin-bottom: 10px;
  line-height: 1.5;
}

#privacy-text h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

#privacy-text h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

#privacy-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}
