/* biwaqo - 2026 sept.
do not copy/redistribute/use as a base. */

body {
 background-color: whitesmoke;
 color: saddlebrown;
 font-family: arial;
 font-size: 13px;
 text-align: left;
 scroll-behavior: smooth;
 overflow-y: scroll;
 overflow-x: hidden;
 padding-top: 15px;
}

body, html, a, a:link, a:active, a:visited, .tab, .tab button, .sidebar, .tabcontent, .footer, .crt::before {
  cursor: url("/images/cursor_main.png"), auto;
  pointer-events: auto;
}

a:hover, select, .tab button:hover {
  cursor: url("/images/cursor_hover.png"), auto;
  pointer-events: auto;
}

p, span, h1, h2, h3, h5, h6, mark, [contenteditable] {
    cursor: url("/images/cursor_text.png"), auto;
}

hr {
 border-top: dashed 1px goldenrod;
 margin-top:-5px;
 width: 20%;
}

a {
 color:dodgerblue;
 text-decoration: none;
 font-weight: bold;
}

a:hover {
 color: transparent;
 text-shadow: 0px 0px 2px dodgerblue;
}

/* content */

.tab button {
 background-color:transparent;
 border:none;
 color:dodgerblue;
 text-decoration: none;
 font-weight: bold;
 font-size:13px;
 font-family:arial;
 text-align:left;
 display:inline;
 outline:none;
 cursor:pointer;
}

.tab button:hover {
 color: transparent;
 text-shadow: 0px 0px 2px dodgerblue;
}

.tabcontent {
 display:none;
 width: 350px;
 height: 480px;
 margin-left: 4px;
 top:30px;
 right:30px;
 background-color: whitesmoke;
 overflow-x:hidden;
 overflow-y:scroll;
 border: 1px dashed orangered;
 padding: 15px;
 padding-top:0px;
z-index:1;
}

/* navigate */
.sidebar {
 height: 310px;
 width: 200px;
 position:fixed;
 margin-left: 4px;
 z-index:1;
 top:30px;
 right:30px;
 background-color: whitesmoke;
 overflow-x:hidden;
 overflow-y:scroll;
 padding-top:0px;
 padding:3px;
 border: 1px dashed orangered;
 text-align: center;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 3px;
  height: 7px;
}

::-webkit-scrollbar-track-piece {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: goldenrod;
  border: 1px solid;
  color: goldenrod;
}

/* selection */
img::selection{
  background: transparent;
  color: transparent;
}
img::-moz-selection {
  background: transparent;
  color: transparent;
}
::selection {
  color: transparent;
  text-shadow: 0px 0px 2px lightskyblue;

}
::-moz-selection {
  color: transparent;
  text-shadow: 0px 0px 2px lightskyblue;
}

@media screen and (max-width:800px) {
.sidebar a {
  font-size:13px;
}
.sidebar {
  width:200px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 15px;
  left: 0%;
  top:5px;
  height: 260px;
}
.tabcontent {
  margin-left:2%;
  width: 350px;
  height: 480px;
  margin: 0 auto;
  left: 0%;

}
}

/*crt*/
  .crt::before {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
  opacity:0.3;
}

.crt::after {
  content: " ";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

.footer {
  width: 100%;
  align-content: center;
  text-align: center;
  margin-top: 0px;
  padding: 0px;
  background-color: whitesmoke;
  font-size: 10px;
  color: goldenrod;
  box-sizing: border-box;
  position: fixed;
  left: 0;
  bottom: 0;
}