body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #5C2B2E;
  color: white;
    padding: 0 10px;
}

html, body {
  overflow-x: hidden;
}


.container {
  max-width: 600px;
  margin: 40px auto;
  padding: 20px;
  background-color: #000;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

h1, h2 {
  text-align: center;
  color: #FFB700;
}

.site-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-bottom: 10px;
  padding-bottom: 0px;
}





form {
  border: 2px solid #FFB700; /* Gold border */
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  background-color: #111; /* Optional darker background inside form */
}


form label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: none;
  border-radius: 5px;
  box-sizing: border-box;
}

button {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background-color: #FFB700;
  color: #5C2B2E;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background-color: #e6a600;
}

.summary {
  margin-top: 30px;
}

#pledgeList {
  margin-top: 20px;
}

.pledge-entry {
  padding: 10px;
  background-color: #222;
  border-radius: 6px;
  margin-bottom: 10px;
  border-left: 5px solid #FFB700;
}

.already-pledged {
  background-color: #222;
  padding: 15px;
  border-radius: 6px;
  color: #FFB700;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  animation: pulseGlow 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 rgba(255, 183, 0, 0.7);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 183, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 10px 12px rgba(255, 183, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 183, 0, 0);
  }
}





.logo-container {
  text-align: center;
  margin-bottom: 10px;
}

.top-logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 0 5px black);
}

.main-question {
  background: linear-gradient(to right, #FFB700, #e68a00);
  color: #ffffff; /* Pure white text */
  font-size: 24px;
  font-weight: bold;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(255, 183, 0, 0.7);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* stronger contrast */
}

.fan-message {
  background: linear-gradient(to right, #e68a00, #FFB700);
  color: #ffffff; /* Pure white text */
  font-size: 24px;
  font-weight: bold;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(255, 183, 0, 0.7);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* stronger contrast */
}

.twitter-share {
  display: block;
  margin: 20px auto;
  color: #1DA1F2;
  font-weight: bold;
  text-decoration: underline;
  text-align: center;
  font-size: 18px;
}


.twitter-share:hover {
  color: #FFB700;
}


#loadMoreBtn {
  background-color: #FFB700;
  color: #5C2B2E;
  font-weight: bold;
  border: none;
  padding: 10px 16px;
  border-radius: 5px;
  margin: 20px auto 0;
  display: block;
  cursor: pointer;
}

#loadMoreBtn:hover {
  background-color: #e6a600;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-weight: bold;
  color: #ffffff;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
}

.main-question,
.pledge-totals {
  font-family: Arial, sans-serif !important;
  letter-spacing: 0 !important;
  line-height: 1.3 !important;
}


.pledge-totals {
  background: linear-gradient(to right, #FFB700, #e68a00);
  color: #ffffff; /* Pure white text */
  font-size: 24px;
  font-weight: bold;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: 0 0 25px rgba(255, 183, 0, 0.7);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8); /* stronger contrast */
}


.pledge-totals div {
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
}

.newly-submitted {
  animation: glowHighlight 2.5s ease-in-out;
  background-color: #333 !important;
  border-left: 5px solid #FFB700 !important;
}

@keyframes glowHighlight {
  0% {
    background-color: #FFB700;
    color: #5C2B2E;
  }
  50% {
    background-color: #333;
    color: white;
  }
  100% {
    background-color: #222;
    color: white;
  }
}

.disclaimer {
  font-size: 12px;
  color: #ffcc80; /* soft gold */
  margin-top: 10px;
  text-align: center;
}
