
@font-face {
  font-family: 'chikarego';
  src: url("/fonts/chikarego-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'pc-9800';
  src: url("/fonts/pc-9800-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'dragon';
  src: url("/fonts/eightbitdragon-anqx-webfont.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'OCRAExtended';
  src: url("/fonts/OCRAExtended.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}

body {
  zoom: 70%;
}


body {
  image-rendering: pixelated;
  background-image: url("/images/background.png");
  background-size: 800px;
  background-repeat: repeat;
  color: white;
  font-family: "pc-9800", sans-serif;
  font-size: 40px;
  line-height: 1.4;
  background-color: rgba(0, 0, 0, 0.7);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.layout {
  display: grid;
  grid-template-columns: 70% 30%;
  gap: 20px;
  align-items: start;
}

@media (max-width: 420px) {
  .blog-card { width: 100%; }
  .blog-card img.thumb { height: 160px; }
}

.image-container {
  display: block !important;
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 1200px; 
  gap: 10px;
}

.image-container img, 
.image-container a img {
  display: inline-block !important;
  margin: 0 !important;
}
.document-text img {
  display: block;
  margin: 20px auto;
}

.document-text {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.3); 
  padding: 40px;
  box-sizing: border-box;
  border-radius: 8px;
}

.document-text h1 {
  font-size: 60px; 
  margin-left: 30px;
  font-weight: normal;
  color: #ffffff;
}


.document-text h2 { 
  font-size: 50px; 
  line-height: 2;
  text-align: center; 
  font-weight: normal;
  color: #ffffff;
}

.document-text h3 { 
  font-size: 30px; 
  text-align: center; 
  margin: 0.5rem 0; 
  max-width: 1200px; 
  margin-left: auto; 
  margin-right: auto;
  font-weight: normal;
  color: #ffffff;
}

.document-text h4 { 
  font-size: 60px; 
  margin-left: 30px;
  text-align: center; 
  font-weight: normal;
  color: #ffffff;
}

.document-text h5 { 
  font-size: 80px; 
  margin-left: 30px;
  text-align: center; 
  font-weight: normal;
  color: #ffffff;
}

.document-text p {
  font-size: 40px;
  max-width: 1200px; 
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
  color: #ffffff;
  
}

.document-text blockquote p {
  font-size: 40px;
  max-width: 1200px; 
  margin-left: auto;
  margin-right: 50px;
  font-weight: normal;
  color: #ffffff;
}

.document-text blockquote {
  border: 5px solid #9da3a3;
  max-width: 1000px; 
  padding-left: 50px;
  margin-left: auto;
  margin-right: auto;
}

.document-text strong {
  font-weight: bold;
  color: #90c7ae;
}

.document-text pre {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  overflow-x: auto;
}

.document-text code {
  font-family: "OCRAExtended" !important;
  font-weight: normal;
  font-size: 38px;
  color: #FFA500;
}

.document-text li {
  font-size: 40px;
  max-width: 1000px; 
  margin-left: auto;
  margin-right: auto;
  font-weight: normal;
  color: #ffffff;
}

.flag-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 0px;
}

a:link {
  color: #a7c7b7;
}

a:visited {
  color: #a7c7b7;
}

a:active {
  color: #FFA500;
}

summary {
  list-style: none;
  display: flex;
  justify-content: center;
  cursor: pointer;
  color: white;
  margin: 20px 0;
}

summary:hover {
  color: #90c7ae;
}

summary:active {
  color: #FFA500;
}

summary h2 {
  display: inline; 
  margin: 02;
}

summary::after {
  content: '⠀+';
  display: inline-block;
}

details[open] summary::after {
  content: '⠀-';
}

ul li::marker {
  content: '- ';
}

.marquee-container {

  display: flex;
  width: 100%;
  user-select: none;
  overflow: hidden; 
}

.marquee-content {
  display: flex;
  flex-shrink: 0;
  
  animation: scroll-left 60s linear infinite;
  min-width: 100%;
}

.marquee-container:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-content img {
  height: 40px;
  width: auto;
}

table {
  width: 100%;
  border-collapse: collapse; /* Prevents double borders */
  margin: 20px 0;
  font-size: 30px;
}

table th {
  color: #ffffff;

  text-align: left;
  padding: 12px;
  border: 4px solid #90c7ae;
}

table td {
  padding: 12px;
  border: 4px solid #506f61;
  color: #ffffff;
}

table tr:nth-child(even) {
  background-color:
}

table td a {
  font-weight: bold;
}

.database {
  max-width: 1200px;
  margin: 40px auto;
  font-family: 'PC-9800', sans-serif, monospace;
  background-color: 
  padding: 20px;
}

.level-divider {
  display: flex;
  align-items: center;
  margin: 25px 0 15px 0;
  user-select: none;
}

.level-divider::before {
  content: "";
  height: 16px;
  width: 30px;
  background-color: #FFA500;
  margin-right: 15px;
}

.level-divider::after {
  content: "";
  flex-grow: 1; /* Long trailing line that fills the screen width */
  height: 16px;
  background-color: #5252b1; /* Faded grid color */
  margin-left: 15px;
}

.divider-text {
  font-size: 40px;
  letter-spacing: 2px;
  color: #FFA500;
  text-transform: uppercase;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 12px;
  padding-left: 45px;
}

.file-link {
  color: #FFA500 !important; 
  text-shadow: 0 0 8px #FFA500 !important; 
  text-decoration: none;
  font-size: 40px;
  padding: 16px 8px;
  transition: color 0.5s ease;

  white-space: nowrap;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.file-link:hover {
  color: #5252b1 !important; 
  text-shadow: 0 0 8px #5252b1 !important; 
}
