body {
  background-color: #1b3a2f;
}


/* Layout wrapper (keeps things centered like your screenshot) */
.wrap{
  max-width: 980px;
  margin: 0 auto;
  padding: 32px 16px 64px;
}

/* Paper container */
.paper{
  background: rgba(245, 240, 230, 0.92);
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 18px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.35),
    inset 0 0 0 1px rgba(255,255,255,0.35);
  overflow: hidden;
}

/* Header row */
.paper-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.paper h1{
  margin: 0;
  font-size: 30px;
  letter-spacing: 0.3px;
}

.subtitle{
  margin: 6px 0 0;
  opacity: 0.7;
}

/* Buttons */
.btn{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,0.88);
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.btn.subtle{
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.75);
  border: 1px solid rgba(0,0,0,0.10);
}

/* Entry list (like Releases list) */
.entry-list{
  padding: 10px 10px 18px;
}

.entry-item{
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  padding: 16px 14px;
  margin: 10px 8px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.22);
  transition: transform 0.08s ease, background 0.12s ease, border-color 0.12s ease;
}

.entry-item:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.35);
  border-color: rgba(0,0,0,0.12);
}

.entry-meta{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.entry-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.entry-date{
  opacity: 0.7;
  font-size: 14px;
}

.entry-excerpt{
  margin: 10px 0 0;
  opacity: 0.85;
  line-height: 1.6;
}

/* Footer tip */
.paper-footer{
  padding: 12px 22px 18px;
  border-top: 1px dashed rgba(0,0,0,0.18);
}

.tip{
  opacity: 0.65;
}

/* Entry page specifics */
.paper-entry{
  padding-bottom: 10px;
}

.entry-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px 6px;
}

.back{
  text-decoration: none;
  color: rgba(0,0,0,0.65);
  font-weight: 600;
}

.entry-header{
  padding: 8px 22px 10px;
}

.entry-h1{
  margin: 0;
  font-size: 32px;
}

.entry-body{
  padding: 8px 22px 22px;
  line-height: 1.75;
  font-size: 17px;
  opacity: 0.92;
}

.divider{
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 0 22px 14px;
}

.entry-bottom{
  padding: 0 22px 18px;
}
