/* --- Genki Source Page Styles --- */
.logo-link {
  text-decoration: none;
  color: inherit;
}

.genki-section-title {
  text-align: left;
}

.genki-underline {
  margin: 0;
  width: 100px;
}

.genki-content {
  margin-top: 2rem;
}

.mb-md {
  margin-bottom: 1.5rem;
}

.mt-lg {
  margin-top: 3rem;
}

.fountain-caption {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 1rem;
}

.profile-placeholder {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-size: 1.5rem;
}

/* --- Crystal & Ink Theme (Genki Source Redesign) --- */

/* 1. The Ink (Typography) */
.ink-text {
  /* font-family: "Kaisei Opti", serif; Removed per user request - Body text is Sans */
  color: #334155; 
  line-height: 2.0;
  letter-spacing: 0.05em;
}

/* Apply Serif only to Headings and Special Elements */
.ink-text h3,
.ink-title,
.ink-accent {
  font-family: "Kaisei Opti", serif;
}

.ink-title {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.1); 
  display: inline-block;
  padding-bottom: 0.5rem;
}

.ink-title-large {
    font-size: 2rem;
}

.ink-subtitle {
    font-size: 1.4rem;
}

.ink-message {
    font-size: 0.95rem;
    opacity: 0.8;
}

.ink-emphasis {
    font-size: 1.2rem;
    font-weight: bold;
}

.story-section {
    text-align: center;
    margin-top: 5rem;
}

/* 2. The Crystal (Glassmorphism Containers) */
.crystal-container {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.02),
    0 2px 4px -1px rgba(0, 0, 0, 0.02),
    inset 0 0 20px rgba(255, 255, 255, 0.5); /* Inner glow */
  border-radius: 24px;
  padding: 4rem 3rem;
  margin-bottom: 4rem;
  overflow: hidden;
}

.crystal-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
}

/* 3. Narrative Phases */
.phase-night {
  /* Minimalist Night: Just slightly tighter, more intimate */
  text-align: center;
  max-width: 680px;
  margin: 0 auto 5rem;
}

.moon-icon {
  font-size: 2rem;
  color: #94a3b8; /* Muted cool gray */
  margin-bottom: 2rem;
  opacity: 0.8;
  filter: drop-shadow(0 0 5px rgba(148, 163, 184, 0.3));
}

.phase-dawn {
  position: relative;
  padding-left: 2rem;
  border-left: 1px solid #e2e8f0; /* Thin guide line */
  margin: 4rem 0 4rem 2rem;
}

.dawn-icon {
  position: absolute;
  left: -1rem; /* Centered on the line */
  top: 0;
  background: #fff;
  color: #cbd5e1;
  padding: 0.5rem 0; /* Clear the line */
}

/* 4. Zen Ripples (Fountain) */
.zen-fountain-wrapper {
  position: relative;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 4rem 0;
}

.zen-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #cbd5e1; /* Silver */
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: zenRipple 4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.zen-ripple:nth-child(1) { width: 60px; height: 60px; animation-delay: 0s; }
.zen-ripple:nth-child(2) { width: 120px; height: 120px; animation-delay: 1.5s; }
.zen-ripple:nth-child(3) { width: 180px; height: 180px; animation-delay: 3s; }

@keyframes zenRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
    border-width: 2px;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
    border-width: 0px;
  }
}

.drop-icon {
  font-size: 2.5rem;
  color: #64748b; /* Solid slate */
  z-index: 10;
  position: relative;
  background: #fff;
  border-radius: 50%;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.zen-caption {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #94a3b8;
  font-family: "Kaisei Opti", serif;
  z-index: 10;
}

/* Door Trigger Highlight (Ink Style) */
.door-trigger-ink {
  font-weight: bold;
  border-bottom: 2px solid #cbd5e1;
  padding-bottom: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.door-trigger-ink:hover {
  border-color: #64748b;
  color: #1e293b;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .crystal-container {
    padding: 2rem 1.5rem;
  }
  .phase-dawn {
    margin-left: 1rem;
    padding-left: 1.5rem;
  }
}

/* Method Nav (Buttons) - Extracted as it seemed specific to this flow or similar pages */
.method-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 2rem;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-size: 0.95rem;
}

.nav-btn.prev {
  color: #64748b;
  background: #f8fafc;
}

.nav-btn.next {
  color: #fff;
  background: var(--gradient-1); /* Fallback or variable */
  background: linear-gradient(135deg, #8fd3f4 0%, #84fab0 100%);
  box-shadow: 0 4px 10px rgba(132, 250, 176, 0.3);
}

.nav-btn.list {
  color: #64748b;
  font-size: 0.9rem;
}

.nav-btn:hover {
  transform: translateY(-2px);
}
.nav-btn.prev:hover {
  background: #f1f5f9;
  color: #334155;
}
.nav-btn.list:hover {
  color: var(--accent-color);
}
.nav-btn.next:hover {
  box-shadow: 0 6px 15px rgba(132, 250, 176, 0.4);
}
