body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

/* CONTAINER */
.donate-container {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* TITLE */
.donate-title {
  font-family: "Dead Kansas", cursive;
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: #ff3030;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.donate-sub {
  color: #d0d0d0;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* TIERS */
.tiers {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tier {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,0,0,0.25);
  padding: 25px;
  width: 280px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tier:hover {
  transform: translateY(-4px);
  border-color: #ff3030;
  box-shadow: 0 0 15px rgba(255,0,0,0.2);
}

.tier.selected {
  border: 2px solid #ff3030;
  box-shadow: 0 0 20px rgba(255,0,0,0.35);
}

.tier h2 {
  color: #ff3030;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 24px;
}

.tier ul {
  list-style-position: inside;
  list-style-type: disc;
  padding: 0;
  margin: 0;
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}

.tier li {
  margin-bottom: 12px;
}

.subtext {
  font-size: 12px;
  color: #a8a8a8;
  margin-top: 2px;
  line-height: 1.4;
}

/* FORM */
.form-box {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 10;
}

input, textarea, button {
  pointer-events: auto;
}

.tier, .tiers {
  position: relative;
  z-index: 1;
}

input {
  width: 420px;
  max-width: 95%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  background: #fff;
  color: #000;
  outline: none;
  box-sizing: border-box;
}

input:focus {
  box-shadow: 0 0 10px rgba(255,0,0,0.5);
}

.warning {
  color: #ff8080;
  font-size: 14px;
  font-weight: 600;
  max-width: 600px;
  width: 100%;
  padding: 10px 15px;
  text-align: center;
  margin: 0 auto;
}

.donate-btn {
  background: #ff3030;
  color: white;
  padding: 15px 35px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Dead Kansas", cursive;
}

.donate-btn:hover {
  background: #ff5555;
  transform: scale(1.03);
}

.footer-note {
  font-size: 13px;
  color: #a0a0a0;
}

.server-donate-box {
  margin-top: 60px;
  padding: 25px;
  border: 1px solid rgba(255, 48, 48, 0.25);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.server-donate-box select {
  width: 420px;
  max-width: 95%;
  padding: 14px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.extra-title {
  font-size: 22px;
  color: #ff3030;
  margin-bottom: 10px;
  font-weight: bold;
}

.extra-text {
  color: #cfcfcf;
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.extra-donate-btn {
  background: transparent;
  border: 1px solid #ff3030;
  color: #ff3030;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.extra-donate-btn:hover {
  background: #ff3030;
  color: #fff;
  transform: scale(1.03);
}

.subscription-box {
  margin-top: 60px;
  padding: 25px;
  border: 1px solid rgba(255, 48, 48, 0.25);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.subscription-box select {
  width: 420px;
  max-width: 95%;
  padding: 14px;
  border-radius: 6px;
  border: none;
  margin-bottom: 15px;
  font-size: 16px;
  text-align: center;
}

.donation-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.server-donate-box,
.subscription-box {
  flex: 1;
  min-width: 320px;
  max-width: 600px;
}

@media (max-width: 900px) {
  .donation-grid {
    flex-direction: column;
    align-items: center;
  }

  .server-donate-box,
  .subscription-box {
    width: 95%;
  }
}

.warning-box {
  color: #ff8080;
  font-size: 14px;
  font-weight: 600;
  max-width: 500px;
  margin-top: 10px;
  text-align: center;
}