body {
  background-color: #1C1C1C;
  color: #FCFAF2;
  font-size: 16px;
  line-height: 1.2;
  font-family: Noto Serif TC, SimSun, Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

div {
  display: block;
}

a {
  color: #5DAC81;
}

a:visited {
  color: #86A697;
}

.w {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

h2 {
  padding-top: 20px;
  color: #828282;
  font-size: 1.3rem;
}

h4 {
  padding-top: 20px;
  margin: 0;
}

/* info */

#info .content {
  display: none;
}

#lang-zh:checked~.content[lang="zh"] {
  display: block;
}

#lang-en:checked~.content[lang="en"] {
  display: block;
}

/* posts */

#posts ul li {
  margin-left: -20px;
}

/* fanarts */
.overlay,
.gallery .img-text {
  pointer-events: none;
}


.gallery .square-frame {
  display: inline-block;
  vertical-align: top;
  padding: 10px;
  width: 130px;
  height: 130px;
  margin-right: .5em;
  margin-bottom: .3em;
}

.gallery .crop {
  height: 100%;
  overflow: hidden;
  position: relative;
}

.gallery img {
  display: block;
  max-width: 100%;
  margin: auto;
  position: absolute;
  top: -100%;
  right: -100%;
  bottom: -100%;
  left: -100%;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  /* 半透明黑色 */
  z-index: 1;
}

.gallery .img-text {
  position: relative;
  z-index: 2;
  /* 確保在 overlay 上方 */
  color: white;
  text-align: center;
  padding: 50px 10px 0;
}

/* Lightbox 整個背景 */
.lightbox {

  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  display: flex;
}

.lightbox-trigger {
  cursor: pointer;
  z-index: 2;
  position: relative;
}

/* Lightbox 圖片 */
.lightbox-img {
  max-width: 90%;
  max-height: 90%;
}

/* 關閉按鈕 */
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* footer */
footer {
  margin: 30px 0;
}

/* posts文章 */

article {
  line-height: 1.5;
}

article h2 {
  font-size: 1.2rem;
}

blockquote {
  border-left: #5DAC81 2px solid;
  padding-left: 20px;
  font-style: italic;
  margin: 30px 0 30px 30px;
}