body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: linear-gradient(to bottom right, #006400, #003300);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

h1 .green { color: green; }
h1 .yellow { color: goldenrod; }

.subtext {
  margin-top: -10px;
  font-style: italic;
  color: gray;
}

.bundle-list button {
  display: block;
  width: 100%;
  background: green;
  color: #fff;
  border: none;
  margin: 10px 0;
  padding: 12px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
}

.support {
  margin-top: 20px;
  font-size: 14px;
}

.whatsapp {
  background: green;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin: 10px 0;
}

.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  color: black;
  padding: 25px;
  border-radius: 15px;
  max-width: 350px;
  width: 90%;
}

.modal-content ol {
  padding-left: 20px;
  text-align: left;
}

.modal-content button {
  background: green;
  color: white;
  padding: 10px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 5px;
}

.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
}