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

:root {
  --cream: #faf6f0;
  --blush: #e8a0a0;
  --blush-light: #f5d0d0;
  --blush-dark: #c97070;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --text: #3a2a2a;
  --text-muted: #8a7070;
  --online: #6cb87a;
  --offline: #c0b0b0;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
}

html, body {
  height: 100%;
  background: var(--cream);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior: none;
}

#app {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* ── Shared screen wrapper ── */
.screen {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 24px 20px 40px;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}

/* ── LOGIN ── */
.login-screen {
  justify-content: center;
  gap: 32px;
}

.login-header {
  text-align: center;
}

.rings-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.login-header h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.subtitle {
  color: var(--text-muted);
  margin-top: 6px;
  font-size: 15px;
}

.couples-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.couple-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 12px rgba(58, 42, 42, 0.07);
}

.couple-names {
  text-align: center;
  margin-bottom: 14px;
}

.couple-and {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
}

.couple-buttons {
  display: flex;
  gap: 12px;
}

.name-btn {
  flex: 1;
  min-height: 64px;
  border: 2px solid var(--blush-light);
  background: var(--cream);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.name-btn:active {
  transform: scale(0.96);
  background: var(--blush-light);
}

.name-btn.selected {
  border-color: var(--blush);
  background: var(--blush-light);
}

.name-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.name-initial {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.name-text {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}

/* ── Pass screen ── */
.pass-screen {
  justify-content: center;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.pass-screen h2 {
  font-size: 22px;
  font-weight: 700;
}

.pass-input-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pass-input {
  width: 100%;
  min-height: 56px;
  border: 2px solid var(--blush-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 18px;
  text-align: center;
  color: var(--text);
  outline: none;
  letter-spacing: 2px;
  transition: border-color 0.15s;
}

.pass-input:focus {
  border-color: var(--blush);
}

.pass-error {
  color: var(--blush-dark);
  font-size: 14px;
  min-height: 20px;
}

/* ── LOBBY ── */
.lobby-screen {
  gap: 24px;
}

.lobby-header {
  padding-top: 8px;
}

.players-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(58, 42, 42, 0.07);
}

.player-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 40px;
  background: var(--cream);
}

.player-initial {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.player-name {
  font-size: 15px;
  font-weight: 600;
}

.online-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.online-dot.online { background: var(--online); }
.online-dot.offline { background: var(--offline); }

.hearts-divider {
  color: var(--blush);
  font-size: 20px;
}

.waiting-text {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 10px;
}

.activities-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: center;
}

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

.activity-btn {
  position: relative;
  width: 100%;
  min-height: 70px;
  border: 2px solid var(--blush-light);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(58, 42, 42, 0.05);
}

.activity-btn:active {
  transform: scale(0.98);
}

.activity-btn.selected {
  border-color: var(--blush);
  background: var(--blush-light);
}

.activity-icon {
  font-size: 28px;
}

.activity-label {
  font-size: 16px;
  font-weight: 600;
}

.partner-bubble {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selection-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 12px;
}

/* ── RPS ── */
.rps-screen {
  padding: 0;
  gap: 0;
}

.rps-header {
  padding: 16px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.score-board {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border-radius: 40px;
  padding: 8px 20px;
  box-shadow: 0 2px 10px rgba(58, 42, 42, 0.07);
}

.score-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.score-name {
  font-size: 13px;
  color: var(--text-muted);
}

.score-num {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  min-width: 24px;
  text-align: center;
}

.score-divider {
  font-size: 20px;
  color: var(--blush);
  font-weight: 700;
}

.exit-btn {
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 4px;
}

.rps-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 28px;
}

.rps-phase-label {
  font-size: 15px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Ready */
.ready-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.ready-players {
  display: flex;
  gap: 12px;
}

.ready-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 40px;
  border: 2px solid var(--blush-light);
  background: var(--cream);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.ready-chip.ready {
  border-color: var(--online);
  background: #eaf6ec;
  color: #3a6b45;
}

.checkmark {
  color: var(--online);
}

.big-btn {
  min-width: 200px;
  min-height: 64px;
  border: none;
  border-radius: var(--radius);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
}

.ready-btn {
  background: var(--blush);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232, 160, 160, 0.4);
}

.ready-btn:active:not(:disabled) {
  transform: scale(0.96);
  box-shadow: none;
}

.ready-btn.disabled {
  background: var(--blush-light);
  color: var(--blush-dark);
  box-shadow: none;
  cursor: default;
}

/* Countdown */
.countdown-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-tick {
  font-size: 80px;
  font-weight: 900;
  color: var(--blush-dark);
  transition: none;
}

.countdown-tick.pop {
  animation: pop 0.35s ease;
}

@keyframes pop {
  0%   { transform: scale(0.5); opacity: 0.5; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

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

/* Choosing */
.choices-area {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.choice-btn {
  min-width: 90px;
  min-height: 90px;
  border: 3px solid var(--blush-light);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s ease;
  box-shadow: 0 2px 10px rgba(58, 42, 42, 0.07);
}

.choice-btn:active:not(:disabled) {
  transform: scale(0.92);
}

.choice-btn.selected {
  border-color: var(--blush);
  background: var(--blush-light);
}

.choice-icon {
  font-size: 36px;
}

.choice-name {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
}

.choice-hint {
  font-size: 14px;
  color: var(--text-muted);
  min-height: 20px;
}

/* Result */
.result-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
}

.result-choices {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}

.result-choice-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(58, 42, 42, 0.07);
}

.result-icon {
  font-size: 48px;
  margin-bottom: 8px;
}

.result-name {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.result-choice-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-top: 4px;
}

.result-vs {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
}

.result-text {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  padding: 16px 32px;
  border-radius: var(--radius);
}

.result-text.win {
  background: #eaf6ec;
  color: #3a6b45;
}

.result-text.lose {
  background: var(--blush-light);
  color: var(--blush-dark);
}

.result-text.draw {
  background: #fef9e7;
  color: #8a7030;
}

/* ── Greeting overlay ── */
.greeting-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(58, 42, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.greeting-overlay.greeting-dismiss {
  animation: greet-out 0.4s ease forwards;
}

@keyframes greet-out {
  to { opacity: 0; transform: scale(0.85); }
}

/* Envelope view */
.greeting-envelope-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  animation: env-float 2.5s ease-in-out infinite;
}

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

.greeting-envelope-view.envelope-open {
  animation: env-open 0.35s ease forwards;
}

@keyframes env-open {
  to { transform: scale(1.15) translateY(-12px); opacity: 0; }
}

.envelope-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.envelope-body {
  width: 160px;
  height: 110px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(58, 42, 42, 0.25);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.envelope-flap {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  border-left: 81px solid transparent;
  border-right: 81px solid transparent;
  border-top: 54px solid var(--blush-light);
  filter: drop-shadow(0 2px 4px rgba(58,42,42,0.08));
}

.envelope-heart {
  font-size: 40px;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}

.envelope-hint {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Card view */
.greeting-card-view {
  width: 100%;
  max-width: 380px;
}

.greeting-card-view.hidden {
  display: none;
}

.greeting-card-view.card-enter {
  animation: card-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(40px) scale(0.92); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.greeting-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 28px 28px;
  box-shadow: 0 16px 48px rgba(58, 42, 42, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.greeting-deco {
  font-size: 24px;
  letter-spacing: 4px;
}

.greeting-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.greeting-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

.greeting-toast {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 4px;
}

.greeting-from {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  border-top: 1px solid var(--blush-light);
  padding-top: 16px;
  width: 100%;
}

/* Corner icon */
.greeting-corner-icon {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 200;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blush-light);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(58,42,42,0.15);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.greeting-corner-icon:active {
  transform: scale(0.9);
}

/* ── Prediction lobby button ── */
.prediction-section {
  margin-top: auto;
  padding-top: 16px;
}

.prediction-lobby-btn {
  width: 100%;
  min-height: 64px;
  border: 2px solid var(--blush-light);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(58,42,42,0.05);
  transition: all 0.15s ease;
}

.prediction-lobby-btn:active { transform: scale(0.98); }

.prediction-lobby-icon { font-size: 26px; }

.prediction-lobby-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.prediction-lobby-arrow {
  margin-left: auto;
  font-size: 22px;
  color: var(--text-muted);
}

/* ── Prediction screen ── */
.pred-screen {
  gap: 0;
  padding: 0;
}

.pred-top-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px 0;
}

.pred-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.pred-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 40px;
  gap: 28px;
}

.pred-sub {
  font-size: 15px;
  color: var(--text-muted);
}

/* Deck */
.pred-deck {
  position: relative;
  width: 160px;
  height: 220px;
  cursor: pointer;
}

.pred-card-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c97070 0%, #8a3a5a 100%);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(58,42,42,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.pred-card-back::after {
  content: '♥';
  font-size: 64px;
  color: rgba(255,255,255,0.25);
}

/* Fan offsets */
.pred-card-back:nth-child(1) { transform: rotate(-12deg) translate(-22px, 10px); z-index: 1; }
.pred-card-back:nth-child(2) { transform: rotate(-6deg)  translate(-11px, 5px);  z-index: 2; }
.pred-card-back:nth-child(3) { transform: rotate(0deg);                           z-index: 3; }
.pred-card-back:nth-child(4) { transform: rotate(6deg)   translate(11px, 5px);   z-index: 2; }
.pred-card-back:nth-child(5) { transform: rotate(12deg)  translate(22px, 10px);  z-index: 1; }

/* Scatter animation */
.pred-deck.scattered .pred-card-back:nth-child(1) { transform: rotate(-50deg) translate(-100px, -80px); opacity: 0; }
.pred-deck.scattered .pred-card-back:nth-child(2) { transform: rotate(-25deg) translate(-60px, -110px); opacity: 0; }
.pred-deck.scattered .pred-card-back:nth-child(3) { transform: rotate(0deg)   translateY(-130px);       opacity: 0; }
.pred-deck.scattered .pred-card-back:nth-child(4) { transform: rotate(25deg)  translate(60px, -110px);  opacity: 0; }
.pred-deck.scattered .pred-card-back:nth-child(5) { transform: rotate(50deg)  translate(100px, -80px);  opacity: 0; }

.pred-hint {
  font-size: 14px;
  color: var(--text-muted);
}

/* Quote card */
.pred-quote-card {
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(58,42,42,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--blush-light);
}

.pred-quote-card.card-enter {
  animation: card-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pred-card-suit {
  font-size: 28px;
  color: #c97070;
  line-height: 1;
}

.pred-quote-text {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
  font-style: italic;
}

.pred-day-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Runner game ── */
.runner-ready-screen {
  justify-content: center;
  align-items: center;
}

.runner-ready-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.runner-ready-emoji {
  font-size: 52px;
  margin-bottom: 4px;
}

/* Split screen layout */
.runner-split {
  height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--cream);
  touch-action: none;
  overscroll-behavior: none;
}

.runner-half {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}

.runner-bar {
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--white);
  border-bottom: 1px solid var(--blush-light);
}

.runner-bar-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.runner-bar-score {
  font-size: 13px;
  color: var(--text-muted);
  margin-left: auto;
}

.runner-canvas {
  flex: 1;
  min-height: 0;
  width: 100%;
  display: block;
  touch-action: none;
}

.runner-canvas-active {
  cursor: pointer;
}

.runner-mid-bar {
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  background: var(--blush-light);
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
}

.runner-tap-hint {
  font-size: 12px;
  color: var(--blush-dark);
  margin-left: auto;
  font-weight: 600;
}

.runner-dead-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 246, 240, 0.72);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-muted);
  pointer-events: none;
}

/* Result screen */
.runner-result-screen {
  justify-content: center;
  align-items: center;
}

.runner-result-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.runner-result-flag {
  font-size: 52px;
}

.runner-result-scores {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 340px;
}

.runner-score-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(58,42,42,0.07);
  border: 2px solid transparent;
}

.runner-score-card.winner {
  border-color: var(--gold);
  background: #fefbf0;
}

.rsc-name {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 6px;
}

.rsc-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
}

.rsc-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.rsc-vs {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── NOTE OVERLAY ── */
.note-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(58,42,42,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}

.note-overlay-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  max-width: 360px;
  width: 100%;
  box-shadow: 0 8px 40px rgba(58,42,42,0.22);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.note-card-enter {
  animation: slideUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.note-overlay-from {
  font-size: 13px;
  font-weight: 700;
  color: var(--blush-dark);
  letter-spacing: 0.02em;
}

.note-overlay-text {
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  white-space: pre-wrap;
  word-break: break-word;
}

@keyframes noteOut {
  to { opacity: 0; transform: scale(0.92); }
}

.note-overlay-out {
  animation: noteOut 0.25s ease forwards;
}

/* ── NOTE WRITE SCREEN ── */
.note-write-screen {
  padding: 0;
  gap: 0;
}

.note-write-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--blush-light);
}

.note-write-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.note-write-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 36px;
}

.note-textarea {
  flex: 1;
  min-height: 180px;
  resize: none;
  border: 2px solid var(--blush-light);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  outline: none;
  line-height: 1.5;
  transition: border-color 0.15s;
}

.note-textarea:focus {
  border-color: var(--blush);
}

.note-char-count {
  text-align: right;
  font-size: 12px;
  color: var(--text-muted);
}

.note-seen-status {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

.note-hint {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
