body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #335C67, #1f3a40);
  color: #FFF3B0;
  text-align: center;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #FFF3B0;
  overflow-x: hidden;
}

/* Background Image Layer */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/bg-image.jpg?v=1") no-repeat center center/cover;
  filter: blur(8px);
  transform: scale(1.05); /* prevents edge cutoff */
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(43, 23, 8, 0.6); /* matches your theme */
  z-index: -1;
}
/* Title */
h1 {
  margin-top: 20px;
  letter-spacing: 2px;
}

/* Screen */
.screen {
  width: 400px;
  height: 50px;
  background: #FFF3B0;
  color: #335C67;
  margin: 30px auto;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Container */
.seat-container {
  display: grid;
  grid-template-columns: repeat(5, 90px);
  gap: 18px;
  justify-content: center;
  margin-top: 30px;
}

/* Seat */
.seat {
  width: 80px;
  height: 80px;
  border-radius: 15px;
  border: none;
  font-weight: bold;
  transition: all 0.25s ease;
}

/* Available */
.available {
  background: #E09F3E;
  color: #335C67;
  cursor: pointer;
}

.available:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px #E09F3E;
}

/* Selected (NEW) */
.selected {
  background: #FFF3B0;
  color: #335C67;
  transform: scale(1.1);
}

/* Booked */
.booked {
  background: #9E2A2B;
  color: #FFF3B0;
  cursor: not-allowed;
}

/* Legend */
.legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.legend div {
  display: flex;
  align-items: center;
  gap: 5px;
}
