#donateModal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
}

#donateModal .modalContent {
  width: 600px;
  height: 600px;
  background: rgba(0, 0, 0, 0.9);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #ffd700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

#donateModal .modalClose {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffd700;
  font-size: 24px;
  cursor: pointer;
  padding: 5px 10px;
  transition: transform 0.2s;
}

#donateModal .modalClose:hover {
  transform: scale(1.1);
}

#donateModal h2 {
  color: #ffd700;
  text-align: center;
  margin: 0 0 30px 0;
  font-size: 36px;
}

#donateModal .donate-text {
  color: white;
  text-align: center;
  margin: 0 0 30px 0;
  font-size: 20px;
  max-width: 80%;
  line-height: 1.5;
}

#donateModal .donate-button-container,
.donate-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px 0 30px 0;
  gap: 10px;
}

#donateModal .donate-via,
.donate-via {
  color: #ffd700;
  font-size: 18px;
  font-family: 'Noto Sans', sans-serif;
}

#donateModal .donate-button,
.donate-button {
  transition: transform 0.2s;
  background: white;
  border-radius: 10px;
  padding: 10px;
}

#donateModal .donate-button:hover,
.donate-button:hover {
  transform: scale(1.05);
}

#donateModal .button-group {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

#donateModal .buttonSmall {
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

#donateModal .continue-button {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  border: 2px solid #ffd700;
}

#donateModal .continue-button:hover {
  background: rgba(255, 215, 0, 0.4);
  transform: scale(1.05);
}

#donateModal .dont-ask-again-button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

#donateModal .dont-ask-again-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
} 