* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background:
    linear-gradient(rgba(0,0,0,0.22), rgba(0,0,0,0.22)),
    url('mountain-background.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Main card */
.card {
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  padding: 40px 32px;
  border-radius: 18px;
  max-width: 420px;
  text-align: center;
}

h1 {
  font-family: 'Patrick Hand', cursive;
  font-size: 42px;
  margin-bottom: 12px;
}

.card p {
  color: #f2f2f2;
}

.footer {
  margin-top: 22px;
  font-size: 12px;
  opacity: 0.75;
}

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.overlay.show {
  opacity: 1;
  pointer-events: all;
}

/* Popup */
.popup {
  background: #fff7ec;
  color: #3b2b1f;
  padding: 26px 22px;
  border-radius: 16px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.popup-text {
  color: #3b2b1f;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.dog-emoji {
  font-size: 42px;
  margin-bottom: 10px;
}

/* Options */
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  background: #eee4d6;
  color: #3b2b1f;
  text-align: center;
}

/* Clickable option (no visual bias) */
.option.selectable {
  cursor: pointer;
}

/* Subtle feedback after click */
.option.selected {
  background: #d6c2a8;
}
