body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background-color: #fdfdfd;
  color: #333;
}

header {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(to right, #fdd835, #7e57c2, #66bb6a, #42a5f5);
  color: white;
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.scripture-section {
  padding: 2rem;
  border-radius: 12px;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.scripture-section:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.yellow { background-color: #fdd835; }
.purple { background-color: #7e57c2; }
.green  { background-color: #66bb6a; }
.blue   { background-color: #42a5f5; }

.verse {
  font-weight: bold;
  margin-top: 0.5rem;
}

.message {
  margin-top: 1rem;
  font-style: italic;
  display: none;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #eee;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}
