body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: #33FF33;
    font-family: 'Courier New', monospace;
    font-size: 18px;
}
@font-face {
  font-family: '3270-Regular';
  src: url('/fonts/3270-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: '3270-Regular', monospace;
  background-color: black;
  color: #33FF33;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}
.header-frame {
    height: 270px;
    background-color: black;
    text-align: center;
    padding: 10px;
}
.content-wrapper {
    display: flex;
    flex: 1;
}
.side-frame {
    width: 60px;
    background-color: black;
}
.main-content {
    flex: 1;
    padding: 20px;
    padding-bottom: 140px; /* Enough space to avoid overlap */
    overflow-y: auto;
    max-width: 1000px;
    min-width: 640px;
    margin: 0 auto;
}
.footer-frame {
    height: 120px;
    background-color: black;
    text-align: right;
    padding: 10px;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,255,0,0.01) 0px,
    rgba(0,0,0,0.05) 2px,
    rgba(0,255,0,0.03) 2px,
    rgba(0,0,0,0.9) 4px
  );
  pointer-events: none;
  z-index: 9999;
}
h1, .unhinged-title {
  font-size: 28px;
  font-weight: bold;
  color: #FF33CC; /* Complementary to terminal green */
  margin-bottom: 0.1em;
}
article.unhinged-post h2 {
  font-size: 14px;
  line-height: 0.1; /* default is usually ~1.4 - lower value means tighter */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: normal;
  margin-top: 0.1em;
  margin-bottom: 1em;
  font-family: 'Courier New', monospace;
  color: #FF33EE;
}
.second-headline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-top: 0.5em;
  margin-bottom: 1em;
  font-family: 'Courier New', monospace;
  color: #FF33CC; /* Complementary pink, adjust as you like */
}

/* Style the first letter of each word */
.second-headline span.first-letter {
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
}
.signature {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  color: #777711;
  text-align: right;
  font-style: italic;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0;
  user-select: none;
}
.centered-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 640px;
  max-width: 100%;  /* scales down on smaller screens */
  height: auto;
}
.left-image {
  float: left;
  width: 256px;
  margin-right: 10px; /* space between image and text */
  margin-bottom: 10px; /* optional, space below image */
  shape-outside: inset(0); /* helps with text wrap in some browsers */
  /* Optional: make sure image scales nicely on small screens */
  max-width: 100%;
  height: auto;
}
.right-image {
  float: right;
  width: 256px;
  margin-left: 10px; /* space between image and text */
  margin-bottom: 10px; /* optional, space below image */
  shape-outside: inset(0); /* helps with text wrap in some browsers */
  /* Optional: make sure image scales nicely on small screens */
  max-width: 100%;
  height: auto;
}
.tip-button {
  background-color: #33FF33;
  border: none;
  padding: 12px 24px;
  margin: 8px;
  color: black;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 4px;
}

.tip-button:hover {
  background-color: #11cc11;
}
.button-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 12px;
  z-index: 10000;
}

.button-img {
  width: 128px; /* adjust size as needed */
  height: 128px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 4px #33FF33);
}