canvas#matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1000;
  display: block;
  background-color: black;
}

body {
  font-family: 'Fira Code', monospace;
  background: transparent;
  color: #ccc;
  margin: 0;
  padding: 0;
}

.logo-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 56px;
  padding-right: 12rem;
  padding: 0 1.75rem 0 0.5rem;
  background: rgba(0, 0, 0, 0.6); /* darker than before */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.full-logo {
  max-height: 40px;
}

main.container {
  margin-top: 60px;
  padding: 2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #888;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1rem;
  color: #888;
  background: transparent;
  font-size: 0.9rem;
  margin-bottom: 0; /* Make sure there's no extra margin */
}

/* FAKE STATUS BAR */
.fake-status-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 20, 0.9);
  border-top: 1px solid #222;
  color: #66ccff;
  font-family: 'Fira Code', monospace;
  font-size: 0.75rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 4px 10px;
  z-index: 998;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
}

.fake-status-bar span {
  white-space: nowrap;
}

a {
  color: #00f0ff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 4px #00f0ff44;
  padding: 2px 4px;
  border-radius: 4px;
}

a:hover {
  color: #ffffff;
  box-shadow: 0 0 8px #00f0ff, 0 0 12px #00f0ff66;
  text-shadow: 0 0 6px #00f0ff;
  background-color: rgba(0, 240, 255, 0.1);
}
/* WELCOME BOX */
.welcome-box {
  background: rgba(20, 20, 30, 0.4);
  border: 1px solid rgba(80, 80, 80, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.03);
}

.welcome-box h2 {
  margin-top: 0;
  color: #3390ff;
}

.welcome-box p {
  color: #ddd;
  line-height: 1.6;
}
.donate-link {
  color: #3390ff;
  text-decoration: underline;
  font-weight: bold;
}

.donate-link:hover {
  color: #33ccff;
  text-shadow: 0 0 6px #00f0ff;
}

.emoji {
  font-size: 1.4em;
  vertical-align: middle;
  line-height: 1;
}

/* Target all code blocks inside <pre> */
pre code {
  display: block;
  background: #111;
  color: #0ff;
  border: 1px solid #0ff;
  box-shadow: 0 0 8px #0ff;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  white-space: pre;
  max-width: 100%;
  font-family: monospace;
  font-size: 0.95em;
}

/* Ensure <pre> itself scrolls horizontally if needed */
pre {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.copy-button {
  position: absolute;
  top: 8px;
  right: 10px;
  background: #111;
  border: 1px solid #0ff;
  color: #0ff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 0 6px #0ff;
  transition: all 0.2s ease;
}

.copy-button:hover {
  background: #0ff;
  color: #000;
  box-shadow: 0 0 10px #0ff;
}

img {
  max-width: 50%;
  height: auto;
  display: block;
  margin: 1em auto;
}

.full-logo {
  max-width: none !important;
  height: auto !important;
  display: inline !important;
  margin: 0 !important;
}