:root {
    --bg:#fff;
    --ink:#111;
    --muted:#6b7280;
    --card:#ffffff;
    --line:#ececec;
    --brand:#ff69b4;
    }
@media (prefers-color-scheme: dark)
{
  :root {
    --bg:#0b0b0c;
    --ink:#f4f4f5;
    --muted:#a1a1aa;
    --card:#111114;
    --line:#232326;
    }
}
* { box-sizing:border-box; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(255,105,180,.35), transparent 60%),
    radial-gradient(1200px 600px at 110% 10%, rgba(94,203,255,.3), transparent 60%),
    var(--bg);
  color: var(--ink);
  font: 16px/1.6 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, "Apple Color Emoji","Segoe UI Emoji";
}
a { color:var(--brand); }
header, main, footer {
    max-width:1100px;
    margin:auto;
    padding:20px;
    }
header {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px; }
.brand {
    display:flex;
    align-items:center;
    gap:12px;
    }
.logo img {
    width:44px;
    height:44px;
    border-radius:50%; }
.title{
    font-size:clamp(22px,3vw,30px);
    margin:0
    }
.tag{
    font-size:14px;
    color:var(--muted)
    }
.grid{
    display:grid;
    grid-template-columns:repeat(12,1fr);
    gap:16px
    }
.card{
    background:var(--card);
    border:1px solid var(--line);
    border-radius:18px;
    padding:18px;
    box-shadow:0 6px 30px rgba(0,0,0,.06)
    }
.hero{
    grid-column:1/-1;
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:18px }
.hero-art{
    border-radius:16px;
    background:linear-gradient(135deg, rgba(255,105,180,.25), rgba(94,203,255,.25))
    }
.badge{
    display:inline-block;
    padding:4px 10px;
    border-radius:999px;
    background:rgba(255,105,180,.15);
    border:1px solid rgba(255,105,180,.35);
    font-weight:600
    }
.list{
    list-style:disc;
    padding-left:20px;
    margin:0
    }
.list li {
    margin:.35rem 0
    }
.credit{
    display:block;
    font-size:13px;
    color:var(--muted);
    margin-left:0.5em
    }
.credit a{
    color:var(--brand);
    text-decoration:none
    }

.scrapbook{
  background:
    repeating-linear-gradient(0deg,rgba(0,0,0,.03),rgba(0,0,0,.03) 1px,transparent 1px,transparent 20px),
    repeating-linear-gradient(90deg,rgba(0,0,0,.02),rgba(0,0,0,.02) 1px,transparent 1px,transparent 20px),
    var(--card);
  border:1px dashed var(--line);
}
.scrapbook .gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(180px,1fr));
  gap:18px;
}

.scrap-card{
  position:relative;
  padding-block:18px;  
  overflow:visible;  
}

.polaroid{
  background:#fff;
  border-radius:10px;
  padding:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  display:flex;
  flex-direction:column;
  position:relative;
  z-index:2;
  overflow:visible; 
}
.polaroid img{ width:100%; height:auto; border-radius:6px }
.polaroid figcaption{
  margin-top:8px; padding:0 6px; text-align:center;
  font-size:12px; color:#444; line-height:1.3; overflow-wrap:anywhere;
  position:relative; z-index:5; 
}

.tape{
  position:absolute;
  width:86px; height:22px;
  background:
    linear-gradient(to bottom, rgba(255,255,255,.35), rgba(255,255,255,.35)),
    repeating-linear-gradient(45deg, #ffd1dc, #ffd1dc 8px, #ffe4ec 8px, #ffe4ec 16px);
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 6px 12px rgba(0,0,0,.12);
  border-radius:4px;
  opacity:.95;
  pointer-events:none;
  z-index:3; /
}
.tape.tl{ top:-14px; left:12px;  transform:rotate(-8deg) }
.tape.tr{ top:-16px; right:12px; transform:rotate(7deg)  }
.tape.bl{ bottom:-16px; left:14px; transform:rotate(6deg) }
.tape.br{ bottom:-14px; right:14px; transform:rotate(-7deg) }


/* Layout */
.two-col{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,2fr);
  gap:16px;
  align-items:start;
}
.card.conventions{
    align-self:start; height:auto }
@media (max-width:900px){ .two-col{ grid-template-columns:1fr } }