style>
            
style>

  :root {
    --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
    --body-bg-image: url('https://sadhost.neocities.org/images/tiles/purplesky.gif');

    /* colors */
    --content: #030303;
  }

    @font-face {
    font-family: "PixelOperator"; 
    src: url("Text/PixelOperator.ttf") format("truetype");
    }


    
   body {
        font-family: "Consolas", "Arial", sans-serif;
        margin: 0;
        background-color: #030303;
        /* you can delete the line below if you'd prefer to not use an image */
        background-size: 500px;
        color: #030303;
        background-image: url(/Imagenes/Paradox.jpg) var("--body-bg-image");
         }

    * {
      box-sizing: border-box;
    }
    body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
        rgba(255,255,255,0.03) 1px,
        transparent 1px
    );
    background-size: 100% 3px;
    pointer-events: none;
}

        


#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a {
    color: #0330aa;
    font-weight: bold;
}

#header {
    width: 100%;
    background-color: #4b607f;
    height: 150px;
    background-image: var(--header-image);
    background-size: 100%;
}

#headerArea {
    line-height: 0;
    position: relative;
    overflow: hidden;
}

#headerArea::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 200%;
    background: linear-gradient(
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0.05) 100%
    );
    animation: scanline 6s linear infinite;
    pointer-events: none;
}

#headerArea img {
    display: block;
}

@keyframes scanline {
    0% { top: -100%; }
    100% { top: 100%; }
}


/* navigation section!! */
#navbar {
    line-height: normal;
    margin: 0;
    height: 40px;
    background: linear-gradient(to bottom, #3a6ea5, #2b579a);
    width: 100%;
}

#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: #feeee1;
    /* 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: #00bfff;
    text-decoration: underline;
}

#flex {
    display: flex;
}

/* IMAGNES */
.connections-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

/* Imagen izquierda */
.connections-decor img {
    display: block;
    margin-left: 15px;
    margin-top: 20px;
}

/* Imagen About */
.about-section {
    text-align: center;
    margin-bottom: 20px;
}

.about-link img {
    max-width: 100%;
    transition: 
        transform 0.25s ease,
        filter 0.25s ease,
        box-shadow 0.25s ease;
}

.about-link img:hover {
    transform: translateY(-3px);
    box-shadow:
        0 0 8px rgba(0,191,255,0.9),
        0 0 16px rgba(0,191,255,0.5);

}



/* SCROLLBOX XP */
/* --- Ventana retro --- */

.retro-window {
    background: #c0c0c0;
    border: 2px solid #000;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #808080;
    width: 100%;
    font-family: Tahoma, sans-serif;
    font-size: 12px;
}

/* Barra superior */

.retro-titlebar {
    background: #000080;
    color: white;
    padding: 3px 6px;
    font-weight: bold;
    font-size: 12px;
}

/* Scrollbox retro */

.retro-scroll {
    height: 160px;
    overflow-y: scroll;
    background: #d4d0c8;
    padding: 6px;
}

/* Lista limpia */

.retro-scroll ul {
    margin: 0;
    padding-left: 15px;
}

.retro-scroll li {
    margin-bottom: 6px;
}

/* DETALLES EXTRA PARA SCROLLRETRO */
.retro-scroll::-webkit-scrollbar {
    width: 16px;
    background: #c0c0c0;
}

.retro-scroll::-webkit-scrollbar-track {
    background: #c0c0c0;
    border-left: 1px solid #808080;
}

.retro-scroll::-webkit-scrollbar-thumb {
    background: #d4d0c8;
    border: 1px solid #808080;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #808080;
}

/* Botones arriba y abajo */

.retro-scroll::-webkit-scrollbar-button {
    height: 16px;
    background: #d4d0c8;
    border: 1px solid #808080;
    box-shadow:
        inset 1px 1px 0 #ffffff,
        inset -1px -1px 0 #808080;
}

/* Quitar flechas modernas */

.retro-scroll::-webkit-scrollbar-button:vertical:decrement,
.retro-scroll::-webkit-scrollbar-button:vertical:increment {
    background-image: none;
}



/* CUADRO XP configuracion y extras */
.xp-window {
    width: 95%;
    margin: 10px auto;
    border: 2px solid #7f9db9;
    background: #ece9d8;
    box-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}

.xp-window:not(.active-window) .xp-body {
    font-size: 14px;
    line-height: 1.5;
}

.xp-titlebar {
    background: linear-gradient(to bottom, #3a6ea5, #2b579a);
    color: white;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.active-window .xp-titlebar {
    box-shadow:
        inset 0 0 6px rgba(0,191,255,0.3),
        0 0 8px rgba(0,191,255,0.2);
}

.xp-buttons {
    display: flex;
    gap: 4px;
}

.xp-btn {
    width: 14px;
    height: 14px;
    background: #d6d3c2;
    border: 1px solid #ffffff;
    box-shadow: inset -1px -1px 0 #7f9db9;
}

.xp-btn.close {
    background: #e06b6b;
}

.xp-body {
    padding: 9px;
    font-size: 14px;
    line-height: 1.4;
    font-size: 13px;
}

.xp-body p:first-child {
    margin-top: 0;
}

.xp-entry {
  border: 2px solid #7f9db9;
  margin-bottom: 14px;
  background: #ece9d8;
  font-family: Tahoma, sans-serif;
  font-size: 13px;
  box-shadow: inset 1px 1px 0 white, inset -1px -1px 0 #b5b2a3;
}

.xp-bar {
  background: linear-gradient(to bottom, #3a6ea5, #2b579a);
  color: white;
  padding: 4px 8px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
}

.xp-date {
  font-size: 11px;
  opacity: 0.9;
}

.xp-content {
  padding: 8px;
  color: #000;
  background: #f6f4ec;
}

.active-window .xp-btn.close {
    box-shadow:
        0 0 6px rgba(255,0,0,0.6);
}

/* Scrollbox XP */

.scrollbox {
    max-height: 175px;  /* controla altura */
    overflow-y: auto;
    background: #f6f4ec;
    padding: 8px;
    border: 1px inset #7f9db9;
}

.scrollbox::-webkit-scrollbar {
    width: 14px;
}

.scrollbox::-webkit-scrollbar-track {
    background: #d6d3c2;
    border-left: 1px solid #7f9db9;
}

.scrollbox::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #3a6ea5, #2b579a);
    border: 1px solid #ffffff;
    box-shadow:
        inset -1px -1px 0 #1f3f7a,
        inset 1px 1px 0 #5c8edc;
}

.scrollbox::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #4b80c9, #356ab8);
}


/* CUADRO CON BOTÓN XP */
.xp-button-container {
    margin-bottom: 15px;
}

.xp-button {
    background: linear-gradient(#f6f4ec, #d6d3c2);
    border: 2px outset #7f9db9;
    padding: 6px 16px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
}

.xp-button:hover {
    border-style: inset;
}

.little-window {
    width: 60%;
    margin: 10px auto;
}

.little-body {
    text-align: center;
}

.status-line {
    font-size: 12px;
    margin-bottom: 10px;
}

.status-active {
    color: green;
    font-weight: bold;
}

.xp-button-group {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}


/* this colors BOTH sidebars
if you want to style them separately,
create styles for #leftSidebar and #rightSidebar */
aside {
    background: linear-gradient(to bottom, #3a6ea5, #2b579a);
    width: 200px;
    padding: 20px;
    font-size: 12px;
    border-left: 2px solid #7f9db9;
}

main {
    overflow-x: hidden;
    background-color: #f4f1e4;
    flex: 1;
    padding: 20px;
    order: 2;
    border: 2px solid #7f9db9;
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
}

main p {
    line-height: 1.6;
}

/* BUTTONS */
.button-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.button-grid img {
    display: block;
    transition: transform 0.2s ease;
}

.button-grid img:hover {
    transform: scale(1.05);
}

/* SIDEBARS */

#leftSidebar {
    order: 1;
}

#rightSidebar {
    order: 3;
}
.sidebar-section {
    margin-bottom: 15px;
}

.sidebar-section h2 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0,191,255,0.5);
}

.sidebar-box {
    background: #0000AA;
    border: 2px solid #000080;
    padding: 10px;
    font-size: 12px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li {
    margin-bottom: 6px;
}

#rightSidebar a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

#rightSidebar a:hover {
    text-shadow:
        0 0 6px rgba(0,191,255,0.8),
        0 0 12px rgba(0,191,255,0.5);
}


/* TEXT */
footer {
    background-color: #eeee;
    /* background color for footer */
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
    /* this centers the footer text */
}

h1{
    color: #053154;
 }

h2,
h3 {
     color: #eeee;
}

h1 {
    font-size: 25px;
}

h1 {
    font-size: 25px;
}

strong {
    /* this styles bold text */
    color: #053154;
}

/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #eeee;
    border: 1px solid #0330aa;
    padding: 10px;
}

/* CSS for extras */
#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #eeee;
}

/* CONTADOR */
.counter-box {
    text-align: center;
    margin: 10px 0;
}
.counter-body {
    background: #ffffff;
    border: 2px inset #7f9db9;
    padding: 6px;
}

/* STAMPS */
.stamp-slider {
    width: 100%;
    overflow: hidden;
    position: 100%;
}

.stamp-track {
    display: flex;
    width: max-content;
    animation: scrollStamps 35s linear infinite;
}

.stamp-track img {
    margin-right: 8px;
    vertical-align: middle;
}

/* Animación */
@keyframes scrollStamps {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* NOTEBOOK */
.full-notebook {
    width: 100%;
    background: #f4f4f4;
    padding: 40px 0;
    display: grid;
    place-items: center; /* centra horizontal y vertical */
    justify-content: center;
}

.notebook-page {
    width: 750px;
    margin: 0 auto;
    background: repeating-linear-gradient(
        to bottom,
        #ffffff,
        #ffffff 24px,
        #e6e6e6 25px );
    border: 2px solid #000;
    box-shadow:
        6px 6px 0 #000,
        inset 0 0 0 1px #ccc;
    padding: 50px;
    font-family: "PixelOperator", monospace;
    position: relative;
}

.notebook-header {
    position: relative;
    align-items: flex-start;
    margin-bottom: 30px;
}

/* TEXTO */
.entry-text {
    line-height: 1.8;
    font-size: 15px;
    max-width: 600px;
}

/* IMAGEN */
.entry-image img {
    float: right;
    margin-left: 20px;
    width: 260px;
    height: auto;
    object-fit: contain;
    background: transparent;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox img {
    max-width: 600px;
    max-height: 80vh;
    filter: grayscale(100%);
    border: 3px solid #fff;
}

.lightbox:target {
    opacity: 1;
    pointer-events: auto;
}

.close {
    position: absolute;
    inset: 0;
}

/* BOTONES RETRO BN */
.entry-navigation {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.entry-navigation a {
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    padding: 6px 12px;
    background: #fff;
}

.entry-navigation a:hover {
    background: #000;
    color: #fff;
}

/* INFOBOX */
.system-notes {
    width: 750px;
    margin: 25px auto 0 auto;
    display: flex;
    gap: 20px;
}

.system-note {
    flex: 1;
    padding: 12px;
    font-size: 13px;
    border: 2px solid #000;
    opacity: 0.85;
}

.black-system {
    background: #111;
    color: #fff;
}

.white-system {
    background: #f2f2f2;
    color: #000;
}

/* 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%;
    }

    /* 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;
    }
    
}
