:root{
  --bg:#0b0b0c;
  --paper:#101012;
  --ink:#f2f1ed;
  --muted:rgba(242,241,237,.72);
  --edge:rgba(242,241,237,.16);
  --edge2:rgba(242,241,237,.08);
  --chip:rgba(242,241,237,.07);
  --shadow: rgba(0,0,0,.85);
  --max: 900px;
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  line-height:1.6;
}

/* Grit + scanline + vignette */
body:before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.42;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(255,255,255,.03),
      rgba(255,255,255,.03) 1px,
      transparent 1px,
      transparent 3px
    ),
    radial-gradient(1200px 700px at 30% 18%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(1100px 650px at 70% 30%, rgba(255,255,255,.04), transparent 58%);
  mix-blend-mode: overlay;
}
body:after{
  content:"";
  position:fixed;
  inset:-40px;
  pointer-events:none;
  opacity:.9;
  background:
    radial-gradient(closest-side at 50% 50%, transparent 40%, rgba(0,0,0,.45) 100%);
}

/* Layout */
.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 18px 80px;
}

.card{
  position:relative;
  padding: 24px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--edge);
  background: rgba(16,16,18,.86);
  box-shadow: 0 50px 120px var(--shadow);
  overflow:hidden;
}

/* “torn tape” sheen */
.card:before{
  content:"";
  position:absolute;
  left:-40px;
  right:-40px;
  top:14px;
  height:88px;
  transform: rotate(-3.2deg);
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.06),
    rgba(255,255,255,.02),
    transparent
  );
  opacity:.9;
}

/* Type */
.kicker{
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
}

h1{
  margin: 6px 0 14px;
  font-size: 50px;
  font-weight: 850;
  letter-spacing: -.045em;
  line-height:1.05;
}

h2{
  margin: 22px 0 10px;
  font-size: 15px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

p{
  margin: 12px 0;
  font-size: 19px;
  color: rgba(242,241,237,.92);
}

.small{ font-size: 13px; color: var(--muted); }

hr{
  border:0;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(242,241,237,.22), transparent);
  margin: 18px 0;
}

/* Links */
a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(242,241,237,.25);
}
a:hover{
  border-bottom-color: rgba(242,241,237,.75);
}

/* Buttons */
.actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(242,241,237,.22);
  background: rgba(242,241,237,.06);
  color: var(--ink);
  text-decoration:none;
  font-weight: 700;
  letter-spacing: .02em;
}
.btn:hover{
  background: rgba(242,241,237,.10);
  border-color: rgba(242,241,237,.38);
}
.btn.secondary{
  background: transparent;
  border-color: rgba(242,241,237,.18);
}

/* Tag chips */
.tagrow{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top: 12px;
}
.tag{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid rgba(242,241,237,.18);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(242,241,237,.04);
}

/* Scribble accent */
.scribble{
  display:inline-block;
  padding: 4px 14px 6px;
  border-radius: 12px;
  background: rgba(242,241,237,.08);
  border: 1px dashed rgba(242,241,237,.32);
  transform: rotate(-2.4deg) skewX(-1deg);
  box-shadow:
    -2px 2px 0 rgba(0,0,0,.4),
    inset 0 0 0 1px rgba(255,255,255,.04);
}

/* Hero blocks (cover/avatar) */
.hero{
  display:flex;
  gap:18px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.cover,.avatar{
  border-radius: 16px;
  border: 1px solid rgba(242,241,237,.18);
  background: rgba(242,241,237,.06);
  overflow:hidden;
}
.cover{
  width: 190px;
  aspect-ratio: 1 / 1;
}
.avatar{
  width: 120px;
  height: 120px;
}
.cover img,.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Footer nav */
.footer{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}
.footer a{
  border-bottom: none;
  opacity: .9;
}
.footer a:hover{ opacity: 1; }

/* Make the page feel less “browser default” on mobile */
@media (max-width: 520px){
  h1{ font-size: 40px; }
  p{ font-size: 18px; }
  .card{ padding: 20px 16px; }
}
/* Book cover display (AiNONYMOUS verification page) */
.covers {
  display: flex;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.covers img {
  max-width: 160px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

@media (max-width: 600px) {
  .covers {
    flex-direction: column;
    align-items: center;
  }
}

