:root {
  /* Color palette - soft & romantic */
  --pink-light: #ffe4ec;
  --pink: #f8b4c4;
  --pink-rose: #e8a0b5;
  --pink-deep: #d4859a;
  --beige: #faf3e8;
  --beige-warm: #f5ebe0;
  --beige-dark: #e8ddd0;
  --white: #fffefe;
  --blue-pale: #e8f4f8;
  --blue-sky: #b8d4e3;
  --blue-soft: #a8c8dc;
  --blue-accent: #7eb5c9;
  
  /* Tulip accents */
  --tulip-pink: #f4a5b8;
  --tulip-red: #e8788f;
  
  --shadow-soft: 0 4px 20px rgba(216, 133, 154, 0.15);
  --shadow-card: 0 8px 32px rgba(184, 130, 150, 0.12);
  --radius: 16px;
  --radius-sm: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

/* ========== App shell & sidebar ========== */
.app-shell {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.sidebar {
  width: 260px;
  min-width: 260px;
  background: rgba(255, 254, 254, 0.95);
  border-right: 2px solid rgba(248, 180, 196, 0.3);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,0.06);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              min-width 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

/* ── Icon-only state ── */
.sidebar.sidebar-icons {
  width: 64px;
  min-width: 64px;
  overflow: hidden;
}
.sidebar.sidebar-icons .sidebar-title { display: none; }
.sidebar.sidebar-icons .sidebar-logo { display: none; }
.sidebar.sidebar-icons .sidebar-brand { display: none; }
.sidebar.sidebar-icons .nav-label { display: none; }
/* Hide inline settings in icon mode */
.sidebar.sidebar-icons .settings-panel {
  max-height: 0 !important;
  overflow: hidden !important;
  border-bottom: none !important;
}

/* Settings popout — portaled to body when sidebar is in icon mode */
.settings-panel.settings-popout {
  position: fixed;
  max-height: 280px !important;
  overflow: visible !important;
  width: 260px;
  background: rgba(255, 254, 254, 0.98);
  border: 2px solid rgba(248, 180, 196, 0.3);
  border-radius: 12px;
  box-shadow: 8px 4px 32px rgba(0,0,0,0.12);
  z-index: 150;
  padding: 0.5rem 0;
  transition: none;
}
body.dark-mode .settings-panel.settings-popout {
  background: rgba(40, 35, 45, 0.98);
  border-color: rgba(180, 140, 160, 0.3);
  box-shadow: 8px 4px 32px rgba(0,0,0,0.3);
}
.sidebar.sidebar-icons .sidebar-top { padding: 0.6rem 0; justify-content: center; flex-direction: column; align-items: center; gap: 0.25rem; overflow: visible; }
.sidebar.sidebar-icons .sidebar-actions { flex-direction: column; align-items: center; gap: 0.25rem; }
.sidebar.sidebar-icons .sidebar-nav { padding: 0.75rem 0.25rem; }
.sidebar.sidebar-icons .sidebar-link { justify-content: center; padding: 0.75rem 0; gap: 0; }
.sidebar.sidebar-icons .sidebar-footer { padding: 0.5rem 0.25rem; align-items: center; }
.sidebar.sidebar-icons .auth-text { display: none; }
.sidebar.sidebar-icons .auth-btn { justify-content: center; padding: 0.75rem 0; width: 100%; }

/* ── Hidden state (zero-width, removed from flow) ── */
.sidebar.sidebar-hidden {
  width: 0;
  min-width: 0;
  overflow: hidden;
  border-right: none;
  box-shadow: none;
}

/* ── Peek state: fixed overlay from left edge ── */
.sidebar.sidebar-hidden.sidebar-peek {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 260px !important;
  min-width: 260px !important;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 90;
  border-right: 2px solid rgba(248, 180, 196, 0.3);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.18);
}

/* Hover zone strip (only visible when sidebar is hidden) */
#sidebar-hover-zone {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 10px;
  height: 100vh;
  z-index: 89;
  cursor: e-resize;
}
body.sidebar-is-hidden #sidebar-hover-zone { display: block; }

body.dark-mode .sidebar {
  background: rgba(40, 35, 45, 0.95);
  border-right-color: rgba(180, 140, 160, 0.3);
}

.sidebar-close {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--pink-deep);
}

.sidebar-top {
  display: flex;
  align-items: center;
  padding: 1rem 1rem 1rem 1.5rem;
  border-bottom: 2px solid rgba(248, 180, 196, 0.2);
  gap: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: padding 0.25s ease, gap 0.25s ease;
}

.sidebar-brand {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: hidden;
  transition: opacity 0.2s ease, max-width 0.25s ease, max-height 0.25s ease;
}

.sidebar-actions {
  display: flex;
  gap: 0.25rem;
  flex-shrink: 0;
  transition: gap 0.25s ease;
}

.sidebar-action-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--pink-deep);
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.sidebar-action-btn:hover,
.sidebar-action-btn.active {
  background: rgba(248, 180, 196, 0.2);
}

.sidebar-action-btn svg {
  width: 17px;
  height: 17px;
}

body.dark-mode .sidebar-action-btn { color: #e8b8c8; }
body.dark-mode .sidebar-action-btn:hover,
body.dark-mode .sidebar-action-btn.active { background: rgba(180, 140, 160, 0.2); }

/* Settings panel */
.settings-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-bottom: 0px solid rgba(248, 180, 196, 0.2);
}

.settings-panel.open {
  max-height: 240px;
  border-bottom-width: 2px;
}

.settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
}

.settings-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b5a5a;
}

body.dark-mode .settings-label { color: #b8a8b8; }

.sidebar-logo { font-size: 1.5rem; }
.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--pink-deep);
  font-size: 1.25rem;
}

body.dark-mode .sidebar-title { color: #e8b8c8; }

.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1rem 0.75rem;
  transition: padding 0.25s ease;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.25rem;
  border-radius: var(--radius-sm);
  color: #5c4a4a;
  text-decoration: none;
  font-weight: 500;
  overflow: hidden;
  transition: all 0.2s;
}

body.dark-mode .sidebar-link { color: #d8d0d8; }

.sidebar-link:hover {
  background: rgba(248, 180, 196, 0.2);
  color: var(--pink-deep);
}

body.dark-mode .sidebar-link:hover { background: rgba(180, 140, 160, 0.2); color: #e8b8c8; }

.sidebar-link.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  color: var(--white);
}

.nav-icon { font-size: 1.2rem; flex-shrink: 0; }
.nav-label { flex: 1; overflow: hidden; white-space: nowrap; transition: opacity 0.2s ease, max-width 0.25s ease; }

.sidebar-footer {
  padding: 1rem;
  border-top: 2px solid rgba(248, 180, 196, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  flex-shrink: 0;
  transition: padding 0.25s ease;
}

.sidebar-theme .sidebar-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #6b5a5a;
  display: block;
  margin-bottom: 0.4rem;
}

body.dark-mode .sidebar-theme .sidebar-label { color: #b8a8b8; }

.season-picker-compact {
  display: flex;
  gap: 0.25rem;
}

.season-picker-compact .season-btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  font-size: 1.1rem;
}


.auth-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid var(--pink);
  background: var(--white);
  color: var(--pink-deep);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
}

.auth-btn:hover { background: var(--pink-light); }
body.dark-mode .auth-btn { background: rgba(50, 45, 55, 0.8); color: #e8b8c8; border-color: rgba(180, 140, 160, 0.5); }
body.dark-mode .auth-btn:hover { background: rgba(70, 60, 80, 0.9); }

.sidebar-open {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  background: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 60;
  box-shadow: var(--shadow-card);
}

.main-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-compact {
  padding: 1rem 2rem 1.5rem;
  flex-shrink: 0;
  max-height: 600px;
  overflow: hidden;
  opacity: 1;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s ease,
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body:not(.home-active) .hero-compact {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.hero-compact .tulip { font-size: 1.4rem; }
.hero-compact .title { font-size: clamp(1.75rem, 4vw, 2.5rem); }
.hero-compact .subtitle { font-size: 1rem; }
.hero-compact h2 { font-size: 1rem; margin: 0.25rem 0; }

.main-footer {
  text-align: center;
  padding: 1rem;
  color: var(--pink-deep);
  font-size: 0.9rem;
  border-top: 1px solid rgba(248, 180, 196, 0.2);
}

#main-content {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.5rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

.welcome-text {
  text-align: center;
  color: var(--pink-deep);
  font-size: 1.1rem;
  padding: 2rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 80;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .sidebar.open { transform: translateX(0) !important; }
  .sidebar-close { display: block; }
  .sidebar-open { display: flex; align-items: center; justify-content: center; }
  /* Reset collapse states on mobile — use .open mechanism instead */
  .sidebar.sidebar-icons,
  .sidebar.sidebar-hidden {
    width: 260px !important;
    min-width: 260px !important;
    overflow: visible;
    border-right: 2px solid rgba(248, 180, 196, 0.3) !important;
  }
  #sidebar-hover-zone { display: none !important; }
}

/* Auth modal */
.auth-modal-content { max-width: 400px; }
.auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.auth-tab {
  flex: 1;
  padding: 0.6rem;
  border: 2px solid var(--beige-dark);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-tab.active { background: var(--pink); color: var(--white); border-color: var(--pink-deep); }
.auth-error { color: var(--tulip-red); font-size: 0.9rem; margin: 0.5rem 0; }
.auth-divider {
  text-align: center;
  margin: 1rem 0;
  color: #999;
  font-size: 0.9rem;
}
.auth-providers {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.auth-provider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 2px solid var(--beige-dark);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.auth-provider-btn:hover { border-color: var(--pink); background: var(--pink-light); }
.auth-provider-btn img { width: 20px; height: 20px; }
.auth-guest-hint { font-size: 0.85rem; color: #999; margin-top: 1rem; }
.submit-btn.secondary { background: var(--beige-dark); color: #5c4a4a; }
.submit-btn.secondary:hover { background: var(--beige); }

body {
  font-family: 'Quicksand', sans-serif;
  background: linear-gradient(135deg, var(--beige) 0%, var(--pink-light) 25%, var(--blue-pale) 50%, var(--beige-warm) 75%, var(--pink-light) 100%);
  min-height: 100vh;
  min-height: -webkit-fill-available;
  color: #5c4a4a;
  overflow-x: hidden;
  position: relative;
  padding: env(safe-area-inset-top, 0) env(safe-area-inset-right, 0) env(safe-area-inset-bottom, 0) env(safe-area-inset-left, 0);
}

/* Theme background - seasonal */
.theme-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  transition: background-image 0.5s ease, background 0.5s ease;
}

/* Spring (default) */
.theme-bg[data-season="spring"] {
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(248, 180, 196, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 212, 227, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(250, 243, 232, 0.5) 0%, transparent 40%);
}

.theme-bg[data-season="spring"]::before {
  content: '🌷';
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.12;
  top: 8%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}

.theme-bg[data-season="spring"]::after {
  content: '🌷';
  position: absolute;
  font-size: 2rem;
  opacity: 0.1;
  bottom: 15%;
  right: 8%;
  animation: float 8s ease-in-out infinite 1s;
}

/* Summer */
body.theme-summer { background: linear-gradient(135deg, #fff8e7 0%, #ffe4b5 25%, #87ceeb 50%, #f5deb3 75%, #ffdab9 100%); }
.theme-bg[data-season="summer"] {
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 218, 185, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(135, 206, 235, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255, 248, 231, 0.6) 0%, transparent 45%);
}
.theme-bg[data-season="summer"]::before {
  content: '☀️';
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.15;
  top: 8%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}
.theme-bg[data-season="summer"]::after {
  content: '🌻';
  position: absolute;
  font-size: 2rem;
  opacity: 0.12;
  bottom: 15%;
  right: 8%;
  animation: float 8s ease-in-out infinite 1s;
}

/* Fall */
body.theme-fall { background: linear-gradient(135deg, #f5e6d3 0%, #e8d5b7 25%, #d4a574 50%, #c4946a 75%, #e8c9a0 100%); }
.theme-bg[data-season="fall"] {
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196, 148, 106, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(245, 230, 211, 0.6) 0%, transparent 45%);
}
.theme-bg[data-season="fall"]::before {
  content: '🍂';
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.2;
  top: 8%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}
.theme-bg[data-season="fall"]::after {
  content: '🍁';
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  bottom: 15%;
  right: 8%;
  animation: float 8s ease-in-out infinite 1s;
}

/* Winter */
body.theme-winter { background: linear-gradient(135deg, #e8f4fc 0%, #d6e9f7 25%, #b8d4e8 50%, #e0eef9 75%, #cce5f5 100%); }
.theme-bg[data-season="winter"] {
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(184, 212, 232, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(224, 238, 249, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.6) 0%, transparent 45%);
}
.theme-bg[data-season="winter"]::before {
  content: '❄️';
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.2;
  top: 8%;
  left: 8%;
  animation: float 6s ease-in-out infinite;
}
.theme-bg[data-season="winter"]::after {
  content: '⛄';
  position: absolute;
  font-size: 2rem;
  opacity: 0.15;
  bottom: 15%;
  right: 8%;
  animation: float 8s ease-in-out infinite 1s;
}

/* ========== DARK MODE (seasonal variants) ========== */
body.dark-mode { color: #e8e0e5; }
body.dark-mode .title { color: #e8b8c8; }
body.dark-mode .subtitle,
body.dark-mode .section-header h2,
body.dark-mode footer { color: #e8b8c8; }
body.dark-mode .media-card,
body.dark-mode .description-card { background: rgba(50, 45, 55, 0.9); border-color: rgba(180, 140, 160, 0.3); }
body.dark-mode .media-description,
body.dark-mode .description-card p { color: #d8d0d8; }
body.dark-mode .description-date { color: #9ed4e8; }
body.dark-mode .toggle-btn { background: rgba(50, 45, 55, 0.9); color: #e8b8c8; border-color: rgba(180, 140, 160, 0.5); }
body.dark-mode .toggle-btn:hover { background: rgba(70, 60, 80, 0.95); }
body.dark-mode .modal-content { background: rgba(45, 40, 50, 0.98); border-color: rgba(180, 140, 160, 0.4); }
body.dark-mode .modal-content h3,
body.dark-mode .modal-content label span { color: #e8b8c8; }
body.dark-mode .modal-content input,
body.dark-mode .modal-content textarea { background: rgba(35, 30, 40, 0.8); border-color: rgba(140, 110, 130, 0.4); color: #e8e0e5; }
body.dark-mode .modal-close { color: #e8b8c8; }
body.dark-mode .profile-card { background: rgba(50, 45, 55, 0.9); border-color: rgba(180, 140, 160, 0.3); }
body.dark-mode .profile-card input,
body.dark-mode .profile-card textarea { background: rgba(35, 30, 40, 0.8); border-color: rgba(140, 110, 130, 0.4); color: #e8e0e5; }
body.dark-mode .profile-card label span { color: #e8b8c8; }

/* Dark mode - Spring */
body.dark-mode.theme-spring,
body.dark-mode { background: linear-gradient(135deg, #2d2635 0%, #3d2d3a 25%, #2a2d35 50%, #352d38 75%, #2d2835 100%); }

/* Dark mode - Summer */
body.dark-mode.theme-summer { background: linear-gradient(135deg, #2a2520 0%, #3d3025 25%, #1e2a35 50%, #352d25 75%, #2d2820 100%); }

/* Dark mode - Fall */
body.dark-mode.theme-fall { background: linear-gradient(135deg, #2d2520 0%, #352a20 25%, #352518 50%, #2d2018 75%, #352818 100%); }

/* Dark mode - Winter */
body.dark-mode.theme-winter { background: linear-gradient(135deg, #1a2230 0%, #1e2835 25%, #152535 50%, #1a2535 75%, #1e2a38 100%); }

/* Theme controls wrapper */
.theme-controls {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 50;
}

.appearance-picker {
  display: flex;
  gap: 0.2rem;
  background: rgba(255, 254, 254, 0.9);
  border: 2px solid rgba(248, 180, 196, 0.5);
  border-radius: 50px;
  padding: 0.2rem;
}

body.dark-mode .appearance-picker {
  background: rgba(40, 35, 45, 0.95);
  border-color: rgba(180, 140, 160, 0.4);
}

.appearance-btn {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  color: var(--pink-deep);
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.appearance-btn svg { width: 16px; height: 16px; }

.appearance-btn:hover { background: rgba(248, 180, 196, 0.25); }

.appearance-btn.active {
  background: var(--pink);
  color: #fff;
}

body.dark-mode .appearance-btn { color: #d0a8c0; }
body.dark-mode .appearance-btn.active { background: var(--pink-deep); color: #fff; }

/* Season picker */
.season-picker {
  display: flex;
  gap: 0.35rem;
  background: rgba(255, 254, 254, 0.9);
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(248, 180, 196, 0.5);
}

body.dark-mode .season-picker {
  background: rgba(40, 35, 45, 0.95);
  border-color: rgba(180, 140, 160, 0.4);
}

.season-btn {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.season-btn:hover,
.season-btn:focus-visible {
  background: rgba(248, 180, 196, 0.3);
  transform: scale(1.1);
  outline: none;
}

.season-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  box-shadow: 0 2px 12px rgba(216, 133, 154, 0.4);
}

.media-card {
  position: relative;
}

.media-card .media-description::after {
  content: ' 🌷';
  opacity: 0.5;
  font-size: 0.85em;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  position: relative;
  z-index: 1;
}

.tulips-decoration {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tulips-decoration.bottom {
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.tulip {
  font-size: 1.8rem;
  animation: tulipBounce 2s ease-in-out infinite;
}

.tulip:nth-child(2) { animation-delay: 0.2s; }
.tulip:nth-child(3) { animation-delay: 0.4s; }

@keyframes tulipBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 600;
  color: var(--pink-deep);
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--pink-deep);
  margin-top: 0.25rem;
  font-weight: 500;
}

.hero-title:empty::before,
.hero-description:empty::before {
  content: attr(data-placeholder);
  color: var(--pink);
  opacity: 0.7;
}

.hero-description {
  max-width: 540px;
  margin: 0.75rem auto 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #6b5a5a;
  min-height: 1.5em;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.hero-description:hover,
.hero-description:focus {
  background: rgba(248, 180, 196, 0.15);
  outline: none;
}

.hero-title {
  cursor: text;
}

.hero-title:focus {
  outline: none;
}

/* Section Toggle Buttons */
.section-toggles {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  padding: 0 1.5rem 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  min-height: 44px;
  min-width: 44px;
  border: 2px solid var(--pink);
  background: var(--white);
  color: var(--pink-deep);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.toggle-btn:hover {
  background: var(--pink-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.toggle-btn.active {
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  color: var(--white);
  border-color: var(--pink-deep);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Main Content */
.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  position: relative;
  z-index: 1;
}

.section {
  display: none;
  animation: fadeIn 0.4s ease;
}

.section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--pink-deep);
  font-weight: 600;
}

.upload-btn,
.add-btn {
  padding: 0.6rem 1.25rem;
  background: linear-gradient(135deg, var(--blue-sky), var(--blue-accent));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(126, 181, 201, 0.4);
}

.upload-btn:hover,
.add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(126, 181, 201, 0.5);
}

/* Media Grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.media-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid rgba(248, 180, 196, 0.3);
  position: relative;
}

.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(184, 130, 150, 0.2);
}

.media-delete-btn {
  position: absolute;
  top: 6px;
  right: 6px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 20, 25, 0.55);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.media-card:hover .media-delete-btn,
.media-card:focus-within .media-delete-btn {
  opacity: 1;
}

.media-delete-btn:hover {
  background: rgba(200, 60, 80, 0.85);
}

.media-expand-btn {
  position: absolute;
  top: 6px;
  right: 48px;
  z-index: 5;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(30, 20, 25, 0.55);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  padding: 5px;
}

.media-expand-btn svg { width: 14px; height: 14px; }

.media-card:hover .media-expand-btn,
.media-card:focus-within .media-expand-btn {
  opacity: 1;
}

.media-expand-btn:hover { background: rgba(90, 60, 110, 0.85); }

.photo-card img,
.video-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.video-card video {
  background: var(--beige-dark);
}

.media-description {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  color: #6b5a5a;
  background: linear-gradient(180deg, var(--white), var(--beige));
  line-height: 1.5;
}

/* Descriptions Section */
.descriptions-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.description-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
}

.description-card::before {
  content: '🌷';
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.5;
}

.description-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.description-date {
  font-weight: 600;
  color: var(--blue-accent);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.description-card p {
  color: #5c4a4a;
  line-height: 1.6;
  font-size: 1rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--pink-deep);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(92, 74, 74, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  max-width: 450px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--pink);
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--pink-deep);
  line-height: 1;
  background: none;
  border: none;
  padding: 0.25rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: var(--blue-accent);
}

.modal-content h3 {
  font-family: 'Playfair Display', serif;
  color: var(--pink-deep);
  margin-bottom: 1.5rem;
}

.modal-content label {
  display: block;
  margin-bottom: 1rem;
}

.modal-content label span {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #6b5a5a;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(248, 180, 196, 0.35);
}

.submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 133, 154, 0.4);
}

/* Video placeholder */
.video-placeholder {
  height: 220px;
  background: linear-gradient(135deg, var(--beige), var(--pink-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--pink-deep);
}

.placeholder-icon {
  font-size: 3rem;
  opacity: 0.7;
}

/* Profile Section */
.profile-fields {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 1rem;
}
.profile-fields-wide {
  max-width: 660px;
  margin: 1.5rem auto 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 2rem;
}
.profile-social-fields {
  padding-left: 0;
}
.profile-couple {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.profile-person label,
.profile-field {
  display: block;
  margin-bottom: 1rem;
}

.profile-person label span,
.profile-field span {
  display: block;
  font-weight: 600;
  color: #6b5a5a;
  margin-bottom: 0.4rem;
}

.profile-person input,
.profile-field input,
.profile-field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}

.profile-field textarea {
  resize: vertical;
  min-height: 100px;
}

.profile-heart {
  font-size: 2rem;
  align-self: center;
  margin-top: 2rem;
}

/* Countdowns Section */
.countdowns-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.countdown-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 2px solid rgba(248, 180, 196, 0.3);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.countdown-card h4 {
  font-family: 'Playfair Display', serif;
  color: var(--pink-deep);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.countdown-time {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--blue-accent);
  margin-bottom: 0.25rem;
}

.countdown-time.past {
  color: var(--pink-deep);
  font-size: 1.1rem;
}

.countdown-date {
  font-size: 0.85rem;
  color: #999;
}

.countdown-card .delete-btn {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.6;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-card .delete-btn:hover { opacity: 1; }

/* Love Notes Section */
.love-notes-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.love-note-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.love-note-card .note-meta {
  font-size: 0.85rem;
  color: var(--blue-accent);
  margin-bottom: 0.5rem;
}

.love-note-card .note-content {
  color: #5c4a4a;
  line-height: 1.6;
  white-space: pre-wrap;
}

.love-note-card .delete-btn {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.5;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.love-note-card .delete-btn:hover { opacity: 1; }

/* Bucket List Section */
.bucket-list-sender {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.bucket-sender-btn {
  padding: 0.4rem 0.8rem;
  border: 2px solid var(--pink);
  background: var(--white);
  color: var(--pink-deep);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.bucket-sender-btn:hover { background: var(--pink-light); }
.bucket-sender-btn.active { background: var(--pink); color: var(--white); }

.bucket-input-wrap {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bucket-input-wrap input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
}

.bucket-list-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bucket-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 2px solid rgba(248, 180, 196, 0.3);
  transition: all 0.2s;
}

.bucket-item.done {
  opacity: 0.7;
}

.bucket-item.done .bucket-item-text {
  text-decoration: line-through;
  color: #999;
}

.bucket-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--pink);
  cursor: pointer;
}

.bucket-item-text { flex: 1; }
.bucket-item-delete {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.5;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bucket-item-delete:hover { opacity: 1; }
.bucket-item-by { font-size: 0.75rem; color: var(--blue-accent); }

body.dark-mode .countdown-card,
body.dark-mode .love-note-card,
body.dark-mode .bucket-item {
  background: rgba(50, 45, 55, 0.9);
  border-color: rgba(180, 140, 160, 0.3);
}

body.dark-mode .countdown-card h4,
body.dark-mode .love-note-card .note-meta { color: #e8b8c8; }
body.dark-mode .love-note-card .note-content { color: #d8d0d8; }
body.dark-mode .bucket-input-wrap input {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(140, 110, 130, 0.4);
  color: #e8e0e5;
}

/* Chat Section */
.chat-container {
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid rgba(248, 180, 196, 0.3);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 420px;
  max-height: 70vh;
}

.chat-sender-toggle {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#chat .section-header {
  flex-wrap: wrap;
}

.chat-sender-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--pink);
  background: var(--white);
  color: var(--pink-deep);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.chat-sender-btn:hover { background: var(--pink-light); }
.chat-sender-btn.active { background: var(--pink); color: var(--white); border-color: var(--pink-deep); }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-msg {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  line-height: 1.4;
  align-self: flex-start;
}

.chat-msg.sent {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  color: var(--white);
  border-bottom-right-radius: 4px;
}

.chat-msg.received {
  background: var(--beige);
  color: #5c4a4a;
  border: 1px solid var(--beige-dark);
  border-bottom-left-radius: 4px;
}

.chat-msg-sender {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-bottom: 0.2rem;
}

.chat-msg-time {
  font-size: 0.7rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.chat-input-wrap {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 2px solid var(--beige-dark);
  background: var(--beige);
}

.chat-input-wrap input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid var(--beige-dark);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.chat-input-wrap input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(248, 180, 196, 0.35);
}

.chat-send-btn {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.chat-send-btn:hover { transform: scale(1.05); }

body.dark-mode .chat-container {
  background: rgba(50, 45, 55, 0.9);
  border-color: rgba(180, 140, 160, 0.3);
}

body.dark-mode .chat-msg.received {
  background: rgba(60, 55, 65, 0.9);
  color: #e0d8e0;
  border-color: rgba(100, 90, 110, 0.5);
}

body.dark-mode .chat-input-wrap {
  background: rgba(40, 35, 45, 0.9);
  border-top-color: rgba(100, 90, 110, 0.5);
}

body.dark-mode .chat-input-wrap input {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(100, 90, 110, 0.5);
  color: #e8e0e5;
}

/* Responsive - Mobile & iPad */
@media (max-width: 768px) {
  .theme-controls {
    top: 0.75rem;
    right: 0.75rem;
  }
  
  .season-picker {
    padding: 0.4rem;
    gap: 0.25rem;
  }
  
  .season-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 1.2rem;
  }
  
  .hero {
    padding: 2.5rem 1rem 2rem;
    padding-top: max(2.5rem, env(safe-area-inset-top));
  }
  
  .content {
    padding: 0 1rem 3rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .section-header .upload-btn,
  .section-header .add-btn {
    align-self: flex-start;
    padding: 0.7rem 1.25rem;
    min-height: 44px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 0.75rem 1.5rem;
  }
  
  .title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  
  .media-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .section-toggles {
    gap: 0.5rem;
    padding: 0 1rem 1.5rem;
  }
  
  .toggle-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  
  .modal-content {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .modal-content input,
  .modal-content textarea {
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
  
  .hero-description {
    padding: 0.6rem;
    font-size: 1rem; /* 16px prevents iOS zoom */
  }
  
  .profile-card {
    padding: 1.5rem;
  }
  
  .profile-person input,
  .profile-field input,
  .profile-field textarea {
    font-size: 16px; /* Prevents iOS zoom */
  }
  
  .chat-container {
    height: 360px;
  }
  
  .chat-input-wrap input {
    font-size: 16px; /* Prevents iOS zoom */
  }
}

/* Touch-friendly & accessibility */
.toggle-btn,
.upload-btn,
.add-btn,
.submit-btn,
.season-btn {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Contenteditable on touch devices */
.hero-title,
.hero-description,
[contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
}

@media (hover: none) {
  .media-card:hover {
    transform: none;
  }

  .description-card:hover {
    transform: none;
  }

  .toggle-btn:hover,
  .upload-btn:hover,
  .add-btn:hover {
    transform: none;
  }

  /* Show delete/expand buttons on touch devices (no hover available) */
  .media-delete-btn,
  .media-expand-btn {
    opacity: 1;
  }

  /* Show avatar overlay on touch */
  .profile-avatar-overlay {
    opacity: 0.7;
  }
}

/* ========== Minimal SVG Icons ========== */
.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav-icon svg {
  width: 18px;
  height: 18px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  color: var(--pink-deep);
}

.sidebar-logo svg {
  width: 22px;
  height: 22px;
}

body.dark-mode .sidebar-logo { color: #e8b8c8; }


.auth-icon {
  display: flex;
  align-items: center;
}

.auth-icon svg {
  width: 18px;
  height: 18px;
}

.sidebar-open svg {
  width: 22px;
  height: 22px;
}

/* ========== Profile Avatar Uploader ========== */
.profile-avatar-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 1rem;
  cursor: pointer;
  border: 2px solid rgba(248, 180, 196, 0.5);
  background: var(--beige);
  overflow: hidden;
}

.profile-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: none;
}

.profile-avatar-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deep);
  opacity: 0.5;
}

.profile-avatar-ph svg {
  width: 40px;
  height: 40px;
}

.profile-avatar-overlay {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  color: white;
}

.profile-avatar-overlay svg {
  width: 22px;
  height: 22px;
}

.profile-avatar-wrap:hover .profile-avatar-overlay {
  opacity: 1;
}

body.dark-mode .profile-avatar-wrap {
  background: rgba(50, 45, 55, 0.8);
  border-color: rgba(180, 140, 160, 0.4);
}

.profile-heart svg {
  width: 28px;
  height: 28px;
  color: var(--pink-deep);
}

/* ========== Floating Chat Button ========== */
.float-chat-btn {
  display: none;
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  color: white;
  cursor: pointer;
  z-index: 59;
  box-shadow: var(--shadow-card);
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.float-chat-btn svg {
  width: 22px;
  height: 22px;
}

.float-chat-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 28px rgba(216, 133, 154, 0.4);
}

@media (max-width: 768px) {
  .float-chat-btn {
    display: flex;
  }
}

/* ========== Chat Overlay ========== */
.chat-overlay {
  position: fixed;
  bottom: 0;
  right: 1.5rem;
  width: 380px;
  max-width: calc(100vw - 2rem);
  height: 520px;
  max-height: 85vh;
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -4px 40px rgba(0, 0, 0, 0.13);
  border: 2px solid rgba(248, 180, 196, 0.35);
  border-bottom: none;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-overlay.open {
  transform: translateY(0);
}

body.dark-mode .chat-overlay {
  background: rgba(45, 40, 50, 0.98);
  border-color: rgba(180, 140, 160, 0.35);
}

.chat-overlay-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem 0.9rem 1.25rem;
  border-bottom: 2px solid var(--beige-dark);
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--beige));
  border-radius: var(--radius) var(--radius) 0 0;
}

body.dark-mode .chat-overlay-header {
  background: rgba(55, 48, 62, 0.98);
  border-bottom-color: rgba(100, 90, 110, 0.5);
}

.chat-overlay-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--pink-deep);
  font-size: 1rem;
  flex: 1;
}

.chat-overlay-title svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

body.dark-mode .chat-overlay-title { color: #e8b8c8; }

.chat-ovl-sender-toggle {
  display: flex;
  gap: 0.3rem;
}

.chat-ovl-sender-btn {
  padding: 0.3rem 0.7rem;
  border: 1.5px solid var(--pink);
  background: transparent;
  color: var(--pink-deep);
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.chat-ovl-sender-btn:hover { background: var(--pink-light); }
.chat-ovl-sender-btn.active { background: var(--pink); color: var(--white); }
body.dark-mode .chat-ovl-sender-btn { color: #e8b8c8; border-color: rgba(180, 140, 160, 0.5); }
body.dark-mode .chat-ovl-sender-btn.active { background: var(--pink-rose); color: var(--white); }

.chat-overlay-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--pink-deep);
  border-radius: 50%;
  transition: background 0.2s;
  flex-shrink: 0;
}

.chat-overlay-close:hover { background: rgba(248, 180, 196, 0.3); }
body.dark-mode .chat-overlay-close { color: #e8b8c8; }

.chat-ovl-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.chat-ovl-input-wrap {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-top: 2px solid var(--beige-dark);
  background: var(--beige);
  flex-shrink: 0;
}

body.dark-mode .chat-ovl-input-wrap {
  background: rgba(40, 35, 45, 0.9);
  border-top-color: rgba(100, 90, 110, 0.5);
}

.chat-ovl-input-wrap input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 2px solid var(--beige-dark);
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.chat-ovl-input-wrap input:focus { border-color: var(--pink); }

body.dark-mode .chat-ovl-input-wrap input {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(100, 90, 110, 0.5);
  color: #e8e0e5;
}

.chat-ovl-send-btn {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.chat-ovl-send-btn svg {
  width: 16px;
  height: 16px;
}

.chat-ovl-send-btn:hover { transform: scale(1.05); }

@media (max-width: 480px) {
  .chat-overlay {
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

/* ========== Chat Mini Tab ========== */
.chat-mini-tab {
  position: fixed;
  bottom: 0;
  right: 1.5rem;
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem 0.65rem 1.1rem;
  background: linear-gradient(135deg, var(--pink), var(--pink-rose));
  color: white;
  border-radius: var(--radius) var(--radius) 0 0;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 -4px 20px rgba(216, 133, 154, 0.35);
  z-index: 199;
  transition: transform 0.2s;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.chat-mini-tab.visible {
  display: flex;
}

.chat-mini-tab:hover {
  transform: translateY(-3px);
}

.chat-mini-tab > svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.chat-mini-close {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 0.15rem;
  flex-shrink: 0;
  transition: background 0.15s;
}

.chat-mini-close:hover {
  background: rgba(255, 255, 255, 0.45);
}

@media (max-width: 480px) {
  .chat-mini-tab {
    right: 0;
    left: 0;
    justify-content: center;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

/* ========== Settings Select ========== */
.settings-select {
  font-family: 'Quicksand', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.5rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: #5c4a4a;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  max-width: 130px;
}

.settings-select:focus { border-color: var(--pink); }

body.dark-mode .settings-select {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(140, 110, 130, 0.4);
  color: #e8e0e5;
}

/* ========== Enhanced Profile ========== */
.profile-person {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2.25rem;
  border: 2px solid rgba(248, 180, 196, 0.25);
  box-shadow: var(--shadow-soft);
  flex: 1;
  min-width: 220px;
  max-width: 320px;
}

body.dark-mode .profile-person {
  background: rgba(50, 45, 55, 0.9);
  border-color: rgba(180, 140, 160, 0.3);
}

.profile-person h3 {
  font-family: 'Playfair Display', serif;
  color: var(--pink-deep);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  text-align: center;
}

body.dark-mode .profile-person h3 { color: #e8b8c8; }

.profile-person label {
  display: block;
  margin-bottom: 0.75rem;
}

.profile-person label span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8a7070;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.dark-mode .profile-person label span { color: #b8a8b8; }

.profile-person input[type="text"],
.profile-person input[type="number"],
.profile-person input[type="url"] {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  background: var(--beige);
  color: #5c4a4a;
  transition: border-color 0.2s, background 0.2s;
}

.profile-person input:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(248, 180, 196, 0.35);
}

body.dark-mode .profile-person input {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(140, 110, 130, 0.4);
  color: #e8e0e5;
}

/* Social links */
.profile-socials {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1.5px solid rgba(248, 180, 196, 0.25);
}

body.dark-mode .profile-socials { border-top-color: rgba(180, 140, 160, 0.25); }

.profile-socials-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #8a7070;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

body.dark-mode .profile-socials-label { color: #b8a8b8; }

.profile-social-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.profile-social-field input {
  flex: 1;
  padding: 0.45rem 0.65rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.82rem;
  background: var(--beige);
  color: #5c4a4a;
  transition: border-color 0.2s;
}

.profile-social-field input:focus {
  outline: none;
  border-color: var(--pink);
}

body.dark-mode .profile-social-field input {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(140, 110, 130, 0.4);
  color: #e8e0e5;
}

.social-badge {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.social-badge.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-badge.fb { background: #1877f2; }
.social-badge.tt { background: #000; }
.social-badge.tw { background: #1d9bf0; }

/* Profile couple updated layout */
.profile-couple {
  gap: 1rem;
  padding: 1.5rem 0;
}

.profile-card {
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
}

.profile-card .profile-field {
  background: var(--white);
  padding: 2rem 2.75rem 2.5rem;
  border-radius: var(--radius);
  border: 2px solid rgba(248, 180, 196, 0.25);
  box-shadow: var(--shadow-soft);
  margin-top: 1.25rem;
}

body.dark-mode .profile-card .profile-field {
  background: rgba(50, 45, 55, 0.9);
  border-color: rgba(180, 140, 160, 0.3);
}

.profile-field span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #8a7070;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

body.dark-mode .profile-field span { color: #b8a8b8; }

.profile-field input,
.profile-field textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 0.9rem;
  background: var(--beige);
  color: #5c4a4a;
  transition: border-color 0.2s;
}

.profile-field input:focus,
.profile-field textarea:focus {
  outline: none;
  border-color: var(--pink);
}

body.dark-mode .profile-field input,
body.dark-mode .profile-field textarea {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(140, 110, 130, 0.4);
  color: #e8e0e5;
}

/* ========== Dating Counter ========== */
.dating-counter {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.dating-counter-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--pink-deep);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.dating-counter-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.counter-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  background: rgba(255, 254, 254, 0.85);
  border: 2px solid rgba(248, 180, 196, 0.3);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.5rem 0.4rem;
  box-shadow: var(--shadow-soft);
}

body.dark-mode .counter-unit {
  background: rgba(50, 42, 55, 0.85);
  border-color: rgba(180, 140, 160, 0.3);
}

.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--pink-deep);
  line-height: 1;
}

body.dark-mode .counter-num { color: #e8a8c0; }

.counter-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a08090;
  margin-top: 0.2rem;
}

.counter-sep {
  font-size: 1.6rem;
  color: var(--pink);
  font-weight: 600;
  padding-bottom: 0.5rem;
}

.dating-counter-hint {
  font-size: 0.88rem;
  color: var(--pink-deep);
  opacity: 0.75;
  margin-top: 0.75rem;
  font-style: italic;
}

/* ========== Home Nav Tiles ========== */
.home-nav-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.5rem;
}

.home-tile {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(248, 180, 196, 0.4);
  border-radius: var(--radius-sm);
  background: rgba(255, 254, 254, 0.88);
  color: var(--pink-deep);
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-soft);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.home-tile svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.home-tile:hover, .home-tile:focus-visible {
  background: var(--pink-light);
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(216, 133, 154, 0.25);
  outline: none;
}

body.dark-mode .home-tile {
  background: rgba(50, 42, 55, 0.85);
  border-color: rgba(180, 140, 160, 0.3);
  color: #d0a8c0;
}

body.dark-mode .home-tile:hover {
  background: rgba(70, 55, 75, 0.95);
  border-color: var(--pink-deep);
}

/* ========== Media Empty State ========== */
.media-empty-state {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem;
  gap: 0.75rem;
  color: var(--pink-deep);
  opacity: 0.6;
}

.media-empty-state svg {
  width: 52px;
  height: 52px;
  stroke: currentColor;
}

.media-empty-state p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
}

.media-empty-state span {
  font-size: 0.82rem;
  color: #a08090;
}

body.dark-mode .media-empty-state { color: #d0a8c0; }
body.dark-mode .media-empty-state span { color: #907080; }

/* ========== Lightbox ========== */
.lightbox {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 9000;
  background: rgba(10, 5, 10, 0.94);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 120px);
  max-height: calc(100vh - 100px);
  width: 100%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-content video {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 8px;
  outline: none;
}

.lightbox-close {
  position: fixed;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
  line-height: 1;
}

.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 48px;
  height: 64px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 9001;
  line-height: 1;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }

.lightbox-caption {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  text-align: center;
  margin-top: 0.75rem;
  max-width: 600px;
  padding: 0 1rem;
  font-style: italic;
}

.lightbox-counter {
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

@media (max-width: 600px) {
  .lightbox-content {
    max-width: 100vw;
    max-height: calc(100vh - 80px);
    padding: 0 48px;
  }
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
}

/* ========== Sync Status Indicator ========== */
.sync-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: #8a7070;
  border-top: 1px solid rgba(248, 180, 196, 0.2);
}

.sync-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  transition: background 0.3s;
}

.sync-dot.online { background: #4caf50; box-shadow: 0 0 6px rgba(76, 175, 80, 0.5); }
.sync-dot.partial { background: #ff9800; box-shadow: 0 0 6px rgba(255, 152, 0, 0.5); }
.sync-dot.offline { background: #999; }

body.dark-mode .sync-status { color: #b8a8b8; border-top-color: rgba(180, 140, 160, 0.2); }

.sidebar.sidebar-icons .sync-status .sync-label { display: none; }
.sidebar.sidebar-icons .sync-status { justify-content: center; padding: 0.5rem 0; }

/* ========== Couple Pairing UI ========== */
.couple-section {
  margin: 1.25rem 0;
  padding-top: 1.25rem;
  border-top: 1.5px solid rgba(248, 180, 196, 0.25);
}

.couple-hint {
  font-size: 0.85rem;
  color: #8a7070;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.couple-join-wrap {
  display: flex;
  gap: 0.5rem;
}

.couple-join-wrap input {
  flex: 1;
  padding: 0.75rem;
  border: 2px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
}

.couple-join-wrap input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(248, 180, 196, 0.35);
}

.couple-join-wrap .submit-btn {
  width: auto;
  padding: 0.75rem 1.5rem;
  margin-top: 0;
}

.couple-error {
  color: var(--tulip-red);
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.couple-code {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3em;
  color: var(--pink-deep);
  background: var(--pink-light);
  padding: 1rem;
  border-radius: var(--radius-sm);
  margin: 0.75rem 0;
  user-select: all;
}

.couple-linked-badge {
  background: linear-gradient(135deg, var(--pink-light), var(--blue-pale));
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  color: var(--pink-deep);
  font-size: 0.95rem;
}

.couple-linked-hint {
  font-size: 0.8rem;
  color: #8a7070;
  text-align: center;
  margin-top: 0.5rem;
}

body.dark-mode .couple-hint,
body.dark-mode .couple-linked-hint { color: #b8a8b8; }
body.dark-mode .couple-code { background: rgba(50, 45, 55, 0.8); color: #e8b8c8; }
body.dark-mode .couple-linked-badge { background: rgba(50, 45, 55, 0.8); color: #e8b8c8; }
body.dark-mode .couple-join-wrap input {
  background: rgba(35, 30, 40, 0.8);
  border-color: rgba(140, 110, 130, 0.4);
  color: #e8e0e5;
}

