@font-face {
    font-family: 'Pixel';
    src: url('fonts/pixelmplus.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background:#111 url();
    font-family: 'Pixel';
    font-size: 10px;
    color:#fff;
    letter-spacing: 1px;
    line-height:13px;
    overflow-x:hidden;
    }
             
             
a:link, a:visited, a:active { 
font-weight:bold;
color:#fff;text-decoration:none;}
a:hover {
color:#ae007f;}
  

      b {color:#ae007f;font-weight:bold;}
      i {font-style:italic;color:#111;}
      u {color:#111;text-decoration:underline;}
     
::-webkit-scrollbar-thumb {
background-color: #a5a5a5;  
border-radius: 0px;
border:1px solid #111;}
  
::-webkit-scrollbar {
width: 7px; height: 0px; 
background: transparent;}

.highlight {
    background-color: #fff;  
    color: #111;             
    padding: 2px 6px;        
    border-radius: 4px;  
}

/* Inner content boxes */
.box {
    background: #edcfcf;
    border: 1px solid #111;
    border-radius: 0px;
    padding: 8px;
    margin-bottom: 0px;
    color: #111;
}

/* Title bar inside each box */
.box .title {
    background: #600e0e;
    padding: 5px 8px;
    border-bottom: 1px solid #111;
    border-radius: 0px;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: 'Pixel';
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.scrollbox {
  background:#edcfcf;
  height:150px;
  overflow:auto;
  overflow-x:hidden;
  margin-top:4px;
  }
  
textarea {
  font-family:'Pixel';
  font-size: 10px;
  letter-spacing:1px;
  background:#111;
  }
  
.jukebox-btn {
  font-family: 'Pixel';
  font-size: 10px;
  background: #ae007f;
  color: #fff;
  border: 12px;
  padding: 4px 6px;
  margin: 0 2px;
  cursor: pointer;
}

.jukebox-btn:hover {
  background: #111;
}

.marquee-container {
  width: 130px;   
  overflow: hidden;
  white-space: nowrap;
  display: inline-block;
}

.marquee-text {
  display: inline-block;
  padding-right: 100%;
  animation: marquee-scroll 12s linear infinite;
  animation-play-state: paused; /* ← start paused */
}

@keyframes marquee-scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-100%); }
}
  
/* === Light Mode Colors Override === */
body.light-mode {
  background: #600e0e; 
  color: #fff; 
}


body.light-mode .box .title {
  background: #111; 
  color: #fc8e8e;   
}


#mode-toggle {
  position: fixed;   /* stays at the top-right even when scrolling */
  top: 10px;         /* distance from top of window */
  right: 10px; /* distance from right edge */
  padding: 5px 10px;
  font-family: 'Pixel';
  font-size: 10px;
  cursor: pointer;
  background: #a5a5a5;  
  color: #fff;
  border: none;
  z-index: 999;      /* ensures it stays above other content */
}

#mode-toggle:hover {
  background: #111;
}
