/* CSS Stylesheet for Zen Meditation App Homepage */
:root {
  --bg-app: #f7f5f0;          /* Warm Morandi cream */
  --bg-card: rgba(255, 255, 255, 0.72); /* Glassmorphism translucent card */
  --bg-card-hover: rgba(250, 249, 246, 0.85);
  --text-primary: #2b302c;    /* Soft deep charcoal */
  --text-secondary: #6e7570;  /* Muted slate grey */
  --text-tertiary: #9ea5a0;   /* Muted silver grey */
  --accent: #5d6d5d;          /* Sage green */
  --accent-hover: #4a584a;
  --accent-light: rgba(93, 109, 93, 0.08);
  --border: rgba(43, 48, 44, 0.06);
  --border-focus: rgba(93, 109, 93, 0.4);
  --shadow-sm: 0 2px 8px rgba(43, 48, 44, 0.02);
  --shadow-md: 0 8px 30px rgba(43, 48, 44, 0.04);
  --shadow-lg: 0 16px 48px rgba(43, 48, 44, 0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --font-serif: -apple-system-ui-serif, ui-serif, "Georgia", "Songti SC", "Noto Serif SC", "Source Han Serif SC", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "PingFang SC", "Noto Sans CJK SC", sans-serif;
}

[data-theme="dark"] {
  --bg-app: #121413;          /* Soft obsidian black */
  --bg-card: rgba(27, 30, 28, 0.70); /* Glassmorphism dark translucent card */
  --bg-card-hover: rgba(35, 39, 37, 0.82);
  --text-primary: #e3e6e4;
  --text-secondary: #99a19c;
  --text-tertiary: #676c69;
  --accent: #8da48d;          /* Light sage green */
  --accent-hover: #abc0ab;
  --accent-light: rgba(141, 164, 141, 0.08);
  --border: rgba(227, 230, 228, 0.06);
  --border-focus: rgba(141, 164, 141, 0.4);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.22);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-app);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.5s ease, color 0.5s ease;
  overflow-x: hidden;
}

h1, h2, h3, h4, .serif-font {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

button {
  font-family: var(--font-sans);
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout Utilities */
.app-container {
  display: flex;
  min-height: 100vh;
  position: relative;
}

/* Navigation Sidebar */
.nav-sidebar {
  width: 260px;
  background-color: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border);
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  height: 100vh;
  z-index: 100;
  transition: background-color 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.brand-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.brand-name {
  font-size: 20px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  width: 100%;
}

.nav-item:hover, .nav-item.active {
  color: var(--text-primary);
  background-color: var(--bg-app);
}

.nav-item.active {
  font-weight: 500;
  color: var(--accent);
}

.nav-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  margin: 24px 0 8px 16px;
}

/* Main Content Area */
.main-layout {
  flex: 1;
  margin-left: 260px;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1400px;
  min-width: 0; /* Prevents overflow inside flex parent */
}

/* Top Controller Bar */
.top-controller {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.scheme-selector {
  display: flex;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  padding: 4px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.scheme-tab {
  padding: 8px 20px;
  font-size: 14px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.scheme-tab.active {
  color: #ffffff;
  background-color: var(--accent);
  box-shadow: 0 4px 12px rgba(93, 109, 93, 0.2);
}

[data-theme="dark"] .scheme-tab.active {
  color: #121413;
  background-color: var(--accent);
  box-shadow: 0 4px 12px rgba(141, 164, 141, 0.2);
}

.tweaks-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background-color: var(--bg-card);
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.tweaks-btn:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* Cards & Generic Elements */
.zen-card {
  background-color: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease, border-color 0.5s ease;
}

.zen-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(93, 109, 93, 0.15);
}

/* Scheme A: Immersive Card Layout */
.scheme-card-view {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
}

.immersive-banner {
  grid-column: span 2;
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #e4ded0 0%, #dcd3bf 100%);
  display: flex;
  align-items: flex-end;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

/* Scenic soft background using CSS gradients */
.immersive-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, #f7f1e3 0%, rgba(228,222,208,0.2) 60%),
              radial-gradient(circle at 10% 80%, #d4cbba 0%, rgba(228,222,208,0) 80%);
  z-index: 1;
}

[data-theme="dark"] .immersive-banner {
  background: linear-gradient(135deg, #1d2220 0%, #111413 100%);
}

[data-theme="dark"] .immersive-bg-pattern {
  background: radial-gradient(circle at 70% 30%, #29322e 0%, rgba(29,34,32,0.2) 60%),
              radial-gradient(circle at 10% 80%, #151a17 0%, rgba(29,34,32,0) 80%);
}

.immersive-banner-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.immersive-tag {
  position: absolute;
  top: 32px;
  left: 48px;
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
  z-index: 2;
}

[data-theme="dark"] .immersive-tag {
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255,255,255,0.05);
}

.immersive-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.immersive-description {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

.play-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--accent);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(93, 109, 93, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
}

/* Scheme B: Fullscreen breathing view */
.scheme-breath-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 550px;
  background-color: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.breath-circle-container {
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 40px;
}

.breath-outer-wave {
  position: absolute;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  width: 100%;
  height: 100%;
  opacity: 0.3;
  transition: transform 3.8s ease-in-out;
}

.breath-mid-wave {
  position: absolute;
  border-radius: var(--radius-full);
  background-color: var(--accent-light);
  width: 80%;
  height: 80%;
  opacity: 0.4;
  transition: transform 3.8s ease-in-out;
}

.breath-core {
  width: 50%;
  height: 50%;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, var(--accent) 0%, rgba(93,109,93,0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0.1em;
  font-family: var(--font-serif);
  box-shadow: 0 10px 40px rgba(93, 109, 93, 0.3);
  z-index: 10;
  transition: transform 3.8s ease-in-out;
  cursor: pointer;
}

[data-theme="dark"] .breath-core {
  background: radial-gradient(circle, var(--accent) 0%, rgba(141,164,141,0.8) 100%);
  color: #121413;
}

/* Breathing phases transitions */
.phase-inhale .breath-outer-wave {
  transform: scale(1.25);
  border-color: var(--accent);
  opacity: 0.6;
}
.phase-inhale .breath-mid-wave {
  transform: scale(1.15);
  opacity: 0.7;
}
.phase-inhale .breath-core {
  transform: scale(1.1);
}

.phase-hold .breath-outer-wave {
  transform: scale(1.25);
  border-color: var(--accent);
  opacity: 0.4;
}
.phase-hold .breath-mid-wave {
  transform: scale(1.15);
  opacity: 0.5;
}
.phase-hold .breath-core {
  transform: scale(1.1);
}

.phase-exhale .breath-outer-wave {
  transform: scale(0.95);
  opacity: 0.15;
}
.phase-exhale .breath-mid-wave {
  transform: scale(0.95);
  opacity: 0.2;
}
.phase-exhale .breath-core {
  transform: scale(0.95);
}

.breath-instruction {
  font-size: 24px;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-serif);
  height: 36px;
}

.breath-timer {
  font-size: 14px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

.breath-btn-group {
  display: flex;
  gap: 16px;
  z-index: 10;
}

/* Scheme C: Bento Box Modular Grid */
.scheme-bento-view {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 24px;
}

.bento-item {
  background-color: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease, border-color 0.5s ease;
  display: flex;
  flex-direction: column;
}

.bento-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.bento-item-1 { /* Daily Meditation, double width */
  grid-column: span 2;
  grid-row: span 2;
  justify-content: space-between;
  background: linear-gradient(to bottom right, var(--bg-card) 60%, var(--accent-light));
}

.bento-item-2 { /* Breathing Small circle */
  grid-column: span 1;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.bento-item-3 { /* Calendar / Stats */
  grid-column: span 2;
  grid-row: span 1;
}

.bento-item-4 { /* Mood Slider */
  grid-column: span 1;
  grid-row: span 1;
  justify-content: space-between;
}

.bento-item-5 { /* Soundscapes list, full width */
  grid-column: span 3;
  grid-row: span 1;
}

/* Specific UI Panels */
/* Slider Component */
.mood-slider-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 12px;
}

.mood-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--border);
  outline: none;
  transition: background 0.3s;
}

.mood-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.1s;
}

.mood-slider::-webkit-slider-thumb:active {
  transform: scale(1.2);
}

.mood-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-secondary);
}

.mood-status-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.mood-face {
  font-size: 32px;
  transition: transform 0.3s ease;
}

.mood-quote {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 15px;
  text-align: center;
  color: var(--text-secondary);
  padding: 0 10px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soundscapes card lists */
.sounds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.sound-card {
  border: 1px solid var(--border);
  background-color: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sound-card:hover {
  border-color: var(--accent);
  background-color: var(--bg-card-hover);
}

.sound-card.active {
  background-color: var(--accent-light);
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}

.sound-icon {
  font-size: 24px;
}

.sound-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sound-title {
  font-size: 14px;
  font-weight: 500;
}

.sound-volume {
  font-size: 11px;
  color: var(--text-secondary);
}

.sound-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sound-card.active .sound-indicator {
  opacity: 1;
  animation: pulse-indicator 1.5s infinite ease-in-out;
}

@keyframes pulse-indicator {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.5); opacity: 1; }
}

/* Stats and streak calendar */
.stats-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: center;
  height: 100%;
}

.stats-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 32px;
  font-weight: 300;
  font-family: var(--font-serif);
  color: var(--accent);
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-secondary);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  width: 100%;
}

.cal-day-header {
  font-size: 11px;
  text-align: center;
  color: var(--text-tertiary);
  font-weight: 500;
}

.cal-day {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cal-day:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--accent);
}

.cal-day.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

[data-theme="dark"] .cal-day.active {
  color: #121413;
}

.cal-day.today {
  border-width: 2px;
  border-color: var(--accent);
}

/* Tweaks Panel Sidebar Drawer */
.tweaks-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background-color: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  padding: 40px 24px;
  z-index: 110;
  box-shadow: var(--shadow-lg);
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s ease, border-color 0.5s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}

.tweaks-drawer.open {
  right: 0;
}

.tweaks-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.tweak-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tweak-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.tweak-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tweak-label {
  font-size: 12px;
  color: var(--text-secondary);
}

.tweak-select {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background-color: var(--bg-app);
  color: var(--text-primary);
  font-size: 13px;
  outline: none;
}

.tweak-select:focus {
  border-color: var(--accent);
}

.tweak-range {
  width: 100%;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Audio Player Progress */
.audio-player-progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
}

.audio-time-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  min-width: 36px;
}

.audio-progress-bar-bg {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background-color: var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.audio-progress-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--accent);
  width: 0%;
  transition: width 0.1s linear;
}

/* Animations and decorative visual details */
.visual-wave-visualizer {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.visual-wave-bar {
  width: 2px;
  height: 100%;
  background-color: var(--accent);
  border-radius: 1px;
}

.visual-wave-bar.animating {
  animation: wave-bounce 0.8s infinite ease-in-out alternate;
}

@keyframes wave-bounce {
  0% { transform: scaleY(0.1); }
  100% { transform: scaleY(1); }
}

.visual-wave-bar:nth-child(1) { animation-delay: 0.1s; }
.visual-wave-bar:nth-child(2) { animation-delay: 0.3s; }
.visual-wave-bar:nth-child(3) { animation-delay: 0.5s; }
.visual-wave-bar:nth-child(4) { animation-delay: 0.2s; }
.visual-wave-bar:nth-child(5) { animation-delay: 0.4s; }

/* Dedicated Soundscapes & Stats Styles */
.sound-volume-slider-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 10px;
}

.sound-volume-slider {
  flex: 1;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
}

.sound-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.record-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.record-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.record-item:hover {
  border-color: var(--accent);
  background-color: var(--bg-card-hover);
}

.chart-bar {
  fill: var(--accent-light);
  transition: fill 0.3s, transform 0.3s;
  cursor: pointer;
}

.chart-bar:hover {
  fill: var(--accent);
}

.chart-axis {
  stroke: var(--border);
  stroke-width: 1;
}

.chart-text {
  fill: var(--text-secondary);
  font-size: 11px;
  font-family: var(--font-sans);
}

/* Zen Ensō Circle & Quote Styling inside Home Banner */
.zen-enso-circle {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1.5px solid rgba(93, 109, 93, 0.25);
  background: radial-gradient(circle, rgba(93, 109, 93, 0.03) 0%, rgba(93, 109, 93, 0) 70%);
  box-shadow: 0 0 30px rgba(93, 109, 93, 0.05);
  z-index: 1;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-theme="dark"] .zen-enso-circle {
  border-color: rgba(141, 164, 141, 0.22);
  background: radial-gradient(circle, rgba(141, 164, 141, 0.04) 0%, rgba(141, 164, 141, 0) 70%);
  box-shadow: 0 0 30px rgba(141, 164, 141, 0.07);
}

.zen-quote-container {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.zen-quote-text {
  font-family: var(--font-serif);
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-style: italic;
  margin: 0;
  transition: color 0.5s ease;
}

.zen-quote-author {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: color 0.5s ease;
}

