body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: #0e0e0e;
  color: #e6d7a3;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

header img {
  height: 60px;
}

nav a {
  margin-left: 20px;
  color: #e6d7a3;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 100px 20px;
}

.hero button {
  padding: 15px 30px;
  background: #c9a24d;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

section {
  padding: 60px 40px;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
}

.modal-content {
  background: #111;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.amount-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.amount-selector button {
  padding: 10px 20px;
}

.close {
  float: right;
  cursor: pointer;
}
