 /* =============== SYSTEM COLOR PALETTE =============== */
        :root {
            --win-bg: #c0c0c0;
            --win-light: #ffffff;
            --win-dark: #808080;
            --win-darker: #404040;
            --win-text: #000000;
            --win-blue: #000080;
            --win-teal: #008080;
            --win-green: #008000;
            
            /* Pastel palette */
            --pastel-blue: #abd4eb;
            --pastel-pink: #f6c6d8;
            --pastel-green: #c2e6cc;
            --pastel-yellow: #fcf3c4;
            --pastel-purple: #d8c6f6;
            
            /* System fonts */
            --pixel-font: /* 'MS Sans Serif', 'Arial', sans-serif; */
            --terminal-font: 'Courier New', monospace;
        }

        /* =============== SYSTEM DEFAULTS =============== */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            image-rendering: pixelated;
        }

        body {
            background-image: url('/ocs_files/gifs/space.gif');

            color: white;
            text-shadow: -2px 0 blue, 0 2px blue, 2px 0 blue, 0 -2px blue;";
            font-family: var(--pixel-font);
            font-size: 17px;
            padding: 15px;
            position: relative;
            min-height: 100vh;
        }
        
        

        /* Background decoration */
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/30/30');
            opacity: 0.05;
            pointer-events: none;
            z-index: -1;
        }
        
        a:link {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: red;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
		
	::selection {
  background-color: red; 
  color: blue;              
}

        /* =============== WINDOW CONTROLS =============== */
        .window {
            background-color: var(--win-bg);
            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
            position: relative;
            
            width: 1150px;
            
            
            
            left: 0;
            right: 0;
    
            margin: auto;
        }
        
         .window2 {
            background-color: var(--win-bg);
            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            margin-bottom: 15px;
            position: relative;
        }
        
        

        .window-inner {
            border: 2px solid var(--win-bg);
            border-right-color: var(--win-dark);
            border-bottom-color: var(--win-dark);
            padding: 2px;
            
            
        }

        .window-decoration {
            position: absolute;
            width: 26px;
            height: 26px;
            background-image: url('/api/placeholder/26/26');
            z-index: 10;
        }

        .window-decoration.top-left {
            top: -10px;
            left: -10px;
            transform: rotate(-15deg);
        }

        .window-decoration.top-right {
            top: -8px;
            right: 10px;
            
            transform: rotate(15deg);
        }

        .window-decoration.bottom-left {
            
            bottom: 80px;
            left: -220px;
            transform: rotate(-30deg);
        }

        .window-decoration.bottom-right {
            bottom: 150px;
            right: -50px;
            transform: rotate(22deg);
        }

        .title-bar {
            background: #0000ff;
            color: var(--win-text);
            background-image: url('/index_files/dividers/meat2.webp');
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 3px 3px 3px 6px;
            font-weight: bold;
        }

        .title-bar.active {
            background: blue;
       background-image: url('/index_files/dividers/meat2.webp');

            color: var(--win-light);
        }

        .title-bar-icon {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }

        .title-text {
            display: flex;
            align-items: center;
            color:white;
        }

        .window-controls {
            display: flex;
            color:black;
            text-shadow: none;
        }

        .window-button {
            width: 16px;
            height: 14px;
            background-color: var(--win-bg);
            border: 1px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            margin-left: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-family: sans-serif;
        }

        .window-button:active {
            border: 1px solid var(--win-darker);
            border-right-color: var(--win-light);
            border-bottom-color: var(--win-light);
        }

        .window-content {
            background-color: var(--win-bg);
            padding: 8px;
            overflow: auto;
			
        }

        .floating-window {
            position: absolute;
            
            z-index: 100;
        }

        /* =============== START BAR =============== */
        .taskbar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: var(--win-bg);
            background-image: url('/index_files/dividers/meat2.webp');

            border-top: 2px solid var(--win-light);
            display: flex;
            align-items: center;
            padding: 2px;
            z-index: 1000;
        }

        .taskbar::before {
            content: "";
            position: absolute;
            top: -3px;
            left: 0;
            right: 0;
            height: 1px;
            background-color: var(--win-dark);
        }

        .start-button {
            background-color: var(--win-bg);
         background-image: url('/index_files/dividers/meat2.webp');

            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            padding: 2px 8px;
            margin-right: 6px;
            font-weight: bold;
            display: flex;
            align-items: center;
        }

        .start-button:active {
            border: 2px solid var(--win-darker);
            border-right-color: var(--win-light);
            border-bottom-color: var(--win-light);
        background-image: url('/index_files/dividers/meat2.webp');

        
        }

        .start-button img {
            width: 16px;
            height: 16px;
            margin-right: 4px;
        }

        .taskbar-buttons {
            display: flex;
            flex: 1;
        }

        .taskbar-button {
        background-color: var(--win-bg);
         background-image: url('/index_files/dividers/meat2.webp');

            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            padding: 2px 8px;
            margin-right: 4px;
            display: flex;
            align-items: center;
            max-width: 150px;
            overflow: hidden;
            white-space: nowrap;
            text-overflow: ellipsis;
        }

        .taskbar-button.active {
            border: 2px solid var(--win-darker);
            border-right-color: var(--win-light);
            border-bottom-color: var(--win-light);
            background-color: var(--win-bg);
         background-image: url('/index_files/dividers/meat2.webp');

        }

        .taskbar-button img {
            width: 16px;
            height: 16px;
            margin-right: 4px;
        }

        .taskbar-tray {
            display: flex;
            align-items: center;
            margin-left: 4px;
        }

        .taskbar-tray-icon {
            width: 16px;
            height: 16px;
            margin-right: 4px;
        }

        .taskbar-time {
            background-color: var(--win-bg);
            background-image: url('/index_files/dividers/meat2.webp');

            border: 2px solid var(--win-darker);
            border-right-color: var(--win-light);
            border-bottom-color: var(--win-light);
            padding: 2px 8px;
            margin-left: 4px;
        }

        /* =============== START MENU =============== */
        .start-menu {
            position: absolute;
            bottom: 30px;
            left: 0;
            width: 220px;
            background-color: var(--win-bg);
            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            display: none;
        }

        .start-menu-banner {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 30px;
            background: linear-gradient(180deg, var(--pastel-blue), var(--win-blue));
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding-bottom: 10px;
        }

        .start-menu-banner-text {
            color: var(--win-light);
            transform: rotate(-90deg);
            white-space: nowrap;
            font-weight: bold;
            font-size: 16px;
            letter-spacing: 1px;
        }

        .start-menu-items {
            margin-left: 30px;
            padding: 2px;
        }

        .start-menu-item {
            display: flex;
            align-items: center;
            padding: 4px 5px;
        }

        .start-menu-item:hover {
            background-color: var(--win-blue);
            color: var(--win-light);
            cursor: pointer;
        }

        .start-menu-item img {
            width: 24px;
            height: 24px;
            margin-right: 8px;
        }

        .start-menu-divider {
            height: 1px;
            background-color: var(--win-dark);
            margin: 3px 0;
        }

        /* =============== MENU BAR =============== */
        .menu-bar {
            display: flex;
            background-color: var(--win-bg);
            border-bottom: 1px solid var(--win-dark);
            padding: 2px;
        }

        .menu-item {
            padding: 2px 10px;
            margin-right: 1px;
            cursor: pointer;
            position: relative;
        }

        .menu-item:hover {
            background-color: blue;
            color: var(--win-light);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--win-bg);
            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
            z-index: 100;
            min-width: 150px;
            display: none;
        }

        .dropdown-item {
            padding: 4px 10px;
            display: flex;
            align-items: center;
        }

        .dropdown-item:hover {
            background-color: var(--win-blue);
            color: var(--win-light);
        }

        .dropdown-item img {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }

        .dropdown-divider {
            height: 1px;
            background-color: var(--win-dark);
            margin: 3px 0;
        }

        /* =============== DESKTOP ICONS =============== */
        .desktop {
            display: grid;
            grid-template-columns: repeat(auto-fill, 80px);
            grid-gap: 10px;
            padding: 10px;
            margin-bottom: 40px;  /* Space for taskbar */
        }

        .desktop-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            width: 80px;
        }

        .desktop-icon img {
            width: 32px;
            height: 32px;
            margin-bottom: 5px;
        }

        .desktop-icon-label {
            background-color: transparent;
            padding: 2px;
            width: 100%;
        }

        .desktop-icon:hover .desktop-icon-label {
            background-color: var(--win-blue);
            color: var(--win-light);
        }
        
        /* =============== CURSOR OVERRIDES =
        a, button, .button, .window-button, .tab, .menu-item, 
        .dropdown-item, .desktop-icon, .checkbox, .radio,
        .win-alert-close, .start-button, .taskbar-button {
            cursor: url(''), auto !important;
        }
============== */
        
        
        /* =============== TOOLTIP =============== */
        .tooltip {
            position: absolute;
            background-color: var(--pastel-yellow);
            border: 1px solid var(--win-dark);
            padding: 2px 5px;
            font-size: 11px;
            z-index: 1000;
            display: none;
        }

        /* =============== LAYOUT TEMPLATES =============== */
        .content-grid {
            display: grid;
            grid-template-columns: 200px 1fr;
            grid-gap: 10px;
            min-height: 300px;
            position: relative;
        }

        .sidebar {
    background-image: url('/ocs_files/gifs/space.gif');

            border: 1px solid;
            border-color: blue;
            padding: 10px;
            overflow-y: auto;
            position: relative;
        }

        .sidebar::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/150/150');
            opacity: 0.1;
            pointer-events: none;
        }

        .main-content {
            display: grid;
            grid-template-columns:  570px 350px 510px;
            grid-gap: 10px;
			
        }

        .content-column {
            background-image: url('/ocs_files/gifs/space.gif');

            border: 0px solid;
            border-color: blue;
            padding: 10px;
            overflow-y: auto;
            position: relative;
        }

        .content-column::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/200/200');
            opacity: 0.05;
            pointer-events: none;
        }

        .statusbar {
            background-color: var(--win-bg);
            border-top: 1px solid var(--win-dark);
            padding: 3px 8px;
            font-size: 11px;
            display: flex;
            justify-content: space-between;
        }

        .statusbar-section {
            display: flex;
            align-items: center;
        }

        .statusbar-icon {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }

        /* =============== BUTTONS & CONTROLS =============== */
        .button {
            background-color: var(--win-bg);
            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            padding: 4px 10px;
            margin: 5px 0;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }

        .button:active {
            border: 2px solid var(--win-darker);
            border-right-color: var(--win-light);
            border-bottom-color: var(--win-light);
            padding: 5px 9px 3px 11px;
        }

        .button img {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }

        .checkbox {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }

        .checkbox-box {
            width: 13px;
            height: 13px;
            background-color: var(--win-light);
            border: 1px solid var(--win-darker);
            margin-right: 5px;
        }

        .checkbox-box.checked {
            background-image: url('/api/placeholder/11/11');
        }

        .radio {
            display: flex;
            align-items: center;
            margin: 5px 0;
        }

        .radio-button {
            width: 12px;
            height: 12px;
            background-color: var(--win-light);
            border: 1px solid var(--win-darker);
            border-radius: 50%;
            margin-right: 5px;
        }

        .radio-button.selected {
            background-image: url('/api/placeholder/10/10');
            background-position: center;
        }

        /* =============== SCROLLBOX =============== */
        .scrollbox {
            height: 100px;
            overflow-y: auto;
            background-color: ;
            border: 1px solid blue;
            padding: 5px;
            margin: 5px 0;
            position: relative;
        }
        
        .scrollbox::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/100/100');
            opacity: 0.05;
            pointer-events: none;
        }

        .scrollbox-content {
            padding-right: 10px;
            position: relative;
            z-index: 2;
            color:white;
            text-shadow: none;
        }
        
        
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: blue;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: blue;
}
        
        
        

        /* =============== TAB CONTROLS =============== */
        .tabs {
            display: flex;
            margin-top: 10px;
            position: relative;
            z-index: 2;
        }

        .tab {
            background-color: blue;
            border: 2px solid blue;
            border-bottom: none;
            border-right-color: blue;
            padding: 3px 10px;
            margin-right: 2px;
            display: flex;
            align-items: center;
        }

        .tab img {
            width: 16px;
            height: 16px;
            margin-right: 5px;
        }

        .tab.active {
            background-color: black;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

        .tab-content {
            display: none;
            background-color: black;
            border: 2px solid blue;
            border-right-color: blue;
            border-bottom-color: blue;
            padding: 10px;
            margin-top: -2px;
            position: relative;
        }

        .tab-content.active {
            display: block;
        }

        .tab-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/150/150');
            opacity: 0.05;
            pointer-events: none;
        }

        /* =============== IFRAME CONTAINER =============== */
        .iframe-container {
            background-color: var(--win-light);
            border: 2px solid var(--win-dark);
            height: 150px;
            margin: 10px 0;
            position: relative;
        }

        .iframe-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/api/placeholder/50/50');
            opacity: 0.05;
            pointer-events: none;
            z-index: 1;
        }

        iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: relative;
            z-index: 2;
        }

        /* =============== 3D CONTAINER =============== */
        .three-container {
            width: 100%;
            height: 150px;
            background-color: var(--win-light);
            border: 2px solid var(--win-dark);
            margin: 10px 0;
            position: relative;
            overflow: hidden;
        }

        .three-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/api/placeholder/40/40');
            opacity: 0.03;
            pointer-events: none;
            z-index: 1;
        }

        /* =============== ABOUT ME CARD =============== */
        .about-card {
            background-color: var(--pastel-green);
          background-image: url('/index_files/meat.gif');

            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            padding: 10px;
            margin: 10px 0;
            position: relative;
        }

        .about-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/200/200');
            opacity: 0.05;
            pointer-events: none;
        }

        .about-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .about-avatar {
            width: 90px;
            height: 90px;
            background-color: var(--win-light);
            border: 2px solid var(--win-dark);
            margin-right: 10px;
            position: relative;
            overflow: hidden;
        }

        .about-avatar::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 50%);
            pointer-events: none;
        }

        .about-badges {
            display: flex;
            margin-top: 10px;
            justify-content: center;
        }

        .about-badge {
            width: 32px;
            height: 32px;
            margin: 0 5px;
            background-color: var(--win-light);
            border: 1px solid var(--win-dark);
            border-radius: 50%;
            overflow: hidden;
        }

        /* =============== HELPER CLASSES =============== */
        .divider {
            height: 20px;
            background-image: url('/api/placeholder/300/20');
            margin: 10px 0;
            position: relative;
        }

        .divider::before {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            padding: 0 10px;
            background-color: var(--win-bg);
            font-size: 10px;
            color: var(--win-dark);
            white-space: nowrap;
        }

        .divider.divider-star::before {
            content: "★ ★ ★";
        }

        .divider.divider-text::before {
            content: "SECTION DIVIDER";
        }

        .pixel-art {
            font-family: monospace;
            white-space: pre;
            line-height: 1;
            font-size: 12px;
            color: var(--win-text);
            background-color: var(--win-light);
            padding: 5px;
            border: 1px solid var(--win-dark);
            position: relative;
        }

        .pixel-art::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/50/50');
            opacity: 0.05;
            pointer-events: none;
        }

        .hidden {
            display: none;
        }

        .logo-banner {
            display: flex;
            align-items: center;
            justify-content: center;
              background-image: url('/ocs_files/gifs/space.gif');

            background-size: cover;
            height: 80px;
            margin: 10px 0;
            border: 1px solid var(--win-dark);
            position: relative;
            overflow: hidden;
        }

        .logo-banner h2 {
            color: var(--win-light);
            text-shadow: 1px 1px 2px var(--win-darker);
            letter-spacing: 2px;
            position: relative;
            z-index: 2;
        }

        .logo-banner::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('/api/placeholder/20/20');
            opacity: 0.2;
            pointer-events: none;
        }

        .win-alert {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            background-color: var(--win-bg);
            border: 2px solid var(--win-light);
            border-right-color: var(--win-darker);
            border-bottom-color: var(--win-darker);
            box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
            z-index: 2000;
            display: none;
        }

        .win-alert-header {
            background-color: var(--win-blue);
            color: var(--win-light);
            padding: 4px 8px;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .win-alert-body {
            padding: 15px;
            display: flex;
            align-items: center;
        }

        .win-alert-icon {
            width: 32px;
            height: 32px;
            margin-right: 15px;
        }

        .win-alert-buttons {
            padding: 0 15px 15px;
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        /* =============== VISITOR COUNTER =============== */
        .counter {
            background-color: blue;
            border: 2px solid blue;
            border-right-color: var(--win-light);
            border-bottom-color: var(--win-light);
            padding: 5px;
            text-align: center;
            font-family: var(--terminal-font);
            margin: 10px 0;
            position: relative;
        }

        .counter::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/50/20');
            opacity: 0.1;
            pointer-events: none;
        }

        .hit-counter {
            display: flex;
            justify-content: center;
            margin-top: 5px;
        }

        .counter-digit {
            width: 12px;
            height: 20px;
            background-color: blue;
            border: 1px solid var(--win-dark);
            margin: 0 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--terminal-font);
            font-weight: bold;
        }

        /* =============== PROGRESS BAR =============== */
        .progress-container {
            border: 1px solid var(--win-dark);
            background-color:;
            height: 15px;
            margin: 10px 0;
            position: relative;
        }

        .progress-bar {
            height: 100%;
            width: 50%;
            background: url('/api/placeholder/20/15');
            background-color: blue;
        }

        .progress-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 10px;
            text-shadow: 1px 1px 0 var(--win-light);
        }

        /* =============== UNDER CONSTRUCTION =============== */
        .construction-banner {
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--pastel-yellow);
            border: 2px solid var(--win-dark);
            padding: 10px;
            margin: 10px 0;
            position: relative;
        }

        .construction-banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/api/placeholder/50/50');
            opacity: 0.1;
            pointer-events: none;
        }

        .construction-icon {
            width: 32px;
            height: 32px;
            margin-right: 10px;
        }

        /* =============== RESPONSIVE DESIGN =============== */
        @media (max-width: 768px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .floating-window {
                display: none;
            }
        }
        
        