:root {
  --content-width: 700px;
  --side-padding: 72px;
  --accent: #bd770d;
  --box-bg: #2b2a33;
}

.reading-header,
.reading-row {
  text-align: center;
}
  
  body {
  margin: 0;
  background-color: #1f1d24;
  background-image: url("/pattern9.png");
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: patternDrift 100s linear infinite;
  overflow-x: hidden;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  font-family: 'Special Elite', monospace;
}

@keyframes patternDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 200px;
  }
}


  .upbanner {
  position: sticky;
  top: 0;
  background: #ad5515;
  color: #fff;
  text-align: center;
  padding: 30px 0;
  font-size: 30px;
  letter-spacing: 1px;
  z-index: 10;
}

  .tab {
  background: none;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  opacity: 0.7;
}

  .tab:hover {
  opacity: 1;
}

  .reading-section {
  padding: 0;
  margin-bottom: 80px;
}


  .container {
  padding: 0 90px 0 0;
  }



  .currently-reading {
  max-width: var(--content-width);
  margin: 40px auto;
  background: #1f1d24;
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid var(--accent);
  text-align: justify;
}

 .year-sticky {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.year-sticky span {
  display: block;
  background: #1f1d24;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 18px;
  opacity: 0.8;
  border: 1px dashed rgba(255,255,255,.3);
}

  .reading-table {
  width: var(--content-width);
  background: var(--box-bg);
  border-radius: 12px;
  padding: 16px 20px;
}

  .reading-header,
  .reading-row {
  display: grid;
  grid-template-columns: 2.5fr 2fr 1fr 1.5fr;
  gap: 16px;
  align-items: center;
}

  .reading-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 90px 140px;
  font-weight: bold;
  opacity: 0.6;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255,255,255,.3);
}

  .reading-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 90px 140px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed rgba(255,255,255,.15);
}


  .toggle-review {
  background: none;
  border: 1px dashed rgba(255,255,255,.4);
  color: #fff;  
  font-family: inherit;
  cursor: pointer;
  padding: 6px 10px;
  font-size: 14px;
}

  .reading-wrapper {
  display: flex;
  gap: 24px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

  .toggle-review:hover {
  background: rgba(255,255,255,.05);
}
  

  .review {
  display: none;
  margin-top: 20px;
  padding: 24px;
  background: #1f1d24;
  border-radius: 12px;
  border-left: 3px solid #bd770d;
  line-height: 1.7;
}

  .review.open {
  display: block;
}

  
  .footer {
  text-align: center;
  font-size: 13px;
  margin: 40px 0;
  color: #fff;
  }
  