body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.donation-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}

/* Title */
.title {
  text-align: center;
  font-size: 1.4em;
  font-weight: bold;
  color: #f1c40f;
  text-transform: uppercase;
}

.title-line {
  width: 100%;
  height: 2px;
  background: #f1c40f;
  margin: 5px 0 15px 0;
}

/* Content */
.content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.temple-image {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.temple-image img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

/* Right side */
.donation-content {
  flex: 1;
  max-width: 40%;
  text-align: center;
}

.subtitle {
  margin-bottom: 25px;
  font-size: 1.2em;
  color: #ccc;
}

.donation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  margin-bottom: 25px;
}

.donation-btn {
  background: transparent;
  border: 3px solid #f1c40f;
  color: #f1c40f;
  font-size: 1.5em;
  font-weight: bold;
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.donation-btn:hover {
  background: #f1c40f;
  color: #000;
}

/* Status */
#status {
  margin-top: 20px;
  font-size: 1.1em;
  color: #f1c40f;
}

/* Footer */
.note {
  text-align: center;
  font-size: 1em;
  color: #f1c40f;
  margin-top: 15px;
}

.footer-line {
  width: 100%;
  height: 2px;
  background: #f1c40f;
  margin-top: 10px;
}

/* Mobile */
@media (max-width: 900px) {
  .content {
    flex-direction: column;
  }
  .temple-image {
    max-width: 100%;
  }
  .donation-content {
    max-width: 100%;
  }
  .temple-image img {
    max-width: 100%;
    max-height: 40vh;
  }
}
