/* ========== BASE ========== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #FEF6DF;
  color: #422E25;
  font-family: 'MingLiU-ExtB', 'PMingLiU', 'Lucida Console', monospace;
  line-height: 1.6;
  position: relative;
}
.bg {
  background: url('your-background.png') repeat;
  position: fixed;
  background-size: cover;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0.5;
  z-index: -1;
}

/* ========== LAYOUT ========== */
.container {
  max-width: 900px;
  margin: auto;
  padding: 1rem;
}

/* ========== BANNER ========== */
.banner {
  width: 100%;
  border: 4px solid #FD549E;
  background-color: #FD549E;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center
}

/* ========== NAV / SOCIAL BUTTONS ========== */
.socials {
  text-align: center;
  margin-bottom: 1rem;
}
.social-btn {
  display: inline-block;
  background-color: #F69CC2;
  color: #422E25;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #DB6682;
  transition: background 0.2s, transform 0.2s;
}
.social-btn:hover {
  background-color: #FD549E;
  transform: scale(1.05);
}
.social-btn:active {
  transform: scale(0.9);
}

/* ========== SIDEBAR ========== */
.sidebar {
  background-color: #E5D3DF;
  border: 2px solid #DB6682;
  border-radius: 10px;
  padding: 1rem;
  width: 250px;
  height: 400px;
  float: left;
  margin-right: 1rem;
  box-shadow: 2px 2px 5px #8375C7;
}
.pfp {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

/* ========== BLOG BOX ========== */
.blog-box {
  background: #C9C7E0;
  border: 2px solid #463771;
  border-radius: 10px;
  padding: 1rem;
  height: 400px;
  overflow-y: scroll;
  box-shadow: inset 0 0 10px #909198;
  margin-bottom: 1rem;
}

/* ========== BUTTONS SECTION ========== */
.button-wrap {
  background: #FFCC4D;
  border: 2px solid #8D5D3F;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1rem;
}
.button-wrap img {
  width: 88px;
  height: 31px;
  image-rendering: pixelated;
  transition: transform 0.2s;
}
.button-wrap img:hover {
  transform: scale(1.1);
}

/* ========== WEBRING ========== */
.webring {
  background: #98AE59;
  border: 2px solid #422E25;
  padding: 1rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}
.webring iframe {
  width: 100%;
  height: 80px;
  border: none;
}

/* ========== FOOTER ========== */
footer {
  text-align: center;
  margin-top: 1rem;
  border: 2px solid #422e25;
  background-color: #E5D3DF;
}
footer a {
  color: #FD549E;
  text-decoration: none;
}
