@font-face {
    font-family: 'VictorMonoBold'; /* Choose a descriptive name */
    src: url('VictorMono-Bold.woff2') format('woff2'),
         url('VictorMono-Bold.woff') format('woff');
}

@font-face {
    font-family: 'VictorMonoCursive'; /* Choose a descriptive name */
    src: url('VictorMono-BoldItalic.woff2') format('woff2'),
         url('VictorMono-BoldItalic.woff') format('woff');
}

@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes nav-up {
  
}

::selection {
    background-color: #d5a811;
    color: #161712;
}

::-webkit-scrollbar {
    width: 0;  /* Remove scrollbar space */
    background: transparent;  /* Optional: just make scrollbar invisible */
}

fieldset {
  border: 2px solid rgb(213, 168, 17);
  border-radius: 5px;
  background-color: #161712;
}

html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    background-color: #161712;
    color: #d5a811;
    font-family: 'VictorMonoBold';
}

legend {
  display: grid;
  justify-content: center;
  align-items: center;
  border: 2px solid #d5a811;
  border-radius: 5px;
  width:80px;
  height: 60px;
  font-family: 'VictorMonoCursive';
}

pre {
    margin: 0px;
    padding: 0px;    
}
   
.content-fieldset {
  height: 40%;
  margin: 20px 5%;
  padding: 20px;
  overflow-y: auto;
}

.crt-container {
    position: relative;
    overflow: hidden; /* Important for containing pseudo-elements */
    border-radius: 50px; /* Subtle curvature */
    /* Other styling for your content */
}

.crt-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        transparent 0px,
        rgba(213, 168, 17, 0.3) 3px,
        transparent 2px
    ); /* Scanlines */
    background-size: 40% 4px; /* Adjust line thickness/spacing */
    pointer-events: none;
    z-index: 1; /* Ensure it's above content but below potential glare/flicker */
}

.crt-container::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.2) 75%,
        rgba(213, 168, 17, 0.15) 140%
    ); /* Subtle vignetting/edge darkening */
    pointer-events: none;
    z-index: 2;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: marquee 30s linear infinite;
  color: #161712;
  line-height: 20px
}

.marquee span {
  display: inline-block;
  /* line-height: 10px; */
}

.nav-fieldset {
    margin: 10px 5%;
    padding: 20px;
    height:5%;
    border: 2px solid rgb(213, 168, 17);
    border-radius: 5px;
    background-color: #161712;
}

.nav-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    justify-content: space-around;
    list-style-type: none;
    margin:0px;
    padding:0px;
    position: relative;
    top:-10px;
}

.nav-item:hover {
  text-decoration: underline;
 }

.selected-nav {
  visibility: hidden;
}

.site-title {
    display: flex;
    justify-content: center;
}

.wrapper {
  max-width: 100%;
  overflow: hidden;
  background-color: #d5a811;
  height: 20px
}
