.progress-bar {
  width: 100%;
  height: 6px;
  background: #eee;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

#progressFill {
  height: 100%;
  width: 0%;
  background: #2e7d32;
  transition: width 0.3s ease;
}


.tomorrow-preview {
  margin-top: 20px;
  padding: 15px;
  background: #f4f8ff;
  border-radius: 8px;
  text-align: center;
}

.mystery-grid,
.intentions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 15px 0;
}

.mystery-grid a,
.intentions-grid a {
  padding: 12px;
  background: #f4f8ff;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #2e3a59;
}

.daily-return {
  text-align: center;
}

.cta-return {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 20px;
  background: #2e7d32;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}

.after-divider {
  margin: 40px 0!important;
  border: none;
  border-top: 1px solid #ddd;
}


#stepText {
    text-transform: uppercase;
    margin: 1.5em!important;
}
#mysteryHeader {
    text-align: center;
}

.emotional-hook {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #333;
  text-align: center;
}

.intentions-box {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  padding: 12px;
  background: #f4f8ff;
  border-left: 4px solid #3f51b5;
  border-radius: 6px;
  color: #444;
  text-align: center;
}

.intro-message {
  font-size: 16px;
  color: #555;
  margin: 25px 15px 15px; 
  text-align: center;
}
.daily-quote {
  font-size: 15px;
  color: #2e7d32;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}

.card {
  background:white;
  padding: 20px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
}  

button#start,
button#nextBtn {
    background: #3fad23;
}
button#start {margin-top: 25px}
button {
  padding: 8px 20px;
  border: none;
  border-radius: 30px;
  background: #ff6200;
  color: white;
  cursor: pointer;
  min-width: 200px;
  margin: 5px;
  text-transform: uppercase;
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.hidden { display: none; }

.highlight {
  background: #e8f5e9;
  transition: 0.3s;
}

.litany-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin: 4px 0;
  border-radius: 8px;
  background: #f9fafb;
}

.litany-call {
  font-weight: 500;
  color: #333;
}

.litany-response {
  color: #2c7be5;
  font-weight: 600;
  white-space: nowrap;
}

.litany-line-single {
  text-align: center;
  margin: 10px 0;
  font-weight: 500;
}

.litany-response-full {
  text-align: center;
  font-weight: bold;
  margin: 12px 0;
}

.progress-text {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
  text-align: center;
}
.mystery-fruit {
  display: block;
  font-size: 18px;
  color: #888;
}

.live-users {
  text-align: center;
  color: #2e7d32;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
}
@media (min-width:1025px) {
.card {
  background:white;
  padding: 50px;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  text-align: center;
}    
}


/* 📱 Sticky Mobile Start Button */
.sticky-start {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

.sticky-start button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background: #2e7d32;
  color: white;
  border: none;
  border-radius: 8px;
}

/* Show only on mobile */
@media (max-width: 768px) {
  .sticky-start {
    display: block;
  }
}

/* Hide helper */
.hidden {
  display: none !important;
}