.adult-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.adult-box {
  width: 850px;
  height: 500px;
  max-width: 95%;
  background: #fff;
  display: flex;
  border-radius: 14px;
  overflow: hidden;
}

.adult-left {
  width: 55%;
  padding: 35px;
}

.warning-icon {
  font-size: 26px;
  color: #ff4d4d;
}

.adult-left h2 {
  color: #ff4d4d;
  margin: 8px 0;
}
.adult-left h4 {
  color: #ff4d4d;
  margin: 8px 0;
}

.adult-left p {
  font-size: 14px;
  color: #555;
}

.adult-left ul {
  padding: 0;
  list-style: none;
}

.adult-left ul li {
  margin: 6px 0;
  color:red;
}

.adult-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}

.decline-btn {
  background: #eee;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.enter-btn {
  background: #ff4d4d;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  cursor: pointer;
}

.adult-right {
  width: 45%;
  background: #000;
  position: relative;
}

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ff4d4d;
  color: #fff;
  padding: 6px 10px;
  border-radius: 50%;
}
