/* ===== Launch Screen ===== */

.launch-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f4f4;
  font-family: Georgia, serif;
}

.launch-card {
  width: 900px;
  max-width: 90%;
  height: 500px;
  position: relative;

  background-size: cover;
  background-position: center;

  border-radius: 14px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  overflow: hidden;
}
.launch-card {
  background-image: url("../images/demoBkgd.png");
}

.launch-card.SRRX {
  background-image: url("../images/srrxBkgd.png");
}
/* Soft white overlay for readability */
.launch-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Content box */
.launch-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Label */
.launch-content label {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Dropdown */
.launch-content select {
  font-size: 1.1rem;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #aaa;
  background: white;
  min-width: 260px;
  cursor: pointer;
}

.launch-content select:hover {
  border-color: #c41e3a;
}

.launch-content select:focus {
  outline: none;
  border-color: #c41e3a;
  box-shadow: 0 0 0 3px rgba(196,30,58,0.15);
}