  :root {
    --sky: #07090f;
    --deep: #0b0e1a;
    --navy: #111827;
    --star-gold: #f5e6c8;
    --star-bright: #fff8e7;
    --star-glow: rgba(245, 230, 200, 0.15);
    --ink: #c8bfaf;
    --ink-faint: rgba(200, 191, 175, 0.45);
    --rust: #c17a4a;
    --rust-glow: rgba(193, 122, 74, 0.2);
    --paper: #1a1510;
  }

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

  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  html {
    background: #07090f !important;
  }

  html, body {
    width: 100%; min-height: 100vh;
    background: #07090f !important;
    color: var(--ink);
    font-family: 'IM Fell English', serif;
    overflow-x: hidden;
    cursor: crosshair;
  }

  /* Force dark sky even inside iframes / preview containers */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: #07090f;
    z-index: -1;
  }

  /* ── STAR FIELD ── */
  #starfield {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .bg-star {
    position: absolute;
    border-radius: 50%;
    background: var(--star-gold);
    animation: twinkle var(--dur, 3s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
  }

  @keyframes twinkle {
    0%, 100% { opacity: var(--lo, 0.15); transform: scale(1); }
    50% { opacity: var(--hi, 0.9); transform: scale(1.4); }
  }

  /* ── CONSTELLATION CANVAS ── */
  #constellation-canvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  /* ── MEMORIAL STARS (clickable notes) ── */
  .memorial-star {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    transform: translate(-50%, -50%);
    animation: starBirth 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes starBirth {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  }

  .star-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--star-bright);
    box-shadow: 0 0 6px 2px var(--star-gold), 0 0 18px 4px rgba(245,230,200,0.3);
    transition: all 0.3s ease;
    position: relative;
  }

  .star-dot::before, .star-dot::after {
    content: '';
    position: absolute;
    background: var(--star-gold);
    border-radius: 2px;
    opacity: 0.7;
  }
  .star-dot::before { width: 1px; height: 16px; top: -4px; left: 3.5px; }
  .star-dot::after  { width: 16px; height: 1px; top: 3.5px; left: -4px; }

  .memorial-star:hover .star-dot {
    box-shadow: 0 0 12px 4px var(--star-gold), 0 0 32px 8px rgba(245,230,200,0.5);
    transform: scale(1.6);
  }

  .star-label {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Caveat', cursive;
    font-size: 11px;
    color: var(--ink-faint);
    white-space: nowrap;
    pointer-events: none;
    transition: color 0.3s;
  }

  .memorial-star:hover .star-label {
    color: var(--star-gold);
  }

  /* ── HEADER ── */
  #header {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 60px 20px 20px;
    pointer-events: none;
  }
  
  #admin-trigger {
    pointer-events: auto;
    cursor: default;
  }

  #header h1 {
    font-family: 'IM Fell English SC', serif;
    font-size: clamp(2rem, 6vw, 4.5rem);
    color: var(--star-gold);
    letter-spacing: 0.12em;
    text-shadow: 0 0 40px rgba(245,230,200,0.3);
    margin-bottom: 8px;
  }

  #header .subtitle {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    color: var(--ink-faint);
    letter-spacing: 0.06em;
  }

  #header .dates {
    margin-top: 10px;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--rust);
    letter-spacing: 0.1em;
    opacity: 0.8;
  }

  /* ── INSTRUCTION ── */
  #instruction {
    position: fixed;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    color: var(--ink-faint);
    text-align: center;
    pointer-events: none;
    animation: breathe 4s ease-in-out infinite;
    white-space: nowrap;
  }

  @keyframes breathe {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  /* ── LEAVE NOTE BUTTON ── */
  #leave-note-btn {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    background: transparent;
    border: 1px solid rgba(245,230,200,0.3);
    color: var(--star-gold);
    font-family: 'IM Fell English SC', serif;
    font-size: 0.95rem;
    letter-spacing: 0.15em;
    padding: 12px 36px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px var(--star-glow);
  }

  #leave-note-btn:hover {
    background: rgba(245,230,200,0.07);
    border-color: rgba(245,230,200,0.7);
    box-shadow: 0 0 30px rgba(245,230,200,0.2);
    letter-spacing: 0.2em;
  }

  /* ── MODAL ── */
  #modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7, 9, 15, 0.88);
    z-index: 100;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
  }

  #modal-overlay.open {
    display: flex;
  }

  #modal {
    background: var(--paper);
    border: 1px solid rgba(245,230,200,0.12);
    max-width: 520px;
    width: 90%;
    padding: 48px 44px;
    position: relative;
    box-shadow: 0 0 60px rgba(0,0,0,0.8), inset 0 0 40px rgba(0,0,0,0.4);
    animation: modalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  #modal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      transparent,
      transparent 27px,
      rgba(200,191,175,0.04) 27px,
      rgba(200,191,175,0.04) 28px
    );
    pointer-events: none;
  }

  #modal h2 {
    font-family: 'IM Fell English SC', serif;
    font-size: 1.4rem;
    color: var(--star-gold);
    margin-bottom: 6px;
    letter-spacing: 0.08em;
  }

  #modal .modal-sub {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.85rem;
    color: var(--ink-faint);
    margin-bottom: 32px;
  }

  .field-group {
    margin-bottom: 22px;
  }

  .field-group label {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    color: var(--rust);
    margin-bottom: 6px;
    letter-spacing: 0.05em;
  }

  .field-group input,
  .field-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(200,191,175,0.2);
    color: var(--ink);
    font-family: 'Caveat', cursive;
    font-size: 1.1rem;
    padding: 8px 2px;
    outline: none;
    resize: none;
    transition: border-color 0.3s;
    caret-color: var(--star-gold);
    cursor: text;
  }

  .field-group input:focus,
  .field-group textarea:focus {
    border-bottom-color: rgba(245,230,200,0.5);
  }

  .field-group textarea {
    min-height: 100px;
    line-height: 1.7;
  }

  .char-count {
    text-align: right;
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    color: var(--ink-faint);
    margin-top: 4px;
  }

  .modal-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
  }

  #close-modal {
    background: none;
    border: none;
    color: var(--ink-faint);
    font-family: 'Caveat', cursive;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
  }
  #close-modal:hover { color: var(--ink); }

  #submit-note {
    background: transparent;
    border: 1px solid rgba(245,230,200,0.35);
    color: var(--star-gold);
    font-family: 'IM Fell English SC', serif;
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    padding: 10px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  #submit-note:hover {
    background: rgba(245,230,200,0.07);
    border-color: rgba(245,230,200,0.6);
  }
  #submit-note:disabled {
    opacity: 0.45;
    cursor: wait;
  }

  /* ── NOTE POPUP ── */
  #note-popup {
    display: none;
    position: fixed;
    z-index: 50;
    pointer-events: none;
  }

  #note-popup.visible {
    display: block;
    pointer-events: auto;
  }

  .note-card {
    background: var(--paper);
    border: 1px solid rgba(245,230,200,0.1);
    padding: 24px 28px;
    max-width: 280px;
    min-width: 200px;
    box-shadow: 0 4px 40px rgba(0,0,0,0.7);
    position: relative;
    animation: noteIn 0.3s ease forwards;
  }

  @keyframes noteIn {
    from { opacity: 0; transform: scale(0.92) translateY(-8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
  }

  .note-card::before {
    content: '✦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--star-gold);
    font-size: 14px;
    background: var(--paper);
    padding: 0 6px;
  }

  .note-name {
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    color: var(--rust);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }

  .note-message {
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.65;
  }

  .note-date {
    margin-top: 12px;
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--ink-faint);
  }

  .note-close {
    position: absolute;
    top: 8px; right: 10px;
    background: none; border: none;
    color: var(--ink-faint);
    font-size: 14px;
    cursor: pointer;
    line-height: 1;
    pointer-events: auto;
  }

  /* ── CANDLE COUNTER ── */
  #candle-counter {
    margin-top: 14px;
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--rust);
    letter-spacing: 0.06em;
    opacity: 0;
    transition: opacity 2.5s ease;
    pointer-events: none;
  }
  #candle-counter.visible {
    opacity: 0.85;
  }

  footer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    pointer-events: auto;
  }

  #footer-link {
    font-family: 'Caveat', cursive;
    font-size: 0.8rem;
    color: rgba(200, 191, 175, 0.45);
    text-decoration: none;
    letter-spacing: 0.08em;
    transition: color 0.4s ease;
  }

  #footer-link:hover {
    color: rgba(193,122,74,0.85);
  }

  /* ── SUCCESS ── */
  #success-msg {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    text-align: center;
    animation: fadeInOut 3s ease forwards;
  }

  @keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    20%, 70% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.05); }
  }

  #success-msg .big-star { font-size: 3rem; }
  #success-msg p {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--star-gold);
    font-size: 1.1rem;
    margin-top: 10px;
  }

  /* constellation line */
  .const-line {
    stroke: rgba(245,230,200,0.06);
    stroke-width: 0.5;
    stroke-dasharray: 4 6;
  }

  /* ── PENDING STAR (awaiting approval) ── */
  .memorial-star.pending .star-dot {
    background: rgba(193, 122, 74, 0.5);
    box-shadow: 0 0 6px 2px rgba(193,122,74,0.4), 0 0 18px 4px rgba(193,122,74,0.15);
    animation: pendingPulse 2s ease-in-out infinite;
  }
  @keyframes pendingPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
  }
  .memorial-star.pending .star-dot::before,
  .memorial-star.pending .star-dot::after {
    background: rgba(193,122,74,0.6);
  }

  /* ── PASSWORD OVERLAY ── */
  #password-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,9,15,0.95);
    z-index: 200;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
  }
  #password-overlay.open { display: flex; }

  #password-box {
    text-align: center;
    animation: modalIn 0.4s ease forwards;
  }
  #password-box h3 {
    font-family: 'IM Fell English SC', serif;
    font-size: 1.1rem;
    color: var(--star-gold);
    letter-spacing: 0.15em;
    margin-bottom: 6px;
  }
  #password-box p {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--ink-faint);
    margin-bottom: 28px;
  }
  #password-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(245,230,200,0.25);
    color: var(--star-gold);
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    text-align: center;
    letter-spacing: 0.3em;
    width: 200px;
    outline: none;
    padding: 8px 4px;
    caret-color: var(--rust);
  }
  #password-error {
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    color: var(--rust);
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  #password-error.show { opacity: 1; }
  #password-cancel {
    display: block;
    margin-top: 20px;
    background: none;
    border: none;
    color: var(--ink-faint);
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
  }
  #password-cancel:hover { color: var(--ink); }

  /* ── ADMIN PANEL ── */
  #admin-panel {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,9,15,0.97);
    z-index: 190;
    overflow-y: auto;
    backdrop-filter: blur(6px);
  }
  #admin-panel.open { display: block; }

  #admin-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 48px 24px 80px;
  }

  #admin-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 36px;
    border-bottom: 1px solid rgba(245,230,200,0.08);
    padding-bottom: 20px;
  }
  #admin-header h2 {
    font-family: 'IM Fell English SC', serif;
    font-size: 1.3rem;
    color: var(--star-gold);
    letter-spacing: 0.1em;
  }
  #admin-header span {
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    color: var(--ink-faint);
  }
  #admin-close {
    background: none;
    border: none;
    color: var(--ink-faint);
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s;
  }
  #admin-close:hover { color: var(--rust); }

  .admin-empty {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--ink-faint);
    text-align: center;
    padding: 60px 0;
    font-size: 1rem;
  }

  .pending-card {
    background: rgba(26,21,16,0.8);
    border: 1px solid rgba(245,230,200,0.08);
    padding: 24px 28px;
    margin-bottom: 16px;
    position: relative;
    transition: border-color 0.3s;
  }
  .pending-card:hover { border-color: rgba(245,230,200,0.15); }

  .pending-card .pc-name {
    font-family: 'Caveat', cursive;
    font-size: 0.85rem;
    color: var(--rust);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }
  .pending-card .pc-message {
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .pending-card .pc-date {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    font-size: 0.72rem;
    color: var(--ink-faint);
    margin-bottom: 20px;
  }
  .pc-actions {
    display: flex;
    gap: 12px;
  }
  .btn-approve {
    background: transparent;
    border: 1px solid rgba(245,230,200,0.3);
    color: var(--star-gold);
    font-family: 'IM Fell English SC', serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 8px 22px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-approve:hover {
    background: rgba(245,230,200,0.08);
    border-color: var(--star-gold);
  }
  .btn-reject {
    background: transparent;
    border: 1px solid rgba(193,122,74,0.2);
    color: rgba(193,122,74,0.6);
    font-family: 'Caveat', cursive;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .btn-reject:hover {
    border-color: rgba(193,122,74,0.6);
    color: var(--rust);
  }

  /* ── APPROVAL FLASH ── */
  #approval-flash {
    display: none;
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 300;
    justify-content: center;
    align-items: center;
  }
  #approval-flash.show {
    display: flex;
    animation: flashOut 1.6s ease forwards;
  }
  @keyframes flashOut {
    0% { opacity: 0; }
    15% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; }
  }
  #approval-flash-inner {
    text-align: center;
  }
  #approval-flash-inner .flash-star {
    font-size: 2.5rem;
    color: var(--star-gold);
    display: block;
    animation: starPop 1.6s ease forwards;
  }
  @keyframes starPop {
    0% { transform: scale(0); opacity: 0; }
    30% { transform: scale(1.4); opacity: 1; }
    60% { transform: scale(1); }
    100% { transform: scale(1.1); opacity: 0; }
  }
  #approval-flash-inner p {
    font-family: 'IM Fell English', serif;
    font-style: italic;
    color: var(--star-gold);
    font-size: 0.9rem;
    margin-top: 10px;
    opacity: 0.8;
  }

  /* ── ERA NAVIGATOR ── */
  #era-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    align-items: center;
    gap: 18px;
    pointer-events: auto;
  }

  .era-arrow {
    background: none;
    border: none;
    color: rgba(245,230,200,0.3);
    font-size: 1.1rem;
    cursor: pointer;
    font-family: 'IM Fell English SC', serif;
    padding: 4px 8px;
    transition: color 0.3s ease;
    line-height: 1;
  }
  .era-arrow:hover { color: rgba(245,230,200,0.9); }
  .era-arrow:disabled { color: rgba(245,230,200,0.08); cursor: default; }

  #era-label {
    font-family: 'IM Fell English SC', serif;
    font-size: 1rem;
    color: rgba(245,230,200,0.45);
    letter-spacing: 0.18em;
    min-width: 48px;
    text-align: center;
    transition: opacity 0.4s ease;
  }

  /* Sky blackout overlay for era transition */
  #era-blackout {
    position: fixed;
    inset: 0;
    background: #07090f;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }
  #era-blackout.dark { opacity: 1; }

  /* Era note count whisper */
  #era-count {
    position: fixed;
    top: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    font-family: 'Caveat', cursive;
    font-size: 0.78rem;
    color: rgba(200,191,175,0.25);
    letter-spacing: 0.06em;
    pointer-events: none;
    text-align: center;
    transition: opacity 0.5s ease;
    white-space: nowrap;
  }

  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible,
  .memorial-star:focus-visible {
    outline: 1px solid var(--star-gold);
    outline-offset: 5px;
  }

  @media (max-width: 600px), (max-height: 680px) {
    html, body { min-height: 100dvh; }

    #header { padding: 68px 18px 12px; }
    #header h1 { font-size: clamp(2rem, 13vw, 3rem); line-height: 1; }
    #header .subtitle { max-width: 280px; margin-inline: auto; line-height: 1.35; }
    #header .dates { margin-top: 7px; }

    #era-nav {
      top: max(14px, env(safe-area-inset-top));
      gap: 10px;
    }
    .era-arrow {
      min-width: 44px;
      min-height: 44px;
      padding: 10px;
    }
    #era-count { top: calc(max(14px, env(safe-area-inset-top)) + 38px); }

    #modal-overlay,
    #password-overlay {
      padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
      align-items: flex-end;
    }
    #modal {
      width: 100%;
      max-height: calc(100dvh - 32px);
      overflow-y: auto;
      padding: 28px 22px calc(24px + env(safe-area-inset-bottom));
    }
    #modal .modal-sub { margin-bottom: 22px; }
    .field-group { margin-bottom: 18px; }
    .field-group input,
    .field-group textarea { font-size: 16px; }
    .field-group textarea { min-height: 88px; }
    .modal-actions { gap: 16px; margin-top: 24px; }
    #close-modal,
    #submit-note { min-height: 44px; }
    #submit-note { padding-inline: 16px; }

    .memorial-star {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
    }
    .star-label { top: 32px; }

    #note-popup.visible {
      left: 0 !important;
      right: 0;
      top: auto !important;
      bottom: 0;
      width: 100%;
    }
    .note-card {
      width: 100%;
      max-width: none;
      min-width: 0;
      padding: 26px 24px calc(24px + env(safe-area-inset-bottom));
    }
    .note-close {
      min-width: 44px;
      min-height: 44px;
      top: 4px;
      right: 4px;
    }

    #admin-inner {
      padding: max(28px, env(safe-area-inset-top)) 16px calc(60px + env(safe-area-inset-bottom));
    }
    #admin-header {
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 24px;
    }
    #admin-close,
    .btn-approve,
    .btn-reject { min-height: 44px; }
    .pending-card { padding: 20px; }
    .pc-actions { flex-wrap: wrap; }

    #instruction {
      bottom: calc(105px + env(safe-area-inset-bottom));
      width: calc(100% - 32px);
      white-space: normal;
      font-size: 1rem;
      line-height: 1.25;
    }
    #leave-note-btn {
      bottom: calc(38px + env(safe-area-inset-bottom));
      width: calc(100% - 48px);
      max-width: 360px;
      min-height: 48px;
      padding-inline: 16px;
    }
    footer {
      bottom: calc(8px + env(safe-area-inset-bottom)) !important;
      width: 100%;
    }
  }

  @media (hover: none), (pointer: coarse) {
    .memorial-star:hover .star-dot { transform: none; }
    .star-label { color: rgba(200, 191, 175, 0.62); }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      scroll-behavior: auto !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
