/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f0f4f8;
  color: #2d3748;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #6e8efb, #4a6cf7);
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 5px solid #ff9f43;
}

header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

header p {
  margin: 10px 0 0;
  font-size: 1.3rem;
  font-weight: 300;
}

main {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

section {
  margin-bottom: 40px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

h2 {
  color: #4a6cf7;
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #4a5568;
}

ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 20px;
}

li {
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

li::before {
  content: "•";
  color: #ff9f43;
  font-size: 1.5rem;
  margin-right: 10px;
}

a {
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

button {
  background: linear-gradient(135deg, #ff9f43, #ff7e5f);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
}

button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(255, 159, 67, 0.3);
}

footer {
  background: #2d3748;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
  font-size: 0.9rem;
}

/* Specific Styles for the "Help Us Test" Page */
#test li {
  margin-bottom: 15px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  display: block; /* Changed from flex to block for better text flow */
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

#test li strong {
  display: inline-block; /* Ensures the strong text stays inline */
  margin-right: 5px; /* Adds spacing between strong text and the rest */
}

#test li a {
  color: #4a6cf7;
  text-decoration: none;
  font-weight: 600;
}

#test li a:hover {
  text-decoration: underline;
}

#test li::before {
  content: "•";
  color: #ff9f43;
  font-size: 1.5rem;
  margin-right: 10px;
  vertical-align: middle; /* Aligns the bullet with the text */
}

#test button {
  margin-top: 25px;
}

/* Add a playful animation to the header */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

header h1 {
  animation: float 3s ease-in-out infinite;
}

/* Changelog Specific Styles */
#changelog .update {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#changelog .update:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

#changelog .update h3 {
  color: #4a6cf7;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

#changelog .update .update-date {
  color: #666;
  font-size: 0.9rem;
  font-weight: 400;
}

#changelog .update h4.section-title {
  color: #4a6cf7;
  font-size: 1.2rem;
  margin-top: 20px;
  margin-bottom: 10px;
  border-bottom: 2px solid #ff9f43;
  padding-bottom: 5px;
}

#changelog .update ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

#changelog .update ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Specific Styles for New Features */
#changelog .update ul.new-features li::before {
  content: "🆕";
  color: #4a6cf7;
  margin-right: 10px;
}

/* Specific Styles for Bug Fixes */
#changelog .update ul.bug-fixes li::before {
  content: "🐛";
  color: #ff9f43;
  margin-right: 10px;
}

/* Specific Styles for Removed */
#changelog .update ul.removed li::before {
  content: "❌";
  color: #ff6b6b;
  margin-right: 10px;
}

.faq-item {
      margin-bottom: 1em;
    }

.faq-question {
    cursor: pointer;
    font-weight: 600;
    color: #007BFF;
    display: inline-block;
}

.faq-answer {
    display: none;
    margin-top: 0.5em;
    padding-left: 1em;
    color: #333;
}
