*, *::before, *::after {
  box-sizing: border-box;
}

/* App.css */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  max-width: 100vw;
  overflow-x: hidden;
  
}

.App-header {
  width: 100%;
  background-color: #111;
  padding: 20px 0;
  color: white;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

nav {
  margin-top: 10px;
}

nav a {
  margin: 0 15px;
  color: #888;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

footer p a {
      text-decoration: none;
    transition: 0.2s;
}

footer p a:hover {
      text-decoration: underline;
}

.aeo-section a {
     text-decoration: none;
    transition: 0.2s;
    color:#ff8614;
}

.aeo-section a:hover{
      text-decoration: underline;
}

nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}

h1 {
  color: white;
  margin-bottom: 0px;
}

.under-header {
  margin-top: 5px;
  color: rgb(92, 92, 92);
  font-size: 0.7rem;
}

textarea {
  width: 80%;
  max-width: 600px;
  height: 150px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #333;
  border-radius: 10px;
  background-color: #111;
  color: white;
  margin-bottom: 20px;
  resize: vertical;
}

.donate-link {
  width:170px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: linear-gradient(90deg, #FD0, rgb(162, 141, 0));
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(67, 67, 67, 0.3);
  transition-duration: 0.2s;
  text-decoration: none;
}

.kofi {
  background: linear-gradient(90deg, #72a4f2, #3e66a6);
}



.donate-link:hover {
  filter: brightness(1.2);
  transform: scale(1.1);
}

.donate-link:active {
  filter: brightness(1.3);
  transform: scale(1.2);
}

button {
  width:88px;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #ff007a, #6a00ff);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 0, 122, 0.3);
  transition-duration: 0.2s;
}

.buttons {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
}

button:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

button:active {
  filter: brightness(1.4);
  transform: scale(0.98);
}

.medium-btn {
  transform: scale(0.86);
}

.buttons-smol {
  display: flex;
  column-gap: 5px;
  transform: scale(0.86);
}

#send-msg {
  width: 50%;
}

@media  (max-width: 600px) {
  #send-msg {
    width: 75%;
  }
}


h2 {
  margin-top: 20px;
  color: #ccc;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.App-footer {
      text-align: center;
}

/* Contact section */
.App-Contact {
  padding: 20px;
  background-color: #111;
  width: 80%;
  max-width: 600px;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
  text-align: center;
  color: white;
}

.App-Contact input,
.App-Contact textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 16px;
  background-color: #222;
  color: white;
}

.App-Contact button {
  padding: 12px 24px;
  font-size: 16px;
  color: #fff;
  background: linear-gradient(90deg, #ff007a, #6a00ff);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(255, 0, 122, 0.3);
  text-align: center;
}

.App-Contact button:hover {
  filter: brightness(1.2);
}

.captcha {
  margin-bottom: 10px;
}

.captcha-error {
  color: red;
  font-size: 14px;
}

/* About and FAQ sections - centered block, left-aligned text, dark theme */
.aeo-section,
.faq-section {
  max-width: 700px;         /* Max width */
  margin: 40px auto;        /* Vertical spacing + center horizontally */
  padding: 20px;
  background-color: #111;   /* Dark background */
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1); /* subtle light glow */
  color: #ccc;              /* Light text */
}

/* Headings: centered and bright */
.aeo-section h2,
.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #fff;
}

.aeo-section h3,
.faq-section h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: #ddd;
}

/* Paragraphs and lists left aligned for readability */
.aeo-section p,
.aeo-section ul,
.aeo-section ol,
.faq-section p {
  text-align: left;
  line-height: 1.6;
  color: #aaa;
}

/* List spacing */
.aeo-section ul li,
.aeo-section ol li {
  margin-bottom: 8px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .aeo-section,
  .faq-section {
    padding: 15px 10px;
    max-width: 90%;
  }

  .App-Contact {
    width: 90%;
  }
}