body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff7fb;
  color: #222;
  margin: 0;
  padding: 0;
  text-align: center;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

h1 {
  font-size: 42px;
  line-height: 1.1;
  margin: 0 0 12px;
}

h2 {
  margin-top: 35px;
  margin-bottom: 12px;
}

.intro {
  max-width: 650px;
  margin: 0 auto 25px;
  font-size: 18px;
  line-height: 1.5;
}

.franchise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
  margin: 20px auto;
  text-align: left;
}

.franchise-grid label,
.pool-options label {
  display: block;
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
}

.franchise-grid label:hover,
.pool-options label:hover {
  border-color: #222;
}

.pool-options {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
}

button {
  border: none;
  border-radius: 12px;
  padding: 14px 20px;
  margin: 8px;
  cursor: pointer;
  font-size: 16px;
  background: #222;
  color: white;
}

button:hover {
  opacity: 0.85;
}

.start-button {
  margin-top: 30px;
  font-size: 20px;
  padding: 18px 30px;
}

#progress {
  font-size: 18px;
  color: #555;
}

.matchup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.choice-card {
  min-height: 460px;
  background: white;
  color: #222;
  border: 2px solid #222;
  border-radius: 20px;
  padding: 30px;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
}

.housewife-photo {
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  display: block;
  margin: 0 auto 18px;
}

.photo-placeholder {
  width: 100%;
  max-width: 260px;
  height: 260px;
  border-radius: 16px;
  background: #f1e8ee;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 16px;
  font-weight: normal;
}

.choice-name {
  font-size: 26px;
  font-weight: bold;
}

.choice-meta {
  display: block;
  font-size: 18px;
  font-weight: normal;
  margin-top: 14px;
  color: #666;
}

.choice-seasons {
  display: block;
  font-size: 15px;
  font-weight: normal;
  margin-top: 8px;
  color: #888;
}

.sorter-actions,
.results-actions,
.quick-buttons {
  margin-top: 20px;
}

#results-list {
  max-width: 560px;
  margin: 30px auto;
  text-align: left;
  font-size: 20px;
  line-height: 1.7;
}

#results-list span {
  color: #777;
  font-size: 14px;
}

@media (max-width: 700px) {
  main {
    padding: 28px 16px;
  }

  h1 {
    font-size: 32px;
  }

  .matchup {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 420px;
    font-size: 24px;
  }

  .housewife-photo,
  .photo-placeholder {
    height: 230px;
  }

  .choice-name {
    font-size: 24px;
  }
}
