body {
  margin: 0;
  padding: 0;
  background: #f6f1e8;
  font-family: system-ui, sans-serif;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
}

.still-container {
  padding: 2rem;
  padding-top: max(2rem, env(safe-area-inset-top));
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  text-align: center;
  position: relative;
  min-height: 100vh;
  box-sizing: border-box;
}

/* Question */
.question {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #333;
}

/* Tones */
.tones {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.tone {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
}

/* Acknowledgement */
.acknowledgement {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

.response {
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.response.linger {
  opacity: 1;
}

.orb {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

/* Fade page effects */
.page-fade-out {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.page-fade-in {
  opacity: 1;
  transition: opacity 1s ease-in;
}

/* Stay longer */
.stay-longer {
  margin-top: 1.8rem;
}

.stay-link {
  text-decoration: none;
  color: #3a3a3a;
  font-size: 1.1rem;
}

/* Disclaimer */
.disclaimer {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: #666;
}

/* Back link */
.back-link {
  position: absolute;
  top: 12px;
  left: 12px;
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.back-link:hover {
  opacity: 1;
}

/* Top right icons */
.top-right-icons {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.home-icon,
.login-icon {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.home-icon:hover,
.login-icon:hover {
  opacity: 1;
}
/* ORB PULSE ANIMATION */
@keyframes orbPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.orb.pulsing {
  animation: orbPulse 2.8s ease-in-out infinite;
}

/* Mobile orb resizing */
@media (max-width: 480px) {
  .orb {
    width: 85px;
    height: 85px;
  }
  
  .still-container {
    padding: 1.5rem 1rem;
  }
  
  .question {
    font-size: 1.2rem;
    padding: 0 0.5rem;
  }
  
  .tone {
    width: 44px;
    height: 44px;
  }
  
  .back-link {
    font-size: 0.85rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  
  .top-right-icons {
    gap: 1rem;
  }
  
  .home-icon svg,
  .login-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 380px) {
  .tones {
    gap: 0.6rem;
  }
  
  .tone {
    width: 40px;
    height: 40px;
  }
  
  .question {
    font-size: 1.1rem;
  }
}

/* Ensure tones wrap cleanly */
.tones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}