/* Typography */
.page-title {
  font-size: 2rem;
  text-align: center;
  color: #e6e6e6;
  margin-top: 2rem;
  font-family: 'IBM Plex Mono', monospace;
}

.subtitle {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  font-family: 'IBM Plex Mono', monospace;
  margin-top: -0.3rem;
  margin-bottom: 2rem;
}

/* Quote box styling */
#quote-box {
  background: rgba(245, 242, 229, 0.12);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem 2.5rem;
  margin: 1rem auto;
  max-width: 800px;
  font-family: 'IBM Plex Mono', monospace;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255,255,255,0.05);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  text-align: center;
  transition: height 0.4s ease;
}

.quote-text {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #ddd;
  font-style: italic;
}

.quote-author {
  font-size: 0.95rem;
  color: #999;
  display: block;
  margin-top: 0.8rem;
}

/* Button + Note */
.shuffle-controls {
  text-align: center;
  margin: 2rem 0;
}



#shuffleBtn {
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.05rem;

  /* 💥 Force override */
  color: #ddd !important;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.4);

  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  box-shadow: 0 0 8px rgba(245, 242, 229, 0.04);
}



.shuffle-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  font-family: 'IBM Plex Mono', monospace;
}