.details-container {
  width: 80%;
  margin: 0 auto;
  background: #c9c9c9;
  border-radius: 35px;
  padding: 40px;
  position: relative;
  z-index: 1;
}

.details-header {
  background: #d3d3d6;
  border-radius: 45px;
  padding: 25px 40px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 5px 0 rgba(0, 0, 0, 0.15);
}

.details-header h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.spots-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 22px;
}

.details-actions {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.details-btn {
  width: 70%;
  padding: 20px;
  font-size: 30px;
  border-radius: 45px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
  text-decoration: none;
  display: block;
  font-weight: 600;
}

.details-btn.orange {
  background: #f9a12b;
  color: #000;
}

.details-btn.green {
  background: #8fd3a5;
  color: #fff;
}

.details-btn:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.details-btn:active {
  transform: translateY(6px);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.25);
}