/* ═══════════════════════════════════════════════
   CLOVER OOC — HAIR STYLES
   Image + 'hairstyle:' card library, accordion sections.
   Adapts patterns from catalogue.css + scenes.css.
   aceenvw
   ═══════════════════════════════════════════════ */

/* ═══ PAGE HEADER ═══ */
.hair-header {
  padding: 120px 0 24px;
  text-align: center;
}

.hair-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.hair-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  line-height: 1.55;
}

.hair-subtitle code,
.hair-hint-text code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--code-bg);
  padding: 0.08em 0.4em;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ═══ HOW-TO HINT ═══ */
.hair-hint {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.95rem 1.1rem;
  margin: 0 auto 1.25rem;
  max-width: 720px;
  text-align: left;
}

.hair-hint-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.hair-hint-text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ═══ WARDROBE CROSS-LINK STRIP ═══ */
.hair-promo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 720px;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: border-color 0.18s, background-color 0.18s, transform 0.18s;
}

.hair-promo:hover {
  border-color: var(--accent);
  background: var(--accent-faint);
  transform: translateY(-1px);
}

.hair-promo-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-faint);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hair-promo-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hair-promo-text strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.hair-promo-sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.hair-promo-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hair-promo { flex-wrap: wrap; }
  .hair-promo-cta { width: 100%; text-align: right; }
}

/* ═══ SEARCH BAR (sticky) ═══ */
.hair-search-wrap {
  position: sticky;
  top: var(--nav-height);
  z-index: 50;
  padding: 0.75rem 0;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  margin: 0 auto;
  max-width: 720px;
  transition: border-color 0.2s;
}

.hair-search-wrap.is-stuck {
  border-bottom-color: var(--border);
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.search-box:focus-within {
  border-color: var(--accent);
}

.search-box svg {
  color: var(--text-dim);
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.search-box input::placeholder {
  color: var(--text-dim);
}

.hair-meta {
  display: flex;
  justify-content: flex-end;
  padding: 0.4rem 0.25rem 0;
  min-height: 1.2rem;
}

.hair-result-count {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ═══ LOADING / ERROR ═══ */
.hair-loading,
.hair-loading-error {
  padding: 2rem 1rem;
  text-align: center;
  color: var(--text-dim);
}
.hair-loading-error {
  color: var(--accent);
}

/* ═══ SECTIONS (accordion) ═══ */
.hair-section-wrap {
  margin-top: 1.5rem;
}

.hair-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hair-section {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.hair-section-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  padding: 1rem 1.1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  transition: background-color 0.15s;
}

.hair-section-header:hover {
  background: var(--accent-faint);
}

.hair-section-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.hair-section.is-open .hair-section-chevron {
  transform: rotate(90deg);
  color: var(--accent);
}

.hair-section-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hair-section-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
}

.hair-section-desc {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0.15rem;
  line-height: 1.35;
}

.hair-section-count {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  padding: 0.18rem 0.55rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 999px;
  flex-shrink: 0;
}

.hair-section-count.has-matches {
  color: var(--accent);
  border-color: var(--accent);
}

.hair-section-body {
  display: none;
  padding: 0 1rem 1.1rem;
  border-top: 1px dashed var(--border);
}

.hair-section.is-open .hair-section-body {
  display: block;
}

.hair-section-body.is-empty {
  padding: 1rem;
  text-align: center;
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* ═══ CARDS GRID ═══ */
.hair-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-top: 0.95rem;
}

.hair-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hair-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.hair-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ─ Image area ─ */
.hair-card-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--accent-faint), var(--bg-surface));
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.hair-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hair-card:hover .hair-card-image img {
  transform: scale(1.02);
}

/* ─ Placeholder (clover SVG) ─ */
.hair-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hair-placeholder svg {
  width: 38%;
  max-width: 90px;
  opacity: 0.25;
  color: var(--accent);
}

/* ─ Content ─ */
.hair-card-content {
  padding: 0.95rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.hair-card-head {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.hair-card-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  padding: 0.1rem 0.45rem;
  background: var(--bg-surface);
  border-radius: 4px;
  flex-shrink: 0;
}

.hair-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  word-break: break-word;
}

.hair-card-body {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--code-bg);
  border: 1px solid var(--accent);
  border-radius: 6px;
  padding: 0.65rem 0.8rem;
  white-space: pre-wrap;
  word-break: break-word;
  cursor: copy;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.hair-card-body:hover {
  border-color: var(--accent);
}

.hair-card-body.is-copied {
  background: var(--accent-faint);
  border-color: var(--accent);
}

.hair-card-hint {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* ═══ MODAL (lifted from catalogue.css) ═══ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
  animation: modalFadeIn 0.25s ease;
}

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

.modal.active .modal-content {
  animation: modalSlideUp 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow-y: auto;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
  z-index: 2;
}

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

.modal-header {
  padding: 1.75rem 1.75rem 1.25rem;
}

.modal-title-row {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.modal-number {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-dim);
}

.modal-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: var(--text);
  margin: 0;
}

.modal-image-container {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 70vh;
  background: linear-gradient(135deg, var(--accent-faint), var(--bg-surface));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg);
}

.modal-body {
  padding: 1.75rem;
}

.modal-prompt-text {
  padding: 1.25rem;
  background: var(--code-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--code-text);
  white-space: pre-wrap;
  margin: 0 0 1.25rem;
  word-break: break-word;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

.modal-copy-btn {
  flex: 1;
  padding: 0.85rem 1.4rem;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.modal-copy-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ═══ SCROLL TO TOP ═══ */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--bg-surface);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ═══ TOAST ═══ */
.clover-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  padding: 0.7rem 1.2rem;
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--accent);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 9999;
  max-width: calc(100% - 2rem);
  text-align: center;
}

.clover-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (min-width: 640px) {
  .hair-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .hair-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1280px) {
  .hair-cards { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
  .hair-header { padding: 100px 0 20px; }
  .hair-section-header { padding: 0.85rem 0.9rem; }
  .hair-section-body { padding: 0 0.7rem 0.9rem; }
  .hair-card-content { padding: 0.85rem 0.9rem 0.95rem; }
  .modal { padding: 0.75rem; }
  .modal-header { padding: 1.25rem 1.25rem 0.95rem; }
  .modal-body { padding: 1.25rem; }
}

/* ═══════════════════════════════════════════════
   HAIR-ONLY ADDITIONS — tag chips + filter panel
   ═══════════════════════════════════════════════ */

/* ─ Card tag chips (vibe + texture as separate facets) ─ */
.hair-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.hair-tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg-surface);
  white-space: nowrap;
}

/* Texture chip — distinct accent so the single texture reads apart from vibes. */
.hair-tag--texture {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-faint);
  text-transform: capitalize;
}

.hair-tag--vibe { text-transform: capitalize; }

/* ─ Filter panel (collapsible) ─ */
.hair-filter {
  max-width: 720px;
  margin: 0.5rem auto 0;
}

.hair-filter-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hair-filter-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.18s, background-color 0.18s;
}

.hair-filter-toggle:hover { border-color: var(--accent); }
.hair-filter-toggle svg { width: 15px; height: 15px; flex-shrink: 0; transition: transform 0.2s; }
.hair-filter.is-open .hair-filter-toggle svg { transform: rotate(180deg); }

/* ─ Random button (mirrors the filter toggle) ─ */
.hair-random-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.18s, background-color 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.hair-random-btn:hover { border-color: var(--accent); }
.hair-random-btn:active { background: var(--accent-faint); }
.hair-random-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.hair-random-btn.is-spun svg { animation: hairDiceSpin 0.4s ease; }

@keyframes hairDiceSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(180deg); }
}

.hair-filter-toggle-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  background: var(--accent-faint);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 0.05rem 0.4rem;
}
.hair-filter-toggle-count:empty { display: none; }

.hair-filter-panel {
  display: none;
  margin-top: 0.75rem;
  padding: 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.hair-filter.is-open .hair-filter-panel { display: block; }

.hair-filter-group + .hair-filter-group { margin-top: 0.9rem; }

.hair-filter-group-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.hair-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.hair-filter-chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  cursor: pointer;
  text-transform: capitalize;
  transition: border-color 0.15s, background-color 0.15s, color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.hair-filter-chip:hover { border-color: var(--accent); }

.hair-filter-chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hair-filter-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.9rem;
}

.hair-filter-clear {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-dim);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.2rem 0.3rem;
}
.hair-filter-clear:hover { color: var(--accent); }
.hair-filter-clear[disabled] { opacity: 0.4; cursor: default; text-decoration: none; }

/* ─ Mobile tuning: bigger tap targets, tighter spacing ─ */
@media (max-width: 480px) {
  .hair-filter-chip { padding: 0.5rem 0.7rem; font-size: 0.75rem; }
  .hair-filter-actions { flex-wrap: nowrap; }
  .hair-filter-toggle,
  .hair-random-btn { flex: 1; justify-content: center; padding: 0.6rem 0.5rem; }
  .hair-filter-panel { padding: 0.85rem; }
}

/* ═══════════════════════════════════════════════
   CREDITS & THANKS (collapsible) + green sticky note
   ═══════════════════════════════════════════════ */
.credits-notice {
  margin: 1.25rem auto 0;
  max-width: 720px;
  text-align: left;
}

.credits-notice summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
  user-select: none;
  list-style: none;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.credits-notice summary::-webkit-details-marker { display: none; }
.credits-notice summary::marker { content: ''; }

.credits-notice summary:hover {
  border-color: var(--accent);
  color: var(--text);
}

.credits-notice summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.credits-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.credits-label { flex: 1; }

.credits-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.2s ease;
}

.credits-notice[open] summary {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: transparent;
  color: var(--text);
}

.credits-notice[open] .credits-chevron { transform: rotate(180deg); }

.credits-body {
  padding: 1rem 1rem 1.25rem;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 10px 10px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.credits-body p { margin: 0; }

.credits-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding: 2px 0;
  transition: border-color 0.15s, color 0.15s;
}

.credits-body a:hover,
.credits-body a:focus-visible {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.credits-body a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ─── green sticky note ─── */
.credits-stickynote {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.625rem 1rem 0.75rem;
  background: #d7f0cf;
  color: #1f3a1a;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 2px;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.04),
    0 6px 14px rgba(40, 100, 40, 0.18),
    0 12px 24px rgba(40, 100, 40, 0.06);
  transform: rotate(-2.5deg);
  transform-origin: top left;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.credits-stickynote::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 38px;
  height: 12px;
  background: rgba(150, 210, 130, 0.6);
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.credits-stickynote:hover {
  transform: rotate(-1deg) scale(1.02);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05),
    0 10px 20px rgba(40, 100, 40, 0.22),
    0 18px 36px rgba(40, 100, 40, 0.1);
}

[data-theme="dark"] .credits-stickynote {
  background: #1f3318;
  color: #cdeec0;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 6px 14px rgba(0, 0, 0, 0.5),
    0 12px 24px rgba(0, 0, 0, 0.25);
}
