<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@font-face {
    font-family: 'AloneDark';
    src: url('/static/fonts/alone-in-the-dark.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'DarkShaman';
    src: url('/static/fonts/dark-shaman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


div.boardlist {
    margin-top: 3px;
    color: #89A;
    font-size: 9pt;
	background-color: #000000;
}

.intro span.subject {
    color: #FFFFFF;
    font-weight: bold;
}

form table tr th {
    background: #000000;
    border: 1px solid; 
  border-image: linear-gradient(to left, #7d9fb6, #243f4d) 1!important;
}




/* Body */
body {
  background-color: #000000; /* black dungeon background */
  color: #ffffff; /* white duh */
  font-family: 'AloneDark', Arial, sans-serif; /* pixel font */
  font-size: 12pt;
  line-height: 1.25; /* lil space between lines */
  margin: 0 4px;
  padding-left: 4px;
  padding-right: 4px;
  background-image: url('/static/genmu/topleft.png'), url('/static/genmu/topright.png');
  background-position: top left, top right; /* First image on top-left, second on top-right */
  background-repeat: no-repeat, no-repeat;  /* Prevent both from repeating */
  background-attachment: fixed, fixed;

}

hr {
  border: none; 
  height: 80px; 
  background-image: url('/static/genmu/borders.png');
}


/* Links */
a, a:visited {
  color: #34c6d3; /* Neon teal for links */
  text-decoration: none;
}

a:hover, .intro a.post_no:hover {
  color: #ff5050; /* Bright red for hover */
}

/* Headers */
h1, h2 {
  color: #ad8f5d;
  text-shadow: 2px 2px #111; /* Pixelated shadow effect */
  font-family: 'DarkShaman', Arial, sans-serif;
}

/* Post Containers */
div.post, div.post.reply {
  background-color: #000000;
  color: #ffffff; 
  border: 1px solid;
  border-image: linear-gradient(to right, #599359, #5993b2) 1;
  padding: 4px;
  margin: 4px 0;
}

div.post:hover {
  background-color: #aa0359; /* Magenta-red background */
  color: #39fbf3; /* Neon cyan text */
  box-shadow: 0 0 10px 2px #ff9900; /* Orange glow on hover */
}


span.quote {
    color: #FF7EB3;
}

div.ban {
    background: black;
    border: 1px solid #D7AB6A;
    max-width: 80%;
    margin: 30px auto;
}


div.ban h2 {
    background: #000000;
    color: #ad8f5d;
    font-size: 12pt;
}


th, td {
  border: 1px solid #ad8f5d!important;
  }
  
.intro span.name {
    color: #96f76e;
    font-weight: bold;
}




div.post.reply div.body a {
    color: #96f76e;
}

div.post.reply.highlighted {
color: #fb236a;
background-image: url('/static/genmu/splatter.png');
background-size: cover; 
background-repeat: no-repeat;
background-position: center;

  }




/* Buttons */
button {
  background-color: #28282d;
  color: #f5f5f5;
  border: 2px solid #34c6d3;
  padding: 5px 15px;
  text-transform: uppercase;
  font-size: 12px;
}

button:hover {
  background-color: #009688; /* Bright teal on hover */
  color: #000000;
  border-color: #ff9900;
  box-shadow: 0px 0px 5px 2px #ff9900;
}


div.banner a {
  color: #ff9900; /* Orange text in banner */
}

div.banner a:hover {
  color: #a3dbfa; /* Light blue hover effect */
}

/* Forms and Inputs */
input[type="text"], input[type="password"], textarea {
  background-color: #1b1b26;
  border: 1px solid #34c6d3;
  color: #d9d9d9;
}

input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: #ff9900; /* Orange glow when focused */
}



div.pages.top {
    display: block;
    position: static;
    top: 0;
    right: 0;
    opacity: 0.9;
}

div.pages {
    color: #ffffff;
    width: 98%;
    text-align: center !important;
    background-color: #000000;
}






/* Thread List */
div.thread {
  background-color: #23161d;
  background-image: url('/static/genmu/moonrunes.png');
  border: 2px solid #383838; /* Dark border */
}

div.thread:hover {
  border-color: #ff9900; /* Orange border on hover */
}



/* Image fuggery */
.post-image {
    filter: saturate(40%) brightness(60%) contrast(200%);
    transition: filter 0.3s ease;
}

/*revert to on hover */
.post-image:hover {
    filter: none;
}


</pre></body></html>