
            :root {
    /* Images */
    --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
    --body-bg-image: url('https://panshiko.neocities.org/bg_pxstr.gif');
    /* Colors */
    --bg-deep: #08031A;      /* Darkest background */
    --nav-dark: #13092D;     /* Navbar/Footer/Box background */
    --panel-purple: #43256E; /* Main content background */
    --sidebar-purple: #241445; /* Sidebar background */
    --accent-pink: #ED64F5;  /* neon pink */
    --text-main: #fceaff;    /* Off-white text color */
    --link-hover: #a49cba;   /* Muted purple for hover states */
    --header-fill: #5e4e8c;  /* Default header color */
    --content: #43256E;
                      }
                      
/* SKANLINEZ */

body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    /* The scanline gradient */
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), 
                linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    background-size: 100% 4px, 3px 100%;
    
    z-index: 10; /* Lowered this to 10 */
    pointer-events: none; 
}

/* This tells all images and videos to sit ABOVE the scanlines */
img, img.nobrdr, img.picbrdr, #nobrdr, #picbrdr, img.cage, iframe, .auto-resizable-iframe, .gallery img {
    position: relative; 
    z-index: 20; /* Higher than the scanline's 10 */
}

/* FONTS */

/* Ubuntu Mono */
            @font-face { font-family: UbuntuMono; src: url('https://panshiko.neocities.org/fnt/UbuntuMono-Regular.ttf'); }
            @font-face { font-family: UbuntuMono; src: url('https://panshiko.neocities.org/fnt/UbuntuMono-Bold.ttf'); font-weight: bold; }
            @font-face { font-family: UbuntuMono; src: url('https://panshiko.neocities.org/fnt/UbuntuMono-Italic.ttf'); font-style: italic; }
            @font-face { font-family: UbuntuMono; src: url('https://panshiko.neocities.org/fnt/UbuntuBoldItalic.ttf'); font-style: italic; font-weight: bold; }
/* IF */            
            @font-face { font-family: If; src: url('https://panshiko.neocities.org/fnt/If.ttf'); }

html,body {
 font-family: 'UbuntuMono', sans-serif;
 margin: 0;
 background-color: var(--bg-deep);
 /* you can delete the line below if you'd prefer to not use an image */
 background-size: 65px;
 color: var(--text-main);
 background: var(--body-bg-image);
 background-attachment: fixed;
            }
            
h1, h2, h3, strong {
    color: var(--accent-pink);
    text-shadow: 0 0 8px rgba(237, 100, 245, 0.6);
}

            * { box-sizing: border-box; }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            /* the "container" is what wraps your entire website */
            /* if you want something (like the header) to be Wider than
    the other elements, you will need to move that div outside
    of the container */
            #container {
 max-width: 900px;
 /* this is the width of your layout! */
 /* if you change the above value, scroll to the bottom
      and change the media query according to the comment! */
 margin: 0 auto;
 /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
 color: var(--accent-pink);
 font-weight: bold;
 background-color: transparent; transition: opacity 0.2s;
 /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }
            a:hover { text-decoration: none; opacity: 0.8; }

            #header {
 width: 100%;
 background-color: var(--header-fill);
 /* header color here! */
 height: 150px;
 /* this is only for a background image! */
 /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
 background-image: var(--header-image);
 background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
 height: 40px;
 background-color: var(--nav-dark);
 /* navbar color */
 width: 100%;
 margin-bottom: 10px;
            }

            #navbar ul {
 display: flex;
 padding: 0;
 margin: 0;
 list-style-type: none;
 justify-content: space-evenly;
            }

            #navbar li {
 padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
 color: var(--accent-pink);
 transition: all 0.3s ease-in-out;
 /* navbar text color */
 font-weight: 800;
 text-decoration: none;
 /* this removes the underline */
            }

            /* navigation link when a link is hovered over */
            #navbar li a:hover {
 color: var(--link-hover);
 text-shadow: 0 0 10px var(--accent-pink);
 text-decoration: none;
 
            }

            #flex {
 display: flex;
            }

            /* this colors BOTH sidebars
    if you want to style them separately,
    create styles for #leftSidebar and #rightSidebar */
            aside {
 background-color: var(--sidebar-purple);
 width: 200px;
 padding: 20px;
 font-size: smaller;
 margin-left: 10px;
 /* this makes the sidebar text slightly smaller */
            }


            /* this is the color of the main content area,
    between the sidebars! */
            main {
 background-color: rgba(67, 37, 110, 0.85); /* Added 'a' for alpha transparency */
 backdrop-filter: blur(1px); /* Blurs the background behind the panel */
 border: 1px solid rgba(237, 100, 245, 0.2); /* A very thin neon border */
 flex: 1;
 padding: 20px;
 order: 2;

            }

            /* what's this "order" stuff about??
    allow me to explain!
    if you're using both sidebars, the "order" value
    tells the CSS the order in which to display them.
    left sidebar is 1, content is 2, and right sidebar is 3! */

             #leftSidebar {
 order: 1;
            }

            #rightSidebar {
 order: 3;
            }

            footer {
 background-color: var(--nav-dark);
 /* background color for footer */
 width: 100%;
 height: 40px;
 padding: 10px;
 text-align: center;
 margin-top: 10px;
 /* this centers the footer text */
            }

            h1, h2, h3 { color: var(--accent-pink); }
            h1 { font-size: 25px; }

            strong {
 /* this styles bold text */
 color: var(--accent-pink); }

            /* this is just a cool box, it's the darker colored one */
            .box {
 background-color: var(--nav-dark);
 border: 1px solid var(--accent-pink);
 padding: 5px;
 object-fit: contain;
 max-width: 100%;
 max-height: 100%;
 width: auto;
 height: auto; }

            /* CSS for extras */

            #topBar {
 width: 100%;
 height: 30px;
 padding: 10px;
 font-size: smaller;
 background-color: var(--nav-dark);
 background-image: url("https://panshiko.neocities.org/img/palflags.png");
 background-repeat: repeat-x; }
            
    #picbrdr, img.picbrdr {
        object-fit: contain;
        margin-left: 0px;
        margin-right: 10px;
        margin-top: 1px;
        margin-bottom: 1px;
        border: 5px groove var(--accent-pink);
        max-width:100%;
        max-height:100%;
        

    }
        
    #nobrdr, img.nobrdr {
        object-fit: contain;
        border: none;
        max-width:100%;
        max-height:100%; }
            
            .center {
 display: block;
 margin-left: auto;
 margin-right: auto;
 margin-top: 25px;
            }


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
 #flex {
     flex-wrap: wrap;
 }

 aside {
     width: 100%;
     background-color: rgba(67, 37, 110, 0.85); /* Added 'a' for alpha transparency */
    backdrop-filter: blur(5px); /* Blurs the background behind the panel */
    border: 1px solid rgba(237, 100, 245, 0.2); /* A very thin neon border */
 }

 /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
 main {
     order: 1;
 }

 #leftSidebar {
     order: 2;
 }

 #rightSidebar {
     order: 3;
 }

 #navbar ul {
     flex-wrap: wrap;
 }
            }
            
  /* responsive youtube embeds */
            
  .auto-resizable-iframe {
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
  margin: 0px auto;
}

.auto-resizable-iframe > div {
  position: relative;
  padding-bottom: 75%;
  height: 0px;
}

.auto-resizable-iframe iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* oversize imgs fit but never stretch its container */

img.cage {
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

/* responsive image gallery */

div.gallery {
  border: 5px groove var(--accent-pink);
}

div.gallery:hover {
  border: 5px solid var(--accent-pink);
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 6px 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* marquee stuff */

.marquee {
  overflow: hidden;
  white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

.scrolling {
  animation: marquee 35s linear infinite;
  display: flex;
  padding-right: 5px;
  animation-delay: -13s;
  padding-left: 5px;
  width: fit-content;
  position: relative;
  transform: translate3d(var(--move-initial), 0, 0);
  animation-play-state: running;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to { 
    transform: translateX(-1650%);
  }
  
  }
  
/*  .scrolling:hover {
   animation-play-state: paused;
}

*/

pre {
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */
}

#statuscafe {
    padding: .5em;
    background-color: var(--nav-dark);
    border: 0px solid midnightblue;
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #08031A;
}

::-webkit-scrollbar-thumb {
    background: var(--panel-purple);
    border: 2px solid var(--accent-pink);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}