/* ════════════════════════════════════════════
   TEMA DEĞİŞKENLERİ
════════════════════════════════════════════ */
:root[data-theme="dark"] {
  --bg:       #0d0d14;
  --bg-alt:   #11111c;
  --card:     #17172a;
  --input-bg: #1c1c30;
  --border:   rgba(255,255,255,0.07);
  --text:     #ede8f0;
  --muted:    #7a7490;
  --accent:   #c9a0dc;
  --accent2:  #d4729a;
  --rose:     #e8b4c2;
  --gold:     #d4b483;
  --hero-ov:  rgba(8, 5, 18, 0.58);
  --door-bg:  rgba(13, 13, 20, 0.90);
}

:root[data-theme="light"] {
  --bg:       #fdf5f8;
  --bg-alt:   #fff8fb;
  --card:     #ffffff;
  --input-bg: #f9eef4;
  --border:   rgba(0,0,0,0.07);
  --text:     #251830;
  --muted:    #9b8aaa;
  --accent:   #b0509c;
  --accent2:  #c2506e;
  --rose:     #d4729a;
  --gold:     #a07830;
  --hero-ov:  rgba(0, 0, 0, 0.38);
  --door-bg:  rgba(250, 245, 248, 0.92);
}

/* ════════════════════════════════════════════
   RESET
════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  transition: background .4s, color .4s;
  overflow-x: hidden;
}

/* ════════════════════════════════════════════
   TEMA BUTONU
════════════════════════════════════════════ */
.theme-toggle {
  position: fixed;
  top: 18px; right: 18px;
  z-index: 999;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  cursor: pointer;
  font-size: 17px;
  color: var(--text);
  transition: transform .25s, background .3s;
}
.theme-toggle:hover { transform: scale(1.08); }

[data-theme="dark"]  .icon-sun  { display: inline; }
[data-theme="dark"]  .icon-moon { display: none;   }
[data-theme="light"] .icon-sun  { display: none;   }
[data-theme="light"] .icon-moon { display: inline; }

/* ════════════════════════════════════════════
   LOGIN — KAPI ANİMASYONU
════════════════════════════════════════════ */
.login-stage {
  position: fixed;
  inset: 0;
  z-index: 9999;
  perspective: 1800px;
  perspective-origin: center center;
  background: url('assets/assetsphoto.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 18, 0.45);
  pointer-events: none;
}

.door {
  position: absolute;
  top: 0; bottom: 0;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--door-bg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  z-index: 2;
}

.door-left {
  left: 0;
  transform-origin: left center;
  border-right: 1px solid rgba(201, 160, 220, 0.15);
}

.door-right {
  right: 0;
  transform-origin: right center;
  border-left: 1px solid rgba(201, 160, 220, 0.15);
}

.door-ornament {
  font-size: 1.2rem;
  color: var(--rose);
  opacity: 0.6;
  letter-spacing: .3em;
}

.door-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 400;
  color: var(--rose);
  opacity: 0.35;
  line-height: 1;
}

.door-name {
  font-family: 'Manrope', sans-serif;
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted);
}

.login-stage.opening .door-left  { transform: rotateY(-110deg); }
.login-stage.opening .door-right { transform: rotateY(110deg);  }

.login-stage.fading { opacity: 0; transition: opacity .5s ease; }
.login-stage.gone   { display: none; }

/* Login center form */
.login-center {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 90%;
  max-width: 400px;
  padding: 2.5rem 2rem;
  background: rgba(13, 13, 20, 0.65);
  border: 1px solid rgba(201, 160, 220, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  animation: fadeUp .6s ease;
}

.login-eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .8rem;
}

.login-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .3rem;
  line-height: 1.2;
}
.login-title em { font-style: italic; color: var(--rose); }

.login-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  margin-bottom: 1.8rem;
}

.login-prompt { margin-bottom: 1.4rem; }

.login-question {
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .05em;
  margin-bottom: .9rem;
  font-style: italic;
}

.login-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  text-align: center;
  letter-spacing: .08em;
  outline: none;
  transition: border-color .25s;
}
.login-input:focus { border-color: var(--rose); }
.login-input::placeholder { color: rgba(255,255,255,.28); }
.login-input.shake { animation: shake .45s ease; }

.login-error {
  color: #e07878;
  font-size: .78rem;
  min-height: 1.1rem;
  margin-top: .5rem;
}

.login-who {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.door-btn {
  background: transparent;
  border: 1px solid rgba(201, 160, 220, 0.3);
  border-radius: 50px;
  padding: 9px 22px;
  color: rgba(255,255,255,.75);
  font-family: 'Manrope', sans-serif;
  font-size: .8rem;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}
.door-btn:hover {
  background: rgba(201, 160, 220, 0.12);
  border-color: var(--rose);
  color: #fff;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  background: url('assets/assetsphoto.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: .55;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-ov);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 740px;
}

.hero-pre {
  font-weight: 300;
  font-size: .78rem;
  letter-spacing: .48em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 1.1rem;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 8vw, 5.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.18;
  text-shadow: 0 2px 28px rgba(0,0,0,.5);
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--rose);
}

.hero-chip {
  display: inline-block;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
}
.hero-chip:empty { display: none; }

.hero-line {
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,.3);
  margin: 0 auto 1.6rem;
}

.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: rgba(255,255,255,.8);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  border: 1px solid rgba(255,255,255,.26);
  padding: 10px 28px;
  border-radius: 50px;
  transition: background .3s, color .3s;
}
.hero-btn:hover {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.bg-upload-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  font-size: 22px;
  cursor: pointer;
  opacity: .45;
  transition: opacity .2s;
  user-select: none;
}
.bg-upload-btn:hover { opacity: 1; }

/* ════════════════════════════════════════════
   ORTAK BÖLÜM YAPISI
════════════════════════════════════════════ */
.section     { padding: 88px 0; background: var(--bg); }
.section.alt { background: var(--bg-alt); }

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--rose);
  text-align: center;
  margin-bottom: .7rem;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  font-weight: 400;
  text-align: center;
  color: var(--text);
  margin-bottom: .4rem;
}
.sec-title em {
  font-style: italic;
  color: var(--accent);
}

.sec-sub {
  text-align: center;
  color: var(--muted);
  font-size: .8rem;
  letter-spacing: .1em;
  margin-bottom: 3rem;
}

/* ════════════════════════════════════════════
   SAYAÇ
════════════════════════════════════════════ */
.sayac-section { padding: 70px 0; }

.counter-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2.2rem 0 1.4rem;
  flex-wrap: wrap;
}

.counter-cell {
  text-align: center;
  min-width: 80px;
}

.counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.counter-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .3rem;
}

.counter-sep {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  padding-bottom: .8rem;
}

.counter-anniv {
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
  letter-spacing: .04em;
}
.counter-anniv strong { color: var(--accent); font-style: normal; }
.counter-anniv em { color: var(--rose); }

/* ════════════════════════════════════════════
   ANI EKLEME FORMU
════════════════════════════════════════════ */
.add-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 2.6rem;
}

input, textarea, select {
  width: 100%;
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 15px;
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  outline: none;
  resize: vertical;
  transition: border-color .25s;
}
input:focus, textarea:focus { border-color: var(--accent); }
input[type="date"] { cursor: pointer; }
input::placeholder, textarea::placeholder { color: var(--muted); }

.form-label {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .05em;
}

/* ════════════════════════════════════════════
   BUTONLAR
════════════════════════════════════════════ */
.btn {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 30px;
  font-size: .85rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
}
.btn:hover  { opacity: .87; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-small {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: .78rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-small:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 1px dashed var(--border);
  color: var(--muted);
  border-radius: 50px;
  padding: 9px 22px;
  font-size: .8rem;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  display: block;
  margin: 1.4rem auto 0;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ════════════════════════════════════════════
   GRID & ANI KARTLARI
════════════════════════════════════════════ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.memory-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  animation: fadeUp .35s ease;
}
.memory-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.13);
}

.mem-date {
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mem-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.mem-body {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}

.mem-author {
  font-family: 'Caveat', cursive;
  font-size: .95rem;
  color: var(--rose);
  margin-top: 10px;
  font-style: italic;
}

.mem-del {
  position: absolute;
  top: 11px; right: 12px;
  background: none; border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .78rem;
  opacity: 0;
  transition: opacity .2s;
  padding: 4px 6px;
  border-radius: 6px;
}
.memory-card:hover .mem-del { opacity: 1; }
.mem-del:hover { color: #e07878; }

.empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 42px 0;
  font-size: .9rem;
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   HARİTA — TÜRKİYE
════════════════════════════════════════════ */
.places-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.places-canvas {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: visible;
}

.tr-map {
  width: 100%;
  height: auto;
  display: block;
}

.pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.pin-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(232, 180, 194, 0.25), 0 0 0 7px rgba(232, 180, 194, 0.10);
  cursor: default;
  animation: pinPulse 2.5s ease-in-out infinite;
}

@keyframes pinPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,180,194,.25), 0 0 0 7px rgba(232,180,194,.10); }
  50%       { box-shadow: 0 0 0 6px rgba(232,180,194,.35), 0 0 0 11px rgba(232,180,194,.08); }
}

.pin-label {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
}
.pin-label small {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: .65rem;
  margin-top: 2px;
}
.pin:hover .pin-label { opacity: 1; }

.places-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.place-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .78rem;
  color: var(--text);
  font-weight: 500;
}
.place-chip small { color: var(--muted); font-weight: 400; }

.chip-del {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: .65rem;
  padding: 0 2px 0 6px;
  line-height: 1;
  opacity: .5;
  transition: opacity .2s, color .2s;
}
.chip-del:hover { opacity: 1; color: #e07878; }

.places-add-wrap {
  text-align: center;
  margin-top: 1.6rem;
}

.places-add-form {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-top: 1rem;
  text-align: left;
  animation: fadeUp .3s ease;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.places-add-form.open { display: flex; }

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   ŞARKIMIZ
════════════════════════════════════════════ */
.sarki-edit-form {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 1.6rem;
}
.sarki-edit-form input { margin-bottom: 0; }

.song-embed {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.song-embed-yt {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.song-embed-yt iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 14px;
}

.sarki-placeholder {
  text-align: center;
  color: var(--muted);
  font-size: .88rem;
  padding: 2.5rem 0;
  border: 1px dashed var(--border);
  border-radius: 14px;
  font-style: italic;
  margin-bottom: 1rem;
}

/* ════════════════════════════════════════════
   MOOD KARTLARI
════════════════════════════════════════════ */
.mood-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.mood-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s;
}
.mood-card:hover { transform: translateY(-2px); }

.mood-name {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.mood-emoji {
  font-size: 2.8rem;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.mood-durum {
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  min-height: 1.3rem;
}

.mood-edit {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  text-align: left;
}
.mood-edit.visible { display: flex; }

.mood-inp-emoji {
  text-align: center;
  font-size: 1.4rem;
  padding: 7px;
}

.mood-inp-durum { font-size: .85rem; }

/* ════════════════════════════════════════════
   SÜRPRİZ KUTULAR
════════════════════════════════════════════ */
.surpriz-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 1.6rem;
}

.surpriz-card {
  border-radius: 18px;
  padding: 22px;
  position: relative;
  animation: fadeUp .3s ease;
  transition: transform .2s;
}
.surpriz-card:hover { transform: translateY(-2px); }
.surpriz-card .mem-del { opacity: 0; }
.surpriz-card:hover .mem-del { opacity: 1; }

.surpriz-card.open {
  background: var(--card);
  border: 1px solid var(--border);
}

.surpriz-card.locked {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  opacity: .75;
}

.sp-date {
  font-size: .68rem;
  color: var(--gold);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.sp-baslik {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sp-icerik {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  white-space: pre-wrap;
}

.sp-lock {
  font-size: 1.8rem;
  margin-bottom: 10px;
  opacity: .5;
}

.sp-countdown {
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 6px;
}

.surpriz-add-wrap { text-align: center; }

.surpriz-add-form {
  display: none;
  flex-direction: column;
  gap: 11px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  margin-top: 1rem;
  text-align: left;
  animation: fadeUp .3s ease;
}
.surpriz-add-form.open { display: flex; }

/* ════════════════════════════════════════════
   NOT DEFTERİ
════════════════════════════════════════════ */
.note-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.unutma-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.unutma-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unutma-item {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  position: relative;
  animation: fadeUp .3s ease;
}

.unutma-tarih {
  font-size: .7rem;
  color: var(--accent);
  letter-spacing: .04em;
  display: block;
  margin-bottom: 5px;
}
.unutma-tarih em {
  font-family: 'Caveat', cursive;
  font-style: normal;
  color: var(--rose);
  font-size: .85rem;
}

.unutma-metin {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
}

.unutma-empty {
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
  padding: 20px 0;
}

.unutma-item .mem-del { opacity: 0; }
.unutma-item:hover .mem-del { opacity: 1; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .9rem;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════════
   ANİMASYONLAR
════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

/* ════════════════════════════════════════════
   MOBİL
════════════════════════════════════════════ */
@media (max-width: 680px) {
  .grid { grid-template-columns: 1fr; }
  .mood-cards { grid-template-columns: 1fr; }
  .surpriz-list { grid-template-columns: 1fr; }
  .counter-strip { gap: 4px; }
  .counter-cell { min-width: 60px; }
  .counter-num { font-size: 2.2rem; }
  .door-letter { font-size: 3rem; }
  .login-center { padding: 2rem 1.4rem; }
  .login-title { font-size: 2rem; }
  .login-who { flex-direction: column; }
  .sarki-edit-form { flex-direction: column; }
  .places-canvas { overflow-x: auto; }
}

@media (max-width: 420px) {
  .counter-sep { display: none; }
  .counter-strip { gap: 16px; }
}
