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

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

body {
  background: url('donate.webp') 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); }
}

.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);
}

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

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

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

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

.donate {
  position: relative;
  width: 100%;
  text-align: center;
  color: white;
  padding: 100px 20px;
  z-index: 1;
}

.content-container {
  display: inline-block;
  padding: 30px 50px;
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

.main-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;
  position: relative;
  z-index: 2;
}

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

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

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

.donate-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
}

.donate-option {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  max-width: 250px;
  text-align: left;
}

.donate-option h3 {
  font-size: 1.5em;
  color: #ffd700;
  margin-bottom: 10px;
}

.donate-option p {
  font-size: 1em;
  color: #f0e6d2;
  margin-bottom: 15px;
}

.donate-option form {
  display: flex;
  flex-direction: column;
}

.donate-option label {
  font-size: 1em;
  color: #f0e6d2;
  margin: 5px 0;
}

.donate-option input {
  padding: 8px;
  font-size: 0.9em;
  border-radius: 5px;
  border: none;
  margin-bottom: 10px;
}

.donate-option .cta-button {
  padding: 10px 20px;
  font-size: 1em;
  border: none;
  cursor: pointer;
}

.cta-button {
  padding: 15px 30px;
  background-color: #FFD700;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

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

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

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

.site-footer p {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

@media (max-width: 600px) {
  .main-title {
    font-size: 3em;
  }
  .subtitle {
    font-size: 1.2em;
  }
  .donate-text {
    font-size: 1.2em;
  }
  .donate-options {
    flex-direction: column;
    align-items: center;
  }
  .donate-option {
    max-width: 100%;
  }
  .content-container {
    padding: 20px;
  }
}