* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f4f4f4;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Start screen - full viewport */
#start-screen {
  width: 100vw;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.left-panel {
  width: 60%;
  height: 100vh;
  background: #aa0000;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 80px;
  position: relative;
}

.right-panel {
  width: 40%;
  height: 100vh;
  background: #f4f4f4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  position: relative;
}

.top-right-text {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 14px;
  color: #aa0000;
  font-weight: 400;
}

.top-right-text .italic {
  font-style: italic;
}

.author-link {
  color: #aa0000;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.author-link:hover {
  color: #cc0000;
  border-bottom: 1px solid #aa0000;
  transform: translateY(-1px);
}

.main-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
}

.headline {
  font-size: 9vw;
  font-weight: 900;
  line-height: 0.75;
  color: white;
  text-align: left;
  letter-spacing: -0.05em;
}

.headline-italic {
  font-size: 9vw;
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 0.75;
  letter-spacing: -0.05em;
}

.description {
  font-size: 16px;
  line-height: 1.4;
  color: white;
  max-width: 400px;
  font-weight: 400;
  margin-bottom: 40px;
}

.brand-badge {
  position: absolute;
  top: 60px;
  right: 80px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.2;
}

.start-text {
  font-size: 2.5em;
  font-weight: 600;
  color: #aa0000;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

.Queen index img {
  font-size: 100px;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heart-image {
  width: 250px;
  height: 250px;
  margin: 30px;
  object-fit: contain;
}

.start-btn {
  background: transparent;
  color: #aa0000;
  border: 2px solid #aa0000;
  padding: 16px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.start-btn:hover {
  background: #aa0000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(170, 0, 0, 0.3);
}

/* Quiz container - hidden initially */
.quiz-container {
  display: none;
  background: white;
  border-radius: 16px;
  padding: 64px 40px;
  max-width: 618px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(170, 0, 0, 0.08);
  text-align: center;
  min-height: 500px;
  border: 1px solid rgba(170, 0, 0, 0.1);
  margin: 20px auto;
  position: relative;
  z-index: 1;
}

.quiz-container.active {
  display: block;
}

body.quiz-mode {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-image: linear-gradient(-225deg, #e3fdf5 0%, #ffe6fa 100%);
}

.quiz-header-image {
  width: 180px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 40px;
  display: block;
}

.question {
  display: none;
}

.question.active {
  display: block;
}

.question-title {
  color: #aa0000;
  font-size: 1.618em;
  font-weight: 400;
  margin-bottom: 40px;
  line-height: 1.618;
}

.question-subtitle {
  color: rgba(170, 0, 0, 0.6);
  margin-bottom: 40px;
  font-weight: 300;
}

.progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(170, 0, 0, 0.1);
  border-radius: 1px;
  margin-bottom: 40px;
}

.progress-fill {
  height: 100%;
  background: #aa0000;
  border-radius: 1px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.date-inputs {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 40px;
  align-items: center;
}

.date-input {
  padding: 16px;
  border: 1px solid rgba(170, 0, 0, 0.2);
  border-radius: 8px;
  font-size: 16px;
  text-align: center;
  width: 80px;
  background: white;
  color: #aa0000;
  transition: all 0.3s ease;
}

.date-input:focus {
  outline: none;
  border-color: #aa0000;
  box-shadow: 0 0 0 3px rgba(170, 0, 0, 0.1);
}

.date-separator {
  color: #aa0000;
  font-size: 1.5em;
  font-weight: 300;
}

input[type="number"],
textarea {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  border: 1px solid rgba(170, 0, 0, 0.2);
  border-radius: 12px;
  font-size: 16px;
  margin-bottom: 24px;
  background: white;
  color: #aa0000;
  transition: all 0.3s ease;
}

input[type="number"]:focus,
textarea:focus {
  outline: none;
  border-color: #aa0000;
  box-shadow: 0 0 0 3px rgba(170, 0, 0, 0.1);
}

.options {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.option {
  padding: 20px 24px;
  border: 1px solid rgba(170, 0, 0, 0.2);
  border-radius: 12px;
  background: white;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #333;
}

.option:hover {
  background: #f4f4f4;
  border-color: rgba(170, 0, 0, 0.4);
  transform: translateY(-1px);
}

.option.selected {
  background: #aa0000;
  color: white;
  border-color: #aa0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(170, 0, 0, 0.2);
}

.option-label {
  font-weight: 500;
  margin-right: 12px;
  opacity: 0.7;
}

.btn {
  background: #aa0000;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  margin: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  min-width: 120px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(170, 0, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #aa0000;
  border: 1px solid #aa0000;
}

.btn-secondary:hover {
  background: #aa0000;
  color: white;
}

.navigation-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.results {
  display: none;
  text-align: center;
}

.results.active {
  display: block;
}

.phase-title {
  color: #aa0000;
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.4;
}

.phase-description {
  color: #666;
  font-size: 1.1em;
  line-height: 1.618;
  /* margin-bottom: 40px; */
  font-weight: 300;
}

.info-section {
  background: #f4f4f4;
  padding: 32px;
  border-radius: 16px;
  margin: 24px 0;
  text-align: left;
  line-height: 1.618;
  color: #555;
  border-left: 4px solid #aa0000;
}

.info-title {
  color: #aa0000;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.support-needs,
.womb-message,
.love-note {
  background: #f4f4f4;
  padding: 32px;
  border-radius: 16px;
  margin-top: 24px;
  border-left: 4px solid #aa0000;
}

.support-title {
  color: #aa0000;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 1.1em;
}

.disclaimer {
  background: rgba(170, 0, 0, 0.05);
  padding: 24px;
  border-radius: 12px;
  margin: 24px 0;
  border-left: 4px solid rgba(170, 0, 0, 0.3);
  font-size: 0.9em;
  color: #666;
  text-align: left;
  line-height: 1.618;
}

textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

@media (max-width: 1024px) {
  .headline,
  .headline-italic {
    font-size: 7.5vw;
  }

  .left-panel {
    padding: 50px 60px;
  }

  .right-panel {
    padding: 50px;
  }
}

@media (max-width: 768px) {
  #start-screen {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
    position: relative;
  }

  .left-panel {
    width: 100%;
    min-height: 100vh;
    padding: 60px 40px;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .main-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    margin-bottom: 0;
  }

  .headline,
  .headline-italic {
    font-size: 18vw;
    line-height: 0.8;
  }

  .description {
    margin-top: 40px;
    margin-bottom: 40px;
    max-width: 100%;
    font-size: 18px;
    line-height: 1.4;
  }

  .brand-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    margin-top: 0;
    align-self: auto;
    padding: 16px 32px;
    font-size: 16px;
  }

  .right-panel {
    width: 100%;
    min-height: 50vh;
    padding: 40px 30px;
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    background: #f4f4f4;
  }

  .start-text {
    font-size: 2.5em;
    font-weight: 600;
    color: #aa0000;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 10px;
    margin: 40px 0;
    text-align: center;
  }

  .Queen.index.img {
    font-size: 120px;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .heart-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
  }

  .start-btn {
    background: transparent;
    color: #aa0000;
    border: 2px solid #aa0000;
    padding: 20px 50px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 auto;
    display: block;
  }

  .start-btn:hover {
    background: #aa0000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(170, 0, 0, 0.3);
  }

  .Queen index img {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .heart-image {
    width: 60px;
    height: 60px;
  }

  .top-right-text {
    display: none;
  }

  .quiz-container {
    padding: 40px 24px;
    margin: 16px;
    max-width: calc(100vw - 32px);
  }

  .quiz-header-image {
    width: 150px;
    height: 92px;
  }

  .date-inputs {
    gap: 8px;
    flex-wrap: wrap;
  }

  .date-input {
    width: 70px;
    padding: 12px;
    font-size: 15px;
  }

  .navigation-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .btn {
    min-width: 250px;
    padding: 18px 32px;
  }

  .question-title {
    font-size: 1.4em;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .left-panel {
    padding: 40px 20px;
    min-height: 100vh;
  }

  .headline,
  .headline-italic {
    font-size: 20vw;
    letter-spacing: -0.03em;
  }

  .description {
    font-size: 16px;
    line-height: 1.4;
  }

  .brand-badge {
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    font-size: 14px;
  }

  .right-panel {
    min-height: 40vh;
    padding: 30px 20px;
  }

  .start-text {
    font-size: 2.2em;
  }

  .Queen.index.img {
    font-size: 100px;
  }

  .heart-image {
    width: 150px;
    height: 150px;
  }

  .start-btn {
    padding: 18px 40px;
    font-size: 16px;
  }

  .start-text {
    font-size: 1.6em;
  }

  .Queen index img {
    font-size: 50px;
    margin-bottom: 15px;
  }

  .heart-image {
    width: 50px;
    height: 50px;
  }

  .start-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .quiz-container {
    padding: 30px 20px;
    margin: 10px;
    max-width: calc(100vw - 20px);
  }

  .quiz-header-image {
    width: 120px;
    height: 74px;
  }

  .date-input {
    width: 60px;
    padding: 10px;
    font-size: 14px;
  }

  .date-separator {
    font-size: 1.2em;
  }

  .question-title {
    font-size: 1.2em;
    line-height: 1.4;
  }

  .option {
    padding: 16px 20px;
    font-size: 15px;
  }

  .btn {
    min-width: 200px;
    padding: 16px 28px;
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .left-panel {
    padding: 30px 15px;
    min-height: 100vh;
  }

  .headline,
  .headline-italic {
    font-size: 22vw;
  }

  .description {
    font-size: 15px;
  }

  .brand-badge {
    top: 15px;
    right: 15px;
    padding: 10px 20px;
    font-size: 12px;
  }

  .right-panel {
    min-height: 35vh;
    padding: 25px 15px;
  }

  .start-text {
    font-size: 2em;
  }

  .Queen.index.img {
    font-size: 80px;
  }

  .heart-image {
    width: 120px;
    height: 120px;
  }

  .start-btn {
    padding: 16px 35px;
    font-size: 15px;
  }

  .quiz-container {
    padding: 25px 15px;
    margin: 5px;
  }

  .quiz-header-image {
    width: 100px;
    height: 62px;
  }

  .date-input {
    width: 55px;
    padding: 8px;
    font-size: 13px;
  }

  .option {
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .headline,
  .headline-italic {
    font-size: 20vw;
  }

  .description {
    font-size: 12px;
  }

  .date-input {
    width: 50px;
    padding: 6px;
    font-size: 12px;
  }

  .start-btn {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
  #start-screen {
    flex-direction: row;
  }

  .left-panel {
    width: 65%;
    height: 100vh;
    padding: 30px;
  }

  .headline,
  .headline-italic {
    font-size: 8vw;
  }

  .right-panel {
    width: 35%;
    height: 100vh;
    padding: 30px 20px;
  }

  .start-text {
    font-size: 1.5em;
  }

  .Queen index img {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .heart-image {
    width: 40px;
    height: 40px;
  }
}
