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

html, body {
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: url('Overview.png') no-repeat center center fixed, linear-gradient(to bottom, #000000, #1a1a1a);
  background-size: cover;
  position: relative;
  animation: sunrise 20s infinite linear;
}

@keyframes sunrise {
  0% { background-color: rgba(0, 0, 0, 0.6); }
  50% { background-color: rgba(26, 26, 26, 0.6); }
  100% { background-color: rgba(0, 0, 0, 0.6); }
}

#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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

.menu {
  position: relative;
  display: inline-block;
}

.menu-button {
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 12px 18px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.menu-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.language-switcher {
  margin-left: 10px;
  padding: 5px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
  background-color: #FFD700;
  color: #1a1a1a;
  cursor: pointer;
  z-index: 1001;
}

.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;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1001;
}

.menu-content a {
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

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

.hero {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  z-index: 1;
}

.gradient-title {
  font-size: 4.5em;
  font-weight: bold;
  font-family: 'Cinzel', 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #FFD700, #FFFFFF, #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.7);
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  0% { text-shadow: 0 0 5px #FFD700; }
  100% { text-shadow: 0 0 15px #FFD700, 0 0 20px #FFA500; }
}

.hero-text {
  font-size: 1.8em;
  color: #f0e6d2;
  margin: 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #FFD700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #e6c200;
  transform: scale(1.05);
}

.countdown {
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
}

.countdown-title {
  font-size: 2em;
  color: #f0e6d2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.countdown-timer {
  font-size: 1.8em;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.message-wall {
  text-align: center;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  z-index: 1;
}

.wall-title {
  font-size: 2em;
  color: #f0e6d2;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.wall-text {
  font-size: 1.4em;
  color: #f0e6d2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

#message-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 500px;
}

#message-form textarea {
  width: 100%;
  max-width: 500px;
  height: 100px;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

#message-form .cta-button {
  width: fit-content;
}

#messages {
  margin-top: 20px;
  max-height: 300px;
  overflow-y: auto;
  padding: 10px;
}

.message {
  color: #00FF00;
  font-size: 1.2em;
  margin-bottom: 10px;
  padding: 10px;
  background-color: rgba(255, 215, 0, 0.1);
  border-left: 3px solid #FFD700;
  border-radius: 3px;
}

.donate {
  text-align: center;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  z-index: 1;
}

.support-title {
  font-size: 2em;
  color: #f0e6d2;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.donate-text {
  font-size: 1.4em;
  color: #f0e6d2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-us {
  text-align: center;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 800px;
  z-index: 1;
}

.about-title {
  font-size: 2em;
  color: #f0e6d2;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-text, .team-text, .partners-text {
  font-size: 1.4em;
  color: #f0e6d2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.team, .partners {
  margin-top: 20px;
}

.newsletter {
  text-align: center;
  padding: 40px 20px;
  margin: 40px auto;
  max-width: 600px;
  z-index: 1;
}

.newsletter-title {
  font-size: 2em;
  color: #f0e6d2;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.newsletter-text {
  font-size: 1.4em;
  color: #f0e6d2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  max-width: 500px;
}

.newsletter-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.newsletter-form input[type="email"] {
  width: 100%;
  max-width: 400px;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

.newsletter-form .clear.foot {
  display: flex;
  justify-content: center;
  width: 100%;
}

.newsletter-form .cta-button {
  width: fit-content;
}

.sponsors {
  text-align: center;
  padding: 40px 20px;
  z-index: 1;
}

.sponsor-title {
  font-size: 2em;
  color: #f0e6d2;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.sponsor-logos img {
  width: 150px;
  margin: 10px;
}

.peace-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  height: auto;
  z-index: 1000;
}

.site-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 0.9em;
  padding: 10px 0;
  z-index: 1000;
}

@media (max-width: 600px) {
  .gradient-title {
    font-size: 3em;
  }
  .hero-text {
    font-size: 1.2em;
  }
  .cta-button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .countdown-title, .wall-title, .support-title, .about-title, .newsletter-title, .sponsor-title {
    font-size: 1.5em;
  }
  .countdown-timer {
    font-size: 1.3em;
  }
  .wall-text, .donate-text, .about-text, .team-text, .partners-text, .newsletter-text {
    font-size: 1.2em;
  }
  .message-wall, .donate, .about-us, .newsletter {
    padding: 20px;
  }
  .language-switcher {
    margin-left: 8px;
    font-size: 14px;
    padding: 4px;
  }
  .menu-button {
    padding: 10px 14px;
    font-size: 16px;
  }
}