@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;1,400&display=swap');

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

body {
  background: #F5F0E8;
  font-family: 'Lora', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  background: #FAF7F2;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 640px;
  width: 100%;
}

.site-title {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #A89880;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 0.5rem;
  font-family: sans-serif;
}

.date {
  font-size: 12px;
  color: #C4B49E;
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: sans-serif;
}

.thread {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #B8A48E;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  font-family: sans-serif;
}

.divider {
  width: 32px;
  height: 1px;
  background: #D9CCBC;
  margin: 0 auto 2rem;
}

.quote {
  margin-bottom: 2rem;
}

.quote-text {
  font-size: 17px;
  line-height: 1.75;
  color: #4A3F33;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.attribution {
  font-size: 12px;
  color: #A89880;
  font-family: sans-serif;
}

.tradition {
  color: #C4B49E;
}

.separator {
  text-align: center;
  color: #D9CCBC;
  font-size: 18px;
  margin-bottom: 2rem;
}

.reflect-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #B8A48E;
  text-transform: uppercase;
  font-family: sans-serif;
  margin-bottom: 0.75rem;
}

.reflect-text {
  font-size: 15px;
  line-height: 1.7;
  color: #6B5B4E;
  font-style: italic;
  margin-bottom: 2rem;
}

button {
  display: block;
  margin: 0 auto;
  background: transparent;
  border: 0.5px solid #C4B49E;
  color: #A89880;
  font-family: sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 10px 24px;
  border-radius: 24px;
  cursor: pointer;
}

button:hover {
  background: #F0E9DF;
}

@media (prefers-color-scheme: dark) {
  body {
    background: #1C1917;
  }

  .container {
    background: #28211E;
  }

  .quote-text {
    color: #E8DDD3;
  }

  .reflect-text {
    color: #C4B49E;
  }

  .site-title, .attribution, button {
    color: #A89880;
  }

  .date, .thread, .reflect-label, .tradition {
    color: #7A6A5A;
  }

  .divider {
    background: #3D3028;
  }

  .separator {
    color: #3D3028;
  }

  button {
    border-color: #3D3028;
  }

  button:hover {
    background: #332820;
  }
}