  :root{
    --ink:#2B2118;
    --ink-2:#3A2C21;
    --paper:#14100F;
    --paper-2:#1C1614;
    --maroon:#7A1220;
    --marquee-red:#B0223B;
    --marquee-red-bright:#D42C49;
    --gold:#C79A3D;
    --gold-bright:#F0C468;
    --silver:#9C9184;
    --cream:#F2E8D5;
    --cream-dim:#E4D6B8;
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Work Sans', sans-serif;
    --font-mono: 'Space Mono', monospace;
  }

  *{box-sizing:border-box;}
  html,body{margin:0;padding:0;}
  body{
    background: radial-gradient(ellipse at top, var(--paper-2) 0%, var(--paper) 60%, #0A0807 100%);
    color: var(--cream);
    font-family: var(--font-body);
    min-height:100vh;
    overflow-x:hidden;
  }

  /* film grain / vignette */
  body::before{
    content:"";
    position:fixed; inset:0;
    background-image:
      radial-gradient(circle at 20% 30%, rgba(255,255,255,0.02) 0, transparent 40%),
      radial-gradient(circle at 80% 70%, rgba(255,255,255,0.02) 0, transparent 40%);
    pointer-events:none;
    z-index:0;
  }

  .filmstrip-border{
    position:relative;
    max-width:900px;
    margin:0 auto;
    padding: 0 44px;
  }
  .sprockets{
    position:absolute; top:0; bottom:0; width:44px;
    display:flex; flex-direction:column; justify-content:space-evenly;
    align-items:center;
    z-index:1;
  }
  .sprockets.left{left:0;}
  .sprockets.right{right:0;}
  .sprocket-hole{
    width:14px; height:20px;
    background: var(--ink);
    border-radius:4px;
    box-shadow: inset 0 0 0 2px rgba(199,154,61,0.3);
    opacity: 0.28;
  }

  header.marquee{
    text-align:center;
    padding: 56px 20px 34px;
    position:relative; z-index:1;
    background: linear-gradient(180deg, var(--maroon) 0%, var(--marquee-red) 100%);
    border-radius: 0 0 34px 34px;
    box-shadow: 0 12px 30px rgba(43,33,24,0.18);
    margin: 0 -44px 26px;
  }
  .bulbs{
    display:flex; justify-content:center; gap:8px; margin-bottom:18px;
    flex-wrap:wrap;
  }
  .bulb{
    width:8px; height:8px; border-radius:50%;
    background: var(--gold-bright);
    box-shadow: 0 0 8px 2px rgba(240,196,104,0.6);
    animation: flicker 2.6s infinite ease-in-out;
  }
  .bulb:nth-child(odd){ animation-delay: 0.4s; }
  .bulb:nth-child(3n){ animation-delay: 0.9s; background:var(--cream); box-shadow:0 0 8px 2px rgba(242,232,213,0.6);}
  @keyframes flicker{
    0%,100%{opacity:1;}
    50%{opacity:0.35;}
  }

  h1{
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 8vw, 4.6rem);
    letter-spacing: 0.04em;
    margin:0;
    color: var(--cream);
    text-shadow: 0 2px 14px rgba(0,0,0,0.25);
    line-height:1;
  }
  h1 span{ color: var(--gold-bright); }
  .tagline{
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform:uppercase;
    color: rgba(242,232,213,0.78);
    margin-top: 10px;
  }

  main{
    position:relative; z-index:1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 24px 80px;
  }

  .mode-toggle{
    display:flex;
    justify-content:center;
    gap:0;
    margin: 32px 0 36px;
    border: 2px solid var(--gold);
    border-radius: 999px;
    overflow:hidden;
    width: fit-content;
    margin-left:auto; margin-right:auto;
    background: var(--paper-2);
  }
  .mode-btn{
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    background: transparent;
    color: var(--marquee-red);
    border:none;
    padding: 12px 26px;
    cursor:pointer;
    transition: background 0.25s, color 0.25s;
  }
  .mode-btn.active{
    background: var(--gold);
    color: var(--ink);
  }
  .mode-btn:not(.active):hover{
    background: rgba(199,154,61,0.14);
  }

  section.panel{
    display:none;
    animation: fadeIn 0.35s ease;
  }
  section.panel.active{ display:block; }
  @keyframes fadeIn{ from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:translateY(0);} }

  .card{
    background: var(--paper-2);
    border: 1px solid rgba(199,154,61,0.35);
    border-radius: 18px;
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 6px 20px rgba(43,33,24,0.06);
  }

  .section-title{
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    color: var(--marquee-red);
    margin: 0 0 14px;
  }

  button{
    font-family: var(--font-body);
    cursor:pointer;
  }

  /* --- Surprise Me --- */
  .genre-chips{
    display:flex; flex-wrap:wrap; gap:8px; margin-bottom: 20px;
  }
  .chip{
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    background: transparent;
    border: 1px solid rgba(139,127,110,0.4);
    color: var(--marquee-red);
    border-radius: 999px;
    padding: 7px 16px;
  }
  .chip.active{
    background: var(--marquee-red-bright);
    border-color: var(--marquee-red-bright);
    color: var(--cream);
  }
  .chip:hover:not(.active){ border-color: var(--gold); color: var(--marquee-red-bright); }

  .genre-select{
    width:100%;
    font-family: inherit;
    font-size: 1rem;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 2px solid var(--gold);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%232B2118'%3E%3Cpath d='M5 7l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
  }
  .genre-select:focus{ outline: 2px solid var(--gold-bright); outline-offset: 1px; }

  .filter-row{
    display:flex;
    gap:10px;
    margin-bottom: 4px;
  }
  .filter-row .genre-select{ margin-bottom: 0; flex: 1 1 0; min-width: 0; }
  .filter-note{
    font-size: 0.72rem;
    color: #8a8175;
    margin: 0 0 16px;
  }
  .no-match-msg{
    display:none;
    background: rgba(217,164,65,0.12);
    border: 1px dashed var(--gold);
    border-radius: 8px;
    padding: 14px;
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 14px;
  }
  .no-match-msg.show{ display:block; }

  .picks-updated{
    text-align:center;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 18px;
  }
  .picks-intro{
    max-width: 520px;
    margin: 0 auto 20px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--cream-dim);
    text-align: center;
  }
  .picks-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .pick-card{
    background: rgba(0,0,0,0.15);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 16px 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .pick-number{
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--gold-bright);
  }
  .pick-title{
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.25;
  }
  .pick-badge{
    display:inline-block;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--silver);
    letter-spacing: 0.05em;
  }
  .pick-blurb{
    font-size: 0.85rem;
    color: var(--cream-dim);
    line-height: 1.45;
    flex-grow: 1;
  }
  .pick-watch{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 0.82rem;
    color: var(--ink);
    background: var(--gold-bright);
    border: 2px solid var(--cream);
    border-radius: 999px;
    padding: 8px 18px;
    text-decoration: none;
    align-self: flex-start;
    margin-top: 4px;
    transition: transform 0.15s ease, background 0.15s ease;
  }
  .pick-watch:hover{ background: var(--cream); transform: translateY(-1px); }

  .pick-votes{
    display: flex;
    gap: 8px;
    margin-top: 2px;
  }
  .vote-btn{
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(199,154,61,0.4);
    border-radius: 999px;
    padding: 6px 12px;
    color: var(--silver);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  }
  .vote-btn svg{ width: 15px; height: 15px; flex-shrink: 0; }
  .vote-btn .vote-count{
    font-weight: 700;
    min-width: 1.2em;
    text-align: left;
  }
  .vote-btn:hover{ border-color: var(--gold); color: var(--cream); }
  .vote-btn:active{ transform: scale(0.95); }
  .vote-btn:focus-visible{ outline: 2px solid var(--gold-bright); outline-offset: 2px; }
  .vote-btn.up.active{
    border-color: #5c8a5c;
    color: #8fc98f;
    background: rgba(92,138,92,0.12);
  }
  .vote-btn.down.active{
    border-color: var(--marquee-red-bright);
    color: var(--marquee-red-bright);
    background: rgba(212,44,73,0.12);
  }
  @media (prefers-reduced-motion: reduce){
    .vote-btn{ transition: none; }
  }

  /* ---------- Watchlist + share action buttons ---------- */
  .action-row{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }
  .action-btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid rgba(199,154,61,0.4);
    border-radius: 999px;
    padding: 7px 14px;
    color: var(--silver);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  }
  .action-btn svg{ width: 15px; height: 15px; flex-shrink: 0; }
  .action-btn:hover{ border-color: var(--gold); color: var(--cream); }
  .action-btn:active{ transform: scale(0.96); }
  .action-btn:focus-visible{ outline: 2px solid var(--gold-bright); outline-offset: 2px; }
  .action-btn.watchlist-btn.saved{
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(240,196,104,0.12);
  }
  .action-btn.share-btn{
    border-color: rgba(92,168,105,0.4);
  }
  .action-btn.share-btn:hover{
    border-color: #5ca869;
    color: #8fd89b;
  }
  .action-btn.remove-btn{
    border-color: rgba(212,44,73,0.4);
    color: rgba(212,44,73,0.85);
  }
  .action-btn.remove-btn:hover{
    border-color: var(--marquee-red-bright);
    color: var(--marquee-red-bright);
  }
  @media (prefers-reduced-motion: reduce){
    .action-btn{ transition: none; }
  }

  /* ---------- Movie of the Day ---------- */
  .motd-card{
    position: relative;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(212,44,73,0.12), rgba(199,154,61,0.08));
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 20px 22px;
    margin: 26px 0 34px;
  }
  .motd-ribbon{
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--marquee-red-bright);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .motd-poster{
    width: 78px;
    flex-shrink: 0;
    aspect-ratio: 2 / 3;
    border-radius: 6px;
    overflow: hidden;
    background: var(--ink-2);
    border: 1px solid rgba(199,154,61,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .motd-poster img{ width:100%; height:100%; object-fit:cover; display:block; }
  .motd-poster-fallback{
    font-family: var(--font-display);
    font-size: 0.7rem;
    color: var(--gold);
    text-align: center;
    padding: 6px;
    line-height: 1.2;
  }
  .motd-body{ flex-grow: 1; min-width: 0; }
  .motd-title{
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--cream);
    line-height: 1.15;
    margin-top: 4px;
  }
  .motd-meta{
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold-bright);
    letter-spacing: 0.05em;
    margin-top: 2px;
  }
  .motd-blurb{
    font-size: 0.85rem;
    color: var(--cream-dim);
    line-height: 1.45;
    margin-top: 8px;
  }
  @media (max-width: 480px){
    .motd-card{ flex-direction: column; align-items: center; text-align: center; }
    .motd-poster{ width: 100px; }
  }

  /* ---------- Director of the Month ---------- */
  .director-card{
    position: relative;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(212,44,73,0.12), rgba(199,154,61,0.08));
    border: 2px solid var(--gold);
    border-radius: 16px;
    padding: 26px 26px 22px;
    margin-bottom: 26px;
  }
  .director-ribbon{
    position: absolute;
    top: -12px;
    left: 26px;
    background: var(--marquee-red-bright);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .director-photo{
    width: 128px;
    height: 128px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: var(--ink-2);
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .director-photo img{ width:100%; height:100%; object-fit:cover; display:block; }
  .director-photo-fallback{
    font-family: var(--font-display);
    font-size: 0.75rem;
    color: var(--gold);
    text-align: center;
    padding: 6px;
    line-height: 1.2;
  }
  .director-body{ flex-grow: 1; min-width: 0; }
  .director-name{
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--cream);
    line-height: 1.1;
    margin-top: 4px;
  }
  .director-meta{
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold-bright);
    letter-spacing: 0.05em;
    margin-top: 3px;
  }
  .director-bio{
    font-size: 0.9rem;
    color: var(--cream-dim);
    line-height: 1.55;
    margin-top: 12px;
  }
  .director-bio p{ margin: 0 0 10px; }
  .director-films-heading{
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--marquee-red);
    letter-spacing: 0.02em;
    margin: 6px 0 14px;
  }
  @media (max-width: 480px){
    .director-card{ flex-direction: column; align-items: center; text-align: center; }
    .director-ribbon{ left: 50%; transform: translateX(-50%); }
  }

  /* ---------- Watchlist panel ---------- */
  .watchlist-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
  }
  .watchlist-empty{
    text-align: center;
    color: var(--silver);
    font-size: 0.9rem;
    padding: 30px 10px;
    line-height: 1.5;
  }

  .pick-poster-wrap{
    width: 100%;
    aspect-ratio: 2 / 3;
    border-radius: 5px;
    overflow: hidden;
    background: var(--ink-2);
    border: 1px solid rgba(199,154,61,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .pick-poster-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .pick-poster-fallback{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-family: var(--font-display);
    font-size: 0.8rem;
    color: var(--gold);
    line-height: 1.3;
  }

  .plot-wrap{ position: relative; }
  .plot.truncated{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .plot-readmore{
    display:none;
    background:none;
    border:none;
    color: var(--marquee-red-bright);
    font-weight:600;
    font-size:0.85rem;
    cursor:pointer;
    padding:2px 0 8px;
    text-decoration:underline;
  }
  .plot-readmore.show{ display:inline-block; }
  .plot-extra{
    font-size:0.82rem;
    color:#6b6258;
    margin-top:2px;
  }

  .surprise-card{
    background: linear-gradient(180deg, var(--maroon), var(--ink-2));
    border: 2px solid var(--gold);
    border-radius: 14px;
    padding: 26px 20px 30px;
    text-align:center;
    min-height: 130px;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:6px;
  }
  .reel-pointer{
    color: var(--gold-bright);
    font-size: 1.05rem;
    line-height: 1;
    text-align:center;
  }
  .reel-pointer-top{ margin-bottom: 2px; }
  .reel-pointer-bottom{ margin-top: 2px; margin-bottom: 12px; }
  .reel-viewport{
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(0,0,0,0.35);
    margin-bottom: 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  }
  .reel-viewport::after{
    content:"";
    position:absolute; top:0; bottom:0;
    left:50%; width:180px; transform:translateX(-50%);
    border-left: 2px solid var(--gold); border-right: 2px solid var(--gold);
    pointer-events:none;
  }
  .reel-track{
    display:flex;
    align-items:center;
    height:100%;
  }
  .reel-chip{
    flex-shrink:0;
    width: 180px;
    height:100%;
    display:flex; align-items:center; justify-content:center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--cream-dim);
    padding: 0 10px;
    text-align:center;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .reel-chip.winner{ color: var(--gold-bright); }
  .surprise-card .eyebrow{
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform:uppercase;
    color: var(--gold);
  }
  .surprise-card .movie-title{
    font-family: var(--font-display);
    font-size: 2.1rem;
    color: var(--cream);
    line-height:1.1;
    min-height: 1.2em;
  }
  .surprise-card .meta{
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--silver);
    min-height: 1.2em;
  }
  .watch-link{
    margin-top: 16px;
    min-height: 1.2em;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .plot{
    max-width: 320px;
    margin: 10px auto 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--silver);
    min-height: 1.2em;
  }
  .watch-link a{
    display:none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    color: var(--ink);
    background: var(--gold-bright);
    border: 2px solid var(--cream);
    border-radius: 999px;
    padding: 12px 28px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .watch-link a.show{ display:inline-flex; }
  #buyPhysicalLink{
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--gold);
  }
  #buyPhysicalLink:hover{
    background: rgba(240,201,117,0.12);
    color: var(--gold-bright);
  }
  .watch-link a:hover{
    background: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  .watch-link-disclosure{
    display:none;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--silver);
    margin-top: 8px;
  }
  .watch-link-disclosure.show{ display:block; }
  .stub-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
  }
  .stub{
    background: var(--ink-2);
    border: 1px solid rgba(199,154,61,0.3);
    border-radius: 8px;
    padding: 1.2rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.15s ease, border-color 0.15s ease;
  }
  .stub:hover{
    transform: translateY(-2px);
    border-color: var(--gold);
  }
  .stub .retailer{
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    font-size: 1.1rem;
    color: var(--gold-bright);
  }
  .stub .format-tags{
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
  }
  .stub .format-tags span{
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border: 1px solid rgba(242,232,213,0.3);
    border-radius: 3px;
    padding: 0.12rem 0.45rem;
    opacity: 0.75;
  }
  .stub .buy-link{
    margin-top: 0.3rem;
    align-self: flex-start;
    text-decoration: none;
    color: var(--ink);
    background: var(--gold);
    padding: 0.5rem 1rem;
    border-radius: 3px;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font-mono);
    transition: background 0.15s ease;
  }
  .stub .buy-link:hover{ background: var(--gold-bright); }
  .btn-pull{
    display:block;
    margin: 20px auto 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    background: var(--gold);
    color: var(--ink);
    border:none;
    border-radius: 999px;
    padding: 12px 32px;
  }
  .btn-pull:hover{ background: var(--gold-bright); }

  /* ---------- Guess The Poster game ---------- */
  .guess-streak{
    text-align:center;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 10px;
  }
  .share-streak-btn{
    display: flex;
    margin: 0 auto 18px;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid var(--gold);
    border-radius: 999px;
    padding: 7px 16px;
    color: var(--gold-bright);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease, transform 0.1s ease;
  }
  .share-streak-btn:hover{ background: rgba(199,154,61,0.14); border-color: var(--gold-bright); color: var(--cream); }
  .share-streak-btn:active{ transform: scale(0.96); }
  .share-streak-btn.copied{ border-color: #5c8a5c; color: #8fc98f; }
  @media (prefers-reduced-motion: reduce){
    .share-streak-btn{ transition: none; }
  }
  .guess-wrap{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .guess-poster-frame{
    width: 200px;
    aspect-ratio: 2 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--ink-2);
    border: 2px solid var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 18px;
  }
  .guess-poster-frame img{
    width:100%; height:100%; object-fit:cover; display:block;
    filter: blur(22px);
    transform: scale(1.1);
    transition: filter 0.5s ease;
  }
  .guess-poster-frame img.revealed{ filter: blur(0); }
  .guess-message{
    min-height: 1.4em;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: var(--gold-bright);
    margin-bottom: 14px;
  }
  .guess-options{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 520px;
  }
  .guess-option{
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--cream);
    background: rgba(0,0,0,0.15);
    border: 1.5px solid rgba(199,154,61,0.5);
    border-radius: 8px;
    padding: 12px 14px;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  }
  .guess-option:hover:not(:disabled){ border-color: var(--gold-bright); background: rgba(199,154,61,0.12); }
  .guess-option:active:not(:disabled){ transform: scale(0.97); }
  .guess-option:disabled{ cursor: default; }
  .guess-option.correct{
    border-color: #5c8a5c;
    background: rgba(92,138,92,0.18);
    color: #8fc98f;
  }
  .guess-option.wrong{
    border-color: var(--marquee-red-bright);
    background: rgba(212,44,73,0.14);
    color: rgba(242,232,213,0.55);
  }

  footer{
    text-align:center;
    padding: 30px 20px 50px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(242,232,213,0.4);
    position:relative; z-index:1;
  }
  footer a{ color: var(--gold-bright); text-decoration:none; }
  .coffee-link{ margin-bottom: 14px; }
  .coffee-link a{
    display:inline-block;
    font-family: var(--font-body);
    font-weight:600;
    font-size: 0.85rem;
    color: var(--ink);
    background: var(--gold);
    padding: 8px 18px;
    border-radius: 999px;
  }
  .coffee-link a:hover{ background: var(--gold-bright); }
  .footer-contact{ margin-top: 10px; }
  .footer-contact a{ color: rgba(242,232,213,0.55); }

  .privacy-text{
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--cream-dim);
  }
  .privacy-text p{ margin: 0 0 14px; }
  .privacy-text strong{ color: var(--gold-bright); }
  .privacy-text a{ color: var(--gold-bright); text-decoration:underline; }
  .privacy-text h4{
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    color: var(--marquee-red-bright);
    margin: 22px 0 8px;
  }
  .privacy-text h4:first-child{ margin-top: 0; }
  /* ---- Cookie consent banner ---- */
  .cookie-banner{
    position:fixed;
    left:0; right:0; bottom:0;
    z-index:200;
    background: var(--paper-2);
    border-top: 2px solid var(--gold);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.5);
    padding: 14px 20px;
    display:none;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
    font-family: var(--font-body);
  }
  .cookie-banner.show{ display:flex; }
  .cookie-banner p{
    margin:0;
    font-size: 13px;
    color: var(--silver);
    max-width: 460px;
  }
  .cookie-banner a{ color: var(--gold-bright); text-decoration: underline; }
  .cookie-actions{ display:flex; gap:8px; flex-shrink:0; }
  .cookie-btn{
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 9px 16px;
    border-radius: 3px;
    cursor: pointer;
  }
  .cookie-btn.accept{ background: var(--gold); border: 1px solid var(--gold); color: var(--paper); }
  .cookie-btn.accept:hover{ background: var(--gold-bright); }
  .cookie-btn.reject{ background: none; border: 1px solid var(--silver); color: var(--silver); }
  .cookie-btn.reject:hover{ border-color: var(--cream); color: var(--cream); }

  .privacy-updated{
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(242,232,213,0.4);
    margin-top: 20px;
  }

  @media (max-width:600px){
    .filmstrip-border{ padding: 0 26px; }
    .sprockets{ width:26px; }
    .sprocket-hole{ width:9px; height:14px; }
  }

  @media (prefers-reduced-motion: reduce){
    .bulb{ animation:none !important; }
    *{ transition:none !important; }
  }

  /* --- Confetti --- */
  .confetti-layer{
    position: fixed;
    inset: 0;
    z-index: 950;
    pointer-events: none;
    overflow: hidden;
  }
  .confetti-piece{
    position: absolute;
    top: -20px;
    border-radius: 1px;
    opacity: 0.95;
    animation-name: confettiFall;
    animation-timing-function: cubic-bezier(.25,.46,.45,.94);
    animation-fill-mode: forwards;
  }
  @keyframes confettiFall{
    0%{ transform: translateY(0) translateX(0) rotate(0deg); opacity: 1; }
    85%{ opacity: 1; }
    100%{ transform: translateY(108vh) translateX(var(--drift)) rotate(var(--spin)); opacity: 0; }
  }
  @media (prefers-reduced-motion: reduce){
    .confetti-piece{ display:none; }
  }

  /* --- Sound toggle --- */
  .sound-toggle{
    position: fixed;
    top: 18px; right: 18px;
    z-index: 900;
    width: 44px; height:44px;
    border-radius: 50%;
    background: rgba(20,16,15,0.7);
    border: 2px solid var(--gold);
    color: var(--gold-bright);
    font-size: 1.1rem;
    display:flex; align-items:center; justify-content:center;
    cursor:pointer;
    backdrop-filter: blur(4px);
  }
  .sound-toggle:hover{ background: rgba(20,16,15,0.9); }
  .sound-toggle.hidden{ display:none; }

/* ---- multi-page nav link styling (mode-btn used as <a>) ---- */
.mode-toggle a.mode-btn{
  text-decoration: none;
  display: inline-block;
}
