* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Cinzel', serif;
}

body {
  background: url('pledge.jpg') no-repeat center center fixed;
  background-size: cover;
}

.site-header {
  position: fixed;
  top: 20px;
  right: 20px;
}

.menu-button {
  background-color: #FFD700; /* Gold */
  color: black;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
}

.menu-content {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.95);
  flex-direction: column;
  border-radius: 5px;
  min-width: 200px;
}

.menu-content a {
  padding: 12px 18px;
  color: #00FF00; /* Neon green */
  text-decoration: none;
  font-size: 16px;
}

.menu-content a:hover {
  background-color: #FFD700;
  color: black;
}

.pledge {
  padding: 100px 20px;
  text-align: center;
}

.content-container {
  display: inline-block;
  padding: 30px 50px;
  max-width: 800px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  box-shadow: none !important; /* Prevent container glow */
  outline: none !important;
}

.main-title, .pledge-text, .sub-title, .pledge-counter {
  text-shadow: none !important; /* Remove text glow */
  box-shadow: none !important;
  outline: none !important;
  filter: none !important; /* Remove any filter effects */
}

.main-title {
  font-size: 4.5em;
  color: #00FF00;
}

.pledge-text {
  font-size: 1.5em;
  color: #00FF00;
  margin: 20px 0;
}

.cta-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #FFD700;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  box-shadow: none !important;
  outline: none !important;
}

.cta-button:hover {
  background-color: #E6C200;
}

.sub-title {
  font-size: 2em;
  color: #00FF00;
  margin-bottom: 20px;
}

.pledge-counter {
  font-size: 1.8em;
  color: #00FF00;
  margin: 10px 0;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 10px;
  border-radius: 5px;
}

#pledge-count {
  color: #FFD700;
  font-weight: 900;
}

#jotform-container, #jotform-container iframe {
  margin: 20px auto;
  box-shadow: none !important; /* Remove iframe glow */
  border: none !important;
  outline: none !important;
  filter: none !important;
}

.share-buttons {
  margin: 20px 0;
  text-align: center;
}

.share-btn {
  display: inline-block;
  padding: 10px 15px;
  margin: 0 5px;
  color: black;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  box-shadow: none !important;
  outline: none !important;
}

.share-btn.facebook {
  background-color: #3B5998;
}

.share-btn.twitter {
  background-color: #00acee;
}

.share-btn.linkedin {
  background-color: #0077B5;
}

.share-btn:hover {
  opacity: 0.8;
}

.peace-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
}

.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #00FF00;
  font-size: 0.9em;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  text-shadow: none !important;
}

@media (max-width: 600px) {
  .main-title {
    font-size: 3em;
  }
  .pledge-text, .pledge-counter {
    font-size: 1.3em;
  }
  .content-container {
    padding: 20px;
  }
}