/* =============================================================
   Our Love Story — style.css
   Premium romantic design system
   Dark / deep-red glassmorphism aesthetic
============================================================= */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Color palette */
  --clr-bg:           #090909;
  --clr-bg-2:         #111111;
  --clr-surface:      rgba(255,255,255,0.04);
  --clr-surface-hover:rgba(255,255,255,0.07);
  --clr-border:       rgba(255,255,255,0.08);
  --clr-border-glow:  rgba(185,28,28,0.35);

  --clr-red:          #b91c1c;
  --clr-red-bright:   #ef4444;
  --clr-red-dim:      #7f1d1d;
  --clr-red-glow:     rgba(185,28,28,0.18);

  --clr-gold:         #c8a96e;
  --clr-gold-dim:     rgba(200,169,110,0.15);

  --clr-text:         #f5f5f5;
  --clr-text-muted:   #a1a1aa;
  --clr-text-faint:   #52525b;

  /* Typography */
  --font-serif:       'Cormorant Garamond', Georgia, serif;
  --font-display:     'Playfair Display', Georgia, serif;
  --font-sans:        'Inter', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:  .5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  8rem;

  /* Radii */
  --r-sm:  .5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-card:  0 8px 40px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-glow:  0 0 30px rgba(185,28,28,0.15);
  --shadow-glow-strong: 0 0 60px rgba(185,28,28,0.3);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16,1,0.3,1);
  --ease-in-out:   cubic-bezier(0.4,0,0.2,1);
  --dur-fast:  200ms;
  --dur-med:   400ms;
  --dur-slow:  700ms;
}

/* ─── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background-color: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────────── */
.hidden { display: none !important; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ─── GLASS CARD ─────────────────────────────────────────────── */
.glass-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow: var(--shadow-card);
  transition: border-color var(--dur-med) var(--ease-out-expo),
              transform var(--dur-med) var(--ease-out-expo),
              box-shadow var(--dur-med) var(--ease-out-expo);
}

.glass-card:hover {
  border-color: var(--clr-border-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

/* ─── AURORA ─────────────────────────────────────────────────── */
.aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.aurora-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0;
  animation: aurora-drift 18s ease-in-out infinite;
}

.aurora-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(185,28,28,0.35) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.aurora-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,40,217,0.2) 0%, transparent 70%);
  top: 30%; right: -150px;
  animation-delay: -6s;
}
.aurora-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(185,28,28,0.2) 0%, transparent 70%);
  bottom: -100px; left: 40%;
  animation-delay: -12s;
}

@keyframes aurora-drift {
  0%,100% { opacity: .6; transform: translate(0,0) scale(1); }
  33%      { opacity: .9; transform: translate(60px,-40px) scale(1.1); }
  66%      { opacity: .5; transform: translate(-40px,60px) scale(0.95); }
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  background: linear-gradient(135deg, var(--clr-red) 0%, #991b1b 100%);
  color: #fff;
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 4px 24px rgba(185,28,28,0.45);
  transition: transform var(--dur-fast) var(--ease-out-expo),
              box-shadow var(--dur-fast) var(--ease-out-expo),
              background var(--dur-fast);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 36px rgba(185,28,28,0.65); }
.btn-primary:active { transform: scale(.98); }

.btn-ghost {
  display: inline-block;
  padding: .8rem 2rem;
  border: 1px solid var(--clr-border-glow);
  border-radius: var(--r-full);
  color: var(--clr-text-muted);
  font-size: .9rem;
  letter-spacing: .04em;
  transition: border-color var(--dur-fast), color var(--dur-fast), background var(--dur-fast);
}
.btn-ghost:hover { border-color: var(--clr-red-bright); color: #fff; background: var(--clr-red-glow); }

.btn-arrow { width: 1rem; height: 1rem; transition: transform var(--dur-fast); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }

/* ─── SECTION COMMON ─────────────────────────────────────────── */
section { position: relative; width: 100%; }

.section-header { text-align: center; margin-bottom: var(--space-lg); }

.section-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-red-bright);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #fff 0%, var(--clr-text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  margin-top: 1rem;
  color: var(--clr-text-muted);
  font-size: .9rem;
}
.section-subtitle code {
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: .1em .35em;
  font-size: .85em;
  color: var(--clr-gold);
}

/* ─── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--dur-slow) var(--ease-out-expo),
              transform var(--dur-slow) var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.reveal.visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal.visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal.visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal.visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal.visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal.visible > *:nth-child(6) { transition-delay: 400ms; }

/* ─── FADE-IN ANIMATIONS (intro) ─────────────────────────────── */
.fade-in-up { opacity: 0; transform: translateY(30px); }

.delay-1 { animation: fadeInUp .9s var(--ease-out-expo) .3s forwards; }
.delay-2 { animation: fadeInUp 1s var(--ease-out-expo) .7s forwards; }
.delay-3 { animation: fadeInUp .9s var(--ease-out-expo) 1.1s forwards; }
.delay-4 { animation: fadeInUp .8s var(--ease-out-expo) 1.5s forwards; }
.delay-5 { animation: fadeInUp .8s var(--ease-out-expo) 2s forwards; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════════
   INTRO SCREEN
═══════════════════════════════════════════════════════════════ */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--clr-bg);
  overflow: hidden;
  transition: opacity .8s var(--ease-out-expo), transform .8s var(--ease-out-expo);
}
.intro-screen.exiting {
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.floating-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.floating-hearts .fh {
  position: absolute;
  bottom: -60px;
  font-size: 1.4rem;
  opacity: 0;
  animation: floatHeart linear infinite;
  user-select: none;
}

@keyframes floatHeart {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg) scale(.8); }
  10%  { opacity: .7; }
  90%  { opacity: .4; }
  100% { opacity: 0; transform: translateY(-110vh) rotate(25deg) scale(1.2); }
}

.intro-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
  padding: var(--space-md);
}

.intro-eyebrow {
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-red-bright);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.intro-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, #fff 0%, #d1d5db 50%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.intro-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--clr-text-muted);
  margin-bottom: 3rem;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--clr-red));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .3; transform: scaleY(1); }
  50%      { opacity: 1; transform: scaleY(1.2); }
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.glass-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(9,9,9,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  transition: background var(--dur-med);
}
.glass-nav.scrolled { background: rgba(9,9,9,0.9); }

.nav-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}
.heart-icon { color: var(--clr-red-bright); animation: heartBeat 1.6s ease-in-out infinite; }

@keyframes heartBeat {
  0%,100% { transform: scale(1); }
  14%      { transform: scale(1.25); }
  28%      { transform: scale(1); }
  42%      { transform: scale(1.15); }
  70%      { transform: scale(1); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-link {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  position: relative;
  transition: color var(--dur-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--clr-red-bright);
  transition: width var(--dur-med) var(--ease-out-expo);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--clr-text-muted);
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-out-expo), opacity var(--dur-fast);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ═══════════════════════════════════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════════════════════════════════ */
.main-content { opacity: 0; transition: opacity .6s var(--ease-out-expo); }
.main-content.visible { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem var(--space-md) var(--space-lg);
  overflow: hidden;
  background: radial-gradient(ellipse at 60% 40%, rgba(185,28,28,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(109,40,217,0.07) 0%, transparent 50%);
}
.hero-aurora { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(185,28,28,0.22) 0%, transparent 70%);
  top: -200px; right: -150px;
  opacity: .8;
  animation: aurora-drift 20s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(109,40,217,0.15) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  opacity: .6;
  animation: aurora-drift 25s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--clr-red-bright), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-message {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--clr-text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.9;
}

/* ═══════════════════════════════════════════════════════════════
   COUNTER SECTION
═══════════════════════════════════════════════════════════════ */
.counter-section {
  padding: var(--space-xl) var(--space-md);
  background: linear-gradient(180deg, var(--clr-bg) 0%, var(--clr-bg-2) 100%);
}
.counter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}
.counter-card {
  padding: 2rem 1rem;
  text-align: center;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-width: 0;
}
.counter-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--clr-red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.counter-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

/* ═══════════════════════════════════════════════════════════════
   TIMELINE SECTION
═══════════════════════════════════════════════════════════════ */
.timeline-section {
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--clr-red-dim), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}
.timeline-item:nth-child(odd)  { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-dot {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--clr-bg-2);
  border: 1px solid var(--clr-red-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(185,28,28,0.25);
  flex-shrink: 0;
}
.timeline-icon { font-size: 1.4rem; }

.timeline-card {
  flex: 1;
  padding: 2rem;
  max-width: calc(50% - 40px);
}
.timeline-item:nth-child(odd)  .timeline-card { margin-left: 1.5rem; }
.timeline-item:nth-child(even) .timeline-card { margin-right: 1.5rem; }

.timeline-date {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-red-bright);
  margin-bottom: .75rem;
  font-weight: 600;
}
.timeline-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}
.timeline-body {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY SECTION
═══════════════════════════════════════════════════════════════ */
.gallery-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-2);
}
.masonry-gallery {
  column-count: 3;
  column-gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img, .gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--dur-slow) var(--ease-out-expo), filter var(--dur-med);
  filter: brightness(.85) saturate(1.1);
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); filter: brightness(1) saturate(1.3); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-med);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { color: #fff; font-size: .85rem; font-style: italic; }

/* Empty gallery placeholder */
.gallery-placeholder {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--clr-text-faint);
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: lightboxIn .3s var(--ease-out-expo);
}
@keyframes lightboxIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox[hidden] { display: none !important; }

.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img, .lightbox-video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
  outline: none;
}
.lightbox-caption {
  color: var(--clr-text-muted);
  font-style: italic;
  font-size: .9rem;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--clr-text-muted);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.lightbox-close:hover { background: var(--clr-red); color: #fff; }

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 3rem;
  color: rgba(255,255,255,0.4);
  width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { color: #fff; background: rgba(185,28,28,0.4); }

/* ═══════════════════════════════════════════════════════════════
   LOVE NOTES SECTION
═══════════════════════════════════════════════════════════════ */
.notes-section {
  padding: var(--space-xl) var(--space-md);
}
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.note-card {
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.note-card::before {
  content: '"';
  position: absolute;
  top: -1rem; left: 1rem;
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--clr-red-glow);
  line-height: 1;
  pointer-events: none;
  transition: color var(--dur-med);
}
.note-card:hover::before { color: rgba(185,28,28,0.35); }

.note-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.note-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.note-body {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════
   MUSIC SECTION
═══════════════════════════════════════════════════════════════ */
.music-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-2);
  overflow: hidden;
}
.music-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(185,28,28,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.music-player {
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.album-art {
  position: relative;
  width: 180px; height: 180px;
}
.album-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #3d0000 0%, #1a0a0a 50%, #0d0d0d 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: 0 0 40px rgba(185,28,28,0.4), inset 0 0 30px rgba(0,0,0,0.5);
}

/* KK harfleri */
.kk-initials {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -.02em;
  line-height: 1;
}

/* Müzik dalgası */
.kk-waves {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
}
.kk-waves span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(to top, var(--clr-red), var(--clr-red-bright));
  animation: kkWave 1.2s ease-in-out infinite;
  opacity: 0.7;
}
.kk-waves span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.kk-waves span:nth-child(2) { height: 16px; animation-delay: .15s; }
.kk-waves span:nth-child(3) { height: 22px; animation-delay: .3s; }
.kk-waves span:nth-child(4) { height: 14px; animation-delay: .45s; }
.kk-waves span:nth-child(5) { height: 8px;  animation-delay: .6s; }

@keyframes kkWave {
  0%,100% { transform: scaleY(1);   opacity: .5; }
  50%      { transform: scaleY(1.6); opacity: 1; }
}

/* Çalınca dalgalar hızlansın */
.album-art.playing .kk-waves span {
  animation-duration: .7s;
  opacity: 1;
}

.music-note { font-size: 4rem; animation: musicPulse 2s ease-in-out infinite; }
@keyframes musicPulse {
  0%,100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.1); opacity: 1; }
}

.track-info { text-align: center; }
.track-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: .25rem; }
.track-artist { color: var(--clr-text-muted); font-size: .9rem; }
.track-auto-label {
  margin-top: .4rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-red-bright);
  opacity: .7;
  font-weight: 500;
}

.album-vinyl {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #1a1a1a 0%, #0a0a0a 25%, #1a1a1a 50%, #0a0a0a 75%, #1a1a1a 100%);
  z-index: -1;
  animation: vinyl-spin 8s linear infinite paused;
}
.album-art.playing .album-vinyl { animation-play-state: running; }
.album-art.playing { animation: album-throb 3s ease-in-out infinite; }

@keyframes vinyl-spin { to { transform: rotate(360deg); } }
@keyframes album-throb {
  0%,100% { box-shadow: 0 0 30px rgba(185,28,28,0.3); }
  50%      { box-shadow: 0 0 70px rgba(185,28,28,0.7); }
}

.progress-wrap { width: 100%; }
.progress-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: .5rem;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-red-bright));
  border-radius: 2px;
  width: 0%;
  transition: width .3s linear;
}
.progress-thumb {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 12px; height: 12px;
  background: #fff;
  border-radius: 50%;
  left: 0%;
  box-shadow: 0 0 6px rgba(185,28,28,0.5);
  transition: left .3s linear;
}
.time-labels {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--clr-text-faint);
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.ctrl-btn {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--clr-text-muted);
  transition: color var(--dur-fast), background var(--dur-fast), transform var(--dur-fast);
}
.ctrl-btn svg { width: 20px; height: 20px; }
.ctrl-btn:hover { color: #fff; background: rgba(255,255,255,0.07); }
.ctrl-btn:active { transform: scale(.92); }

.ctrl-play {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--clr-red), #991b1b);
  color: #fff;
  box-shadow: 0 4px 20px rgba(185,28,28,0.4);
}
.ctrl-play svg { width: 24px; height: 24px; }
.ctrl-play:hover { background: linear-gradient(135deg, var(--clr-red-bright), var(--clr-red)); box-shadow: 0 6px 30px rgba(185,28,28,0.6); }

.volume-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  width: 100%;
}
.vol-icon { width: 18px; height: 18px; color: var(--clr-text-faint); flex-shrink: 0; }
.volume-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
}
.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--clr-red-bright);
  cursor: pointer;
}
.music-hint {
  font-size: .75rem;
  color: var(--clr-text-faint);
  text-align: center;
  font-style: italic;
}
.music-hint code {
  background: rgba(255,255,255,0.06);
  padding: .1em .35em;
  border-radius: 3px;
  color: var(--clr-gold);
}

/* ─── PLAYLIST — 3 kart yan yana ─────────────────────────── */
.playlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0 var(--space-md);
}

.pl-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color var(--dur-med) var(--ease-out-expo),
              transform var(--dur-med) var(--ease-out-expo),
              box-shadow var(--dur-med) var(--ease-out-expo);
  overflow: hidden;
}
.pl-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185,28,28,0.5);
  box-shadow: 0 16px 50px rgba(185,28,28,0.2), var(--shadow-card);
}
.pl-card:focus-visible { outline: 2px solid var(--clr-red-bright); outline-offset: 4px; }

/* Aktif kart */
.pl-card.pl-active {
  border-color: rgba(185,28,28,0.6) !important;
  background: rgba(185,28,28,0.08) !important;
  box-shadow: 0 0 40px rgba(185,28,28,0.2), var(--shadow-card) !important;
}
.pl-card.pl-active::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-red-bright), transparent);
}

/* Sanat */
.pl-art {
  position: relative;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d0000 0%, #1a0a0a 60%, #0d0d0d 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  box-shadow: 0 0 24px rgba(185,28,28,0.35), inset 0 0 16px rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.pl-initials {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
/* Dalgalar (sadece aktifken görünür) */
.pl-playing-anim {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
  opacity: 0;
  transition: opacity .3s;
}
.pl-card.pl-active .pl-playing-anim { opacity: 1; }
.pl-playing-anim span {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: var(--clr-red-bright);
  animation: plWave 1s ease-in-out infinite;
}
.pl-playing-anim span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.pl-playing-anim span:nth-child(2) { height: 12px; animation-delay: .18s; }
.pl-playing-anim span:nth-child(3) { height: 9px;  animation-delay: .36s; }
.pl-playing-anim span:nth-child(4) { height: 14px; animation-delay: .54s; }
@keyframes plWave {
  0%,100% { transform: scaleY(1);   opacity: .6; }
  50%      { transform: scaleY(1.8); opacity: 1; }
}
/* Çalan kart daha hızlı */
.pl-card.pl-active .pl-playing-anim span { animation-duration: .65s; }

.pl-info { flex: 1; }
.pl-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .2rem;
  line-height: 1.3;
}
.pl-artist {
  font-size: .78rem;
  color: var(--clr-text-muted);
}
.pl-badge {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-red-bright);
  border: 1px solid rgba(185,28,28,0.4);
  border-radius: var(--r-full);
  padding: .2rem .6rem;
}
.pl-play-icon {
  font-size: .85rem;
  color: var(--clr-text-faint);
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.pl-card:hover .pl-play-icon { color: var(--clr-red-bright); transform: scale(1.3); }

/* ─── MÜZİK ÇUBUĞU (altta) ──────────────────────────────── */
.music-bar {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 1.75rem;
  flex-wrap: wrap;
}

.bar-art {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d0000 0%, #1a0a0a 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(185,28,28,0.4);
}
.bar-initials {
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--clr-red-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bar-waves {
  display: flex;
  align-items: flex-end;
  gap: 1.5px;
  height: 10px;
}
.bar-waves span {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: var(--clr-red-bright);
  animation: plWave .8s ease-in-out infinite;
  opacity: .8;
}
.bar-waves span:nth-child(1) { height: 4px;  animation-delay: 0s; }
.bar-waves span:nth-child(2) { height: 8px;  animation-delay: .12s; }
.bar-waves span:nth-child(3) { height: 10px; animation-delay: .24s; }
.bar-waves span:nth-child(4) { height: 7px;  animation-delay: .36s; }
.bar-waves span:nth-child(5) { height: 4px;  animation-delay: .48s; }

.bar-info { min-width: 0; flex: 0 0 auto; }
.bar-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
.bar-artist { font-size: .75rem; color: var(--clr-text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }

.bar-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.bar-progress-wrap { flex: 1; min-width: 120px; }
.bar-vol { display: flex; align-items: center; gap: .5rem; flex-shrink: 0; min-width: 100px; }

/* Responsive */
@media (max-width: 700px) {
  .playlist { grid-template-columns: 1fr; }
  .music-bar { flex-direction: column; align-items: stretch; }
  .bar-title, .bar-artist { max-width: none; }
}
@media (max-width: 900px) and (min-width: 701px) {
  .playlist { grid-template-columns: repeat(3, 1fr); gap: .75rem; }
  .pl-card { padding: 1.25rem .75rem; }
}

/* ═══════════════════════════════════════════════════════════════
   FAVORITE SONG SECTION
═══════════════════════════════════════════════════════════════ */
.fav-song-section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
}
.fav-song-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(185,28,28,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.fav-song-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2.5rem;
  align-items: center;
}
.fav-song-video-wrap {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--clr-border);
  background: #000;
  aspect-ratio: 16 / 9;
}
.fav-song-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fav-song-info {
  display: flex;
  flex-direction: column;
}
.fav-song-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
}
.fav-song-artist {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  font-weight: 500;
}
.fav-song-divider {
  width: 60px;
  height: 2px;
  background: var(--clr-red-bright);
  margin: 1.5rem 0;
}
.fav-song-description {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--clr-text-muted);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .fav-song-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  .fav-song-title {
    font-size: 1.8rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   OUR SKY SECTION (YILDIZ HARİTASI)
═══════════════════════════════════════════════════════════════ */
.our-sky-section {
  padding: var(--space-xl) var(--space-md);
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}
.sky-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.04) 0%, transparent 60%);
  pointer-events: none;
}
.sky-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  align-items: center;
}
.sky-map-wrap {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(circle, #0c0812 0%, #030206 100%);
  border: 1px solid rgba(200, 169, 110, 0.25);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 30px rgba(200, 169, 110, 0.08);
  padding: 1.5rem;
  aspect-ratio: 1 / 1;
}
.sky-map-wrap svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.star {
  transform-origin: center;
  animation: twinkle 3s ease-in-out infinite;
}
.twinkle-fast { animation-duration: 1.6s; }
.twinkle-slow { animation-duration: 4.5s; }
.twinkle-normal { animation-duration: 2.8s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); filter: drop-shadow(0 0 1px rgba(255,255,255,0.4)); }
  50% { opacity: 1; transform: scale(1.25); filter: drop-shadow(0 0 6px rgba(255,255,255,1)); }
}

.sky-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sky-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  position: relative;
}
.sky-quote::before {
  content: "“";
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(200, 169, 110, 0.15);
  position: absolute;
  top: -2.5rem; left: -1.5rem;
}
.sky-coordinates {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.sky-coord-item {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid rgba(200, 169, 110, 0.2);
  padding: .5rem 1.25rem;
  border-radius: var(--r-full);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
}

@media (max-width: 800px) {
  .sky-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1.75rem;
  }
  .sky-map-wrap {
    max-width: 320px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FUTURE DREAMS SECTION
═══════════════════════════════════════════════════════════════ */
.dreams-section {
  padding: var(--space-xl) var(--space-md);
}
.dreams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.dream-card {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  cursor: default;
}
.dream-check {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--clr-red-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
  color: transparent;
  transition: border-color var(--dur-med), background var(--dur-med), color var(--dur-med);
  margin-top: .15rem;
}
.dream-card.done .dream-check {
  border-color: var(--clr-red-bright);
  background: var(--clr-red);
  color: #fff;
}
.dream-card:hover .dream-check:not(.done .dream-check) { border-color: var(--clr-red); }

.dream-icon { font-size: 1.5rem; }
.dream-body { flex: 1; }
.dream-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.dream-desc { color: var(--clr-text-muted); font-size: .9rem; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════════
   SECRET SECTION
═══════════════════════════════════════════════════════════════ */
.secret-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg-2);
  overflow: hidden;
}
.secret-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(185,28,28,0.1) 0%, transparent 65%);
}
.secret-lock {
  max-width: 460px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
}
.lock-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform var(--dur-med) var(--ease-out-expo);
}
.secret-label {
  display: block;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}
.secret-input-wrap {
  display: flex;
  gap: .75rem;
  justify-content: center;
}
.secret-input {
  flex: 1;
  max-width: 200px;
  padding: .75rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  color: var(--clr-text);
  font-size: .95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--dur-fast);
}
.secret-input:focus { border-color: var(--clr-red); }
.secret-input::placeholder { color: var(--clr-text-faint); }
.secret-error {
  margin-top: 1rem;
  color: var(--clr-red-bright);
  font-size: .85rem;
  min-height: 1.2em;
}
.secret-lock.shake { animation: shake .4s var(--ease-in-out); }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-8px); }
  40%      { transform: translateX(8px); }
  60%      { transform: translateX(-6px); }
  80%      { transform: translateX(6px); }
}

/* Secret Letter */
.secret-letter {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 3.5rem 3rem;
  position: relative;
  animation: letterReveal .8s var(--ease-out-expo);
}
@keyframes letterReveal {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.letter-header { text-align: center; margin-bottom: 2rem; }
.letter-seal { font-size: 3rem; display: block; margin-bottom: 1rem; animation: sealBounce .6s var(--ease-out-expo); }
@keyframes sealBounce { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.letter-title { font-family: var(--font-display); font-size: 1.8rem; font-style: italic; }
.letter-body {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}
.letter-body p { margin-bottom: 1.2em; }
.letter-footer { margin-bottom: 2rem; }
.letter-sign { color: var(--clr-text-muted); font-style: italic; margin-bottom: .25rem; }

/* Love Counter Section */
.love-counter-wrap {
  text-align: center;
  margin: 2.5rem 0 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
}
.love-counter-divider {
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border), transparent);
  margin: 0 auto 1.5rem;
}
.love-counter-prompt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
}
.love-counter-btn {
  font-size: .85rem;
  padding: .7rem 1.8rem;
  margin-bottom: 1.5rem;
  z-index: 2;
  position: relative;
}
.love-counter-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: counterPop .4s var(--ease-out-expo);
}
@keyframes counterPop {
  from { opacity: 0; transform: scale(.9); }
  to { opacity: 1; transform: scale(1); }
}
.love-counter-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .25rem;
  font-variant-numeric: tabular-nums;
  display: block;
}
.love-counter-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-text-faint);
}

/* Bana Bir Not Bırak Section */
.user-notes-wrap {
  text-align: left;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: var(--r-md);
}
.user-notes-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--clr-text);
  text-align: center;
}
.user-notes-prompt {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--clr-text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}
.user-notes-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.user-note-textarea {
  width: 100%;
  height: 90px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-sm);
  padding: .75rem 1rem;
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-size: .92rem;
  outline: none;
  resize: none;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.user-note-textarea:focus {
  border-color: var(--clr-red-bright);
  background: rgba(185, 28, 28, 0.03);
}
.user-note-textarea::placeholder {
  color: var(--clr-text-faint);
}
.user-note-submit {
  align-self: center;
  font-size: .85rem;
  padding: .65rem 1.6rem;
}
.user-notes-list-wrap {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
}
.user-notes-list-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: center;
  color: var(--clr-gold);
}
.user-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  max-height: 320px;
  overflow-y: auto;
  padding-right: .5rem;
}
/* Scrollbar styling */
.user-notes-grid::-webkit-scrollbar {
  width: 4px;
}
.user-notes-grid::-webkit-scrollbar-track {
  background: transparent;
}
.user-notes-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.user-notes-grid::-webkit-scrollbar-thumb:hover {
  background: var(--clr-red-bright);
}

.user-note-card {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 2.5px solid var(--clr-red-bright);
  border-radius: var(--r-sm);
  animation: noteAppear .5s var(--ease-out-expo) forwards;
  position: relative;
}
@keyframes noteAppear {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.user-note-body {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--clr-text-muted);
  margin-bottom: .6rem;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.user-note-date {
  font-size: .72rem;
  color: var(--clr-text-faint);
  display: block;
  text-align: right;
  font-weight: 500;
}
.user-note-empty {
  grid-column: 1/-1;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--clr-text-faint);
  font-size: .95rem;
  padding: 2rem 0;
}

.lock-again { display: block; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════════
   FINAL SECTION
═══════════════════════════════════════════════════════════════ */
.final-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}
.final-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.final-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.final-orb-1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(185,28,28,0.18) 0%, transparent 70%);
  top: -200px; left: -200px;
  opacity: .8;
  animation: aurora-drift 22s ease-in-out infinite;
}
.final-orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(109,40,217,0.12) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  opacity: .7;
  animation: aurora-drift 28s ease-in-out infinite reverse;
}

.final-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}
.final-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}
.final-headline em {
  font-style: italic;
  background: linear-gradient(90deg, var(--clr-red-bright), var(--clr-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.final-message {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--clr-text-muted);
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.9;
}
.final-heart-icon {
  font-size: 3rem;
  color: var(--clr-red-bright);
  animation: heartBeat 1.6s ease-in-out infinite;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  padding: 2rem;
  text-align: center;
  border-top: 1px solid var(--clr-border);
  color: var(--clr-text-faint);
  font-size: .85rem;
}
.heart-red { color: var(--clr-red-bright); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .counter-grid { grid-template-columns: repeat(3, 1fr); }

  .timeline::before { left: 28px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
  .timeline-item:nth-child(even) .timeline-card {
    margin-right: 0;
    margin-left: 1.5rem;
  }
  .timeline-card { max-width: calc(100% - 80px); }

  .masonry-gallery { column-count: 2; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --space-xl: 5rem;
    --space-lg: 2.5rem;
  }

  /* Nav */
  .nav-links {
    position: fixed;
    inset: 0; top: 60px;
    background: rgba(9,9,9,0.98);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur-med);
  }
  .nav-links.open { opacity: 1; pointer-events: all; }
  .nav-link { font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  /* Counter */
  .counter-grid { grid-template-columns: repeat(2, 1fr); }

  /* Timeline */
  .timeline::before { display: none; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }
  .timeline-dot { margin-bottom: 1rem; }
  .timeline-card { max-width: 100%; margin: 0 !important; }
  .timeline-item:nth-child(even) .timeline-card { margin-left: 0 !important; }

  /* Gallery */
  .masonry-gallery { column-count: 1; }

  /* Lightbox nav */
  .lightbox-prev { left: .25rem; }
  .lightbox-next { right: .25rem; }

  /* Player */
  .music-player { padding: 2rem 1.25rem; }

  /* Secret */
  .secret-input-wrap { flex-direction: column; align-items: center; }
  .secret-input { max-width: 100%; }
  .secret-letter { padding: 2.5rem 1.5rem; }
}

/* ─── ACCESSIBILITY: Reduce motion ──────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ŞİFRE MODALİ
═══════════════════════════════════════════════════════════════ */
.pw-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(9,9,9,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pwFadeIn .4s var(--ease-out-expo);
}

.pw-overlay[hidden] { display: none !important; }

@keyframes pwFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.pw-modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 1rem;
  padding: 3rem 2.5rem;
  text-align: center;
  animation: pwSlideUp .55s var(--ease-out-expo);
  border-color: rgba(185,28,28,0.25);
}

@keyframes pwSlideUp {
  from { opacity: 0; transform: translateY(40px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Parlayan üst çizgi */
.pw-modal::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-red-bright), transparent);
  border-radius: 1px;
}

.pw-lock-icon {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  display: block;
  animation: lockBounce 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(185,28,28,0.5));
}

@keyframes lockBounce {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.08); }
}

.pw-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -.01em;
  background: linear-gradient(135deg, #fff 0%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .6rem;
}

.pw-subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.pw-input-wrap {
  display: flex;
  gap: .75rem;
  align-items: center;
  justify-content: center;
}

.pw-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-full);
  padding: .75rem 1.25rem;
  color: var(--clr-text);
  font-family: var(--font-sans);
  font-size: .95rem;
  letter-spacing: .08em;
  outline: none;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast), background var(--dur-fast);
}
.pw-input:focus {
  border-color: var(--clr-red-bright);
  background: rgba(185,28,28,0.06);
  box-shadow: 0 0 0 3px rgba(185,28,28,0.15);
}
.pw-input::placeholder { color: var(--clr-text-faint); letter-spacing: .04em; }

.pw-submit {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.pw-error {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--clr-red-bright);
  min-height: 1.2em;
  font-style: italic;
  animation: none;
}
.pw-error:not(:empty) {
  animation: pwErrorPop .3s var(--ease-out-expo);
}
@keyframes pwErrorPop {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Yanlış şifre sallama efekti */
.pw-modal.shake {
  animation: pwShake .4s var(--ease-in-out);
}
@keyframes pwShake {
  0%,100% { transform: translateX(0); }
  20%      { transform: translateX(-10px); }
  40%      { transform: translateX(10px); }
  60%      { transform: translateX(-8px); }
  80%      { transform: translateX(8px); }
}

/* Doğru şifre - başarı animasyonu */
.pw-modal.success {
  border-color: rgba(34,197,94,0.4) !important;
  box-shadow: 0 0 60px rgba(34,197,94,0.15), var(--shadow-card) !important;
  animation: pwSuccess .4s var(--ease-out-expo);
}
@keyframes pwSuccess {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@media (max-width: 480px) {
  .pw-modal { padding: 2.5rem 1.5rem; }
  .pw-input-wrap { flex-direction: column; }
  .pw-input { width: 100%; }
  .pw-submit { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════════
   WISH STAR & SHOOTING STAR INTERACTION
   (GÖKYÜZÜNE DİLEK FIRLATMA & SÜPER PARLAMA)
═══════════════════════════════════════════════════════════════ */

/* Shooting Star SVG Path */
.shooting-star-path {
  opacity: 0;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  pointer-events: none;
}

.shooting-star-path.animate-star {
  animation: shoot 1.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes shoot {
  0% {
    opacity: 0;
    stroke-dashoffset: 400;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: -400;
  }
}

/* Wish Star Interaction UI */
.sky-wish-wrap {
  margin-top: 2rem;
  text-align: left;
}

.sky-wish-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--r-full);
  cursor: pointer;
  z-index: 2;
  position: relative;
  transition: all var(--dur-med) var(--ease-out-expo);
}

.sky-wish-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4), 0 0 15px rgba(200, 169, 110, 0.2);
}

.sky-wish-btn:active {
  transform: translateY(1px);
}

.sky-wish-container {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(185, 28, 28, 0.05);
  border: 1px solid rgba(185, 28, 28, 0.15);
  border-radius: var(--r-md);
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2), var(--shadow-card);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(10px);
}

.sky-wish-container:not(.hidden) {
  opacity: 1;
  transform: translateY(0);
}

.sky-wish-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  animation: wishPulse 3s ease-in-out infinite;
}

@keyframes wishPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(185, 28, 28, 0), 0 2px 4px rgba(0, 0, 0, 0.5); }
  50% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5); color: #fff; }
}

/* Super Twinkle Animation when wish is made */
.star.super-twinkle {
  animation: superTwinkle 0.4s ease-in-out infinite !important;
}

@keyframes superTwinkle {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.7);
    filter: drop-shadow(0 0 2px rgba(255,255,255,0.4));
  }
  50% {
    opacity: 1;
    transform: scale(1.8);
    filter: drop-shadow(0 0 12px rgba(255,255,255,1)) drop-shadow(0 0 6px rgba(200, 169, 110, 0.8));
  }
}

/* ═══════════════════════════════════════════════════════════════
   PROPOSAL SECTION & OVERLAY MODAL STYLING
   (ÖZEL TEKLİF & KAÇAN BUTONLU MODAL)
═══════════════════════════════════════════════════════════════ */
.proposal-section {
  padding: var(--space-xl) var(--space-md);
  background: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.proposal-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(185, 28, 28, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.proposal-trigger-card {
  max-width: 580px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  transition: transform var(--dur-med) var(--ease-out-expo), border-color var(--dur-med);
}

.proposal-trigger-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 28, 28, 0.4);
  box-shadow: 0 12px 40px rgba(185, 28, 28, 0.15), var(--shadow-card);
}

.trigger-envelope-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: floatEnvelope 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(185, 28, 28, 0.4));
}

@keyframes floatEnvelope {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}

.trigger-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.proposal-open-btn {
  font-size: 0.95rem;
  padding: 0.8rem 2.2rem;
  border-radius: var(--r-full);
}

/* Modal Overlay backdrop */
.proposal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: rgba(8, 5, 8, 0.82);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.proposal-overlay:not(.hidden) {
  opacity: 1;
  pointer-events: all;
}

/* Tam ekran parçacık tuvali */
#proposal-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Teklif Kartı */
.proposal-modal {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 520px;
  margin: 1.5rem;
  padding: 3.5rem 2.5rem;
  text-align: center;
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: 0 20px 80px rgba(185, 28, 28, 0.25), var(--shadow-card);
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s;
}

.proposal-overlay:not(.hidden) .proposal-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.proposal-heart-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  animation: heartPulseInfinite 2s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.6));
}

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

.proposal-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.proposal-message {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
}

/* Buton grubu */
.proposal-btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  position: relative;
  min-height: 56px;
}

/* Evet Butonu */
.proposal-yes-btn {
  font-size: 1.05rem;
  padding: 0.9rem 2.8rem;
  border-radius: var(--r-full);
  z-index: 10;
  box-shadow: 0 0 20px rgba(185, 28, 28, 0.4), 0 4px 15px rgba(0, 0, 0, 0.4);
  animation: yesPulseGlow 1.8s infinite ease-in-out;
}

@keyframes yesPulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(185, 28, 28, 0.4), 0 4px 15px rgba(0, 0, 0, 0.4); }
  50% { box-shadow: 0 0 35px rgba(239, 68, 68, 0.8), 0 4px 15px rgba(0, 0, 0, 0.4); transform: scale(1.03); }
}

/* Kaçan Hayır Butonu */
.proposal-no-btn {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-faint);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-full);
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s, border-color 0.3s, color 0.3s, left 0.3s cubic-bezier(0.19, 1, 0.22, 1), top 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.proposal-no-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-text-muted);
}

/* Başarı Ekranı */
.proposal-title-success {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--clr-gold) 50%, var(--clr-red-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  animation: titleSuccessAnim 1s ease-out forwards;
}

@keyframes titleSuccessAnim {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.proposal-message-success {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--clr-text);
  margin-bottom: 2.5rem;
  animation: successFadeIn 1.2s ease-out forwards;
}

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

.proposal-close-btn {
  padding: 0.8rem 2.2rem;
  border-radius: var(--r-full);
  animation: successCloseBtnPulse 2.5s infinite;
}

@keyframes successCloseBtnPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(200, 169, 110, 0.2); }
  50% { box-shadow: 0 0 25px rgba(200, 169, 110, 0.5); }
}

/* Mobil Uyumlu */
@media (max-width: 480px) {
  .proposal-trigger-card { padding: 2.5rem 1.5rem; }
  .proposal-modal { padding: 3rem 1.5rem; }
  .proposal-btn-group { flex-direction: column; gap: 1.25rem; }
  .proposal-yes-btn { width: 100%; text-align: center; }
  .proposal-no-btn { width: 100%; text-align: center; }
}

