/* Custom fonts are included in the .zip file, download fonts to your own host and update file paths. */

@font-face {
	font-family: "w95f";
	src: url("fonts/w95f.woff2") format("woff2"),
       url("fonts/w95f.woff") format("woff");
}



/* The Basics */
  
* {
	box-sizing: border-box;
}

/* Shared sizes. --taskbar-h changes in the mobile media query at the bottom. */
:root {
	--taskbar-h: 30px;
	--taskbar-total: calc(var(--taskbar-h) + env(safe-area-inset-bottom, 0px));
	--retro-scroll-w: 16px;
}

/* Removes the 300ms double-tap delay on touch devices. */
a,
button,
select,
input,
label {
	touch-action: manipulation;
}


body {
	margin: 0;
	background: #e6e6e6 url("https://itinerae.neocities.org/premium/demo/itiOS/greynoise.webp");
	padding: 20px;
	font-family: "w95f",  Arial, "Courier new", monospace;
	letter-spacing: 1px;
	font-size: 13px;
	color: #8b8b8b;
	text-shadow: 0 0 1px #bbb;
	position: relative;
	line-height: 1.2;
	overflow: auto;
	-webkit-tap-highlight-color: transparent;
}
  
button,
input,
select,
textarea {
  font: inherit;
}
  

a:link,
a:visited,
a:active {
	color: #555;
	text-decoration: none;
}

a:hover {
	color: #999;
}
  
  

/* SITE NAME / note on the right */

.desktop-note {
	position: fixed;
	right: 50px;
	top: 50px;
	width: 150px;
	padding: 8px;
	background: rgba(255,255,255,0.85);
	border: 3px double #b8b8b8;
	color: #888;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
	box-shadow: inset 1px 1px #fff,
    inset -1px -1px #c9c9c9;
}

.desktop-note-welcome {
	display: block;
	margin-bottom: 2px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #888;
}

.desktop-note-title {
	display: block;
	font-size: 18px;
	line-height: 0.9;
	letter-spacing: 2px;
	color: #777;
	text-shadow: 1px 1px #fff,
    -1px 0 #d6d6d6;
}

.desktop-note-refresh {
	display: inline-block;
	margin-top: 8px;
	padding: 2px 5px 1px 5px;
	background: #d9d9d9;
	border: 1px solid #aaa;
	box-shadow: inset 1px 1px #fff,
    inset -1px -1px #bbb;
	color: #777;
	font-size: 11px;
	letter-spacing: 1px;
}

.desktop-note-line {
	display: block;
	height: 0px;
	border-bottom: 1px solid #ddd;
	margin: 8px 0px 6px 0px;
}

.desktop-note-text {
	display: block;
	padding: 0 4px;
	font-size: 12px;
	line-height: 1.5;
	color: #888;
}


  
  
/* DESKTOP ICONS */
.desktop-icons {
	position: fixed;
	top: 40px;
	left: 20px;
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.desktop-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	color: #888;
	font-size: 13px;
	text-shadow: 0 0 1px #bbb;
	cursor: pointer;
}

.desktop-icon img {
	height: 30px;
	margin-bottom: 8px;
	filter: grayscale(100%);
	opacity: 0.4;
	image-rendering: pixelated;
}

.desktop-icon:hover img {
	opacity: 0.60;
	transform: translateY(-1px);
}

.desktop-icon:hover {
	color: #555;
}
    
  
  
  
/* DESKTOP WINDOWS */
.app-window {
	position: absolute;
	padding: 3px;
	background: #eaeaea;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	box-shadow: inset -1px -1px #404040,
    inset 1px 1px #ffffff,
    inset -2px -2px #808080,
    inset 2px 2px #ffffff;
}

.app-window.active {
	box-shadow: inset -1px -1px #4f4f4f,
    inset 1px 1px #f5f5f5,
    inset -2px -2px #8f8f8f,
    inset 2px 2px #ffffff,
    2px 2px 5px rgba(0,0,0,0.25);
}


.app-window {
  transform-origin: center center;
}

.app-window.minimizing {
  pointer-events: none;
  opacity: 0;
  transform: translateY(45px) scale(0.85);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.app-window.restoring {
  opacity: 0;
  transform: translateY(25px) scale(0.96);
}

/* Fullscreen (maximize button). !important is needed to beat the inline
   position/size styles every window carries. */
.app-window.fullscreen {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: calc(100% - var(--taskbar-total)) !important;
}

.app-window.fullscreen .window-header {
	cursor: default;
}

/* Window titlebar */
.window-header {
	padding: 2px 2px 2px 3px;
	height: 18px;
	border-bottom: 1px solid #fff;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	cursor: move;
	box-sizing: border-box;
	flex: 0 0 auto;
	touch-action: none; /* lets the drag logic own touch gestures */
	user-select: none;
	-webkit-user-select: none;
}

/* Inactive titlebar */
.app-window .window-header {
	background: linear-gradient(90deg, #bfbfbf, #e5e5e5);
}

/* Active titlebar */
.app-window.active .window-header {
	background: linear-gradient(90deg, #808080, #c0c0c0);
}
  
  
/* Title text inside the titlebar */
.window-title {
	font-weight: bold;
	color: #fff;
	font-size: 13px;
	line-height: 14px;
	padding-top: 1px;
	margin-left: 4px;
	user-select: none;
}

  
  

/* Min / Max / Close buttons */
.window-buttons {
	display: flex;
	align-items: stretch;
}

.window-buttons button {
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	min-width: 16px;
	min-height: 14px;
	width: 16px;
	height: 14px;
	padding: 0;
	margin: 0;
	background-color: #c0c0c0;
	box-shadow: inset -1px -1px #0a0a0a,
    inset 1px 1px #ffffff,
    inset -2px -2px grey,
    inset 2px 2px #dfdfdf;
	cursor: pointer;
}

.window-buttons button:active {
	box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #0a0a0a,
    inset -2px -2px #dfdfdf,
    inset 2px 2px grey;
}

.window-buttons button:focus {
	outline: none;
}

.window-buttons button + button {
	margin-left: 1px;
}

.btn-min {
	background-image: url("https://itinerae.neocities.org/premium/demo/itiOS/minimizebutton.svg");
	background-repeat: no-repeat;
	background-position: bottom 3px left 3px;
}

.btn-max {
	background-image: url("https://itinerae.neocities.org/premium/demo/itiOS/maximizebutton.svg");
	background-repeat: no-repeat;
	background-position: top 2px left 3px;
}

.btn-close {
	background-image: url("https://itinerae.neocities.org/premium/demo/itiOS/closebutton.svg");
	background-repeat: no-repeat;
	background-position: top 3px left 4px;
}
  
  
  

/* Window content section */
.window-content {
	margin: 8px;
	flex: 1;
	min-height: 0;
	position: relative; /* anchors the custom scrollbar */
}

.content-box {
	background: #fff;
	border: 1px solid #999;
	box-shadow: inset 1px 1px #ffffff, inset -1px -1px #ffffff;
	padding: 10px;
	overflow-y: auto;
	box-sizing: border-box;
	height: 100% !important;
	overscroll-behavior: contain;
	/* The native scrollbar is hidden here; the custom retro scrollbar
	   (touch-friendly, works on mobile too) replaces it. */
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.content-box::-webkit-scrollbar {
	width: 0;
	height: 0;
	display: none;
}

/* Leaves room for the custom scrollbar when the content overflows. */
.content-box.has-scrollbar {
	margin-right: calc(var(--retro-scroll-w) + 2px);
}

.content-box ul li {
	margin-bottom: 14px;
}
  
  
  
  
/* Hidden dynamic window sources */
.window-source {
	display: none;
}
 
  
  

  
/* ABOUT ME - profile section */
.profile-top {
	margin-bottom: 8px;
	padding-bottom: 8px;
	border-bottom: 1px dotted #aaa;
}

.profile-name {
	display: block;
	margin-bottom: 3px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	letter-spacing: 2px;
	color: #777;
	text-shadow: 1px 1px #fff;
	text-align: center;
}

.profile-text {
	margin: 0;
}

.profile-status {
	clear: both;
	margin-top: 8px;
	padding: 6px;
	background: #f3f3f3;
	border: 1px solid #b7b7b7;
	box-shadow: inset 1px 1px #fff,
    inset -1px -1px #d0d0d0;
}

.profile-row {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	padding: 3px 0;
	border-bottom: 1px dotted #c8c8c8;
}

.profile-row:last-child {
	border-bottom: 0;
}

.profile-row b {
	color: #777;
}

.profile-links {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-top: 8px;
}

.profile-links a {
	display: inline-block;
	padding: 3px 6px;
	background: #d9d9d9;
	border: 1px solid #aaa;
	box-shadow: inset 1px 1px #fff,
    inset -1px -1px #bbb;
	color: #666;
	font-size: 10px;
}

.profile-links a:hover {
	background: #cfcfcf;
	color: #333;
}
  



 /* IMAGE example  */
 .window-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: grayscale(70%);
	opacity: 0.5;
}
  
  
  

/* CD PLAYER  */
.cd-player-wrap {
	height: 100%;
	box-sizing: border-box;
	display: flex;
	gap: 8px;
	align-items: stretch;
	background: #d3d1d1;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040;
	padding: 6px;
}

.cd-cover {
	width: 110px;
	height: 110px;
	flex-shrink: 0;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040;
	background: #999;
}

.cd-cover img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	filter: grayscale(100%);
	opacity: 0.85;
}

.cd-panel {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.cd-select {
	width: 95%;
	height: 24px;
	font-size: 11px;
	padding-right: 18px;
	border: 1px solid #808080;
	background: #fff;
	box-shadow: inset 1px 1px #808080,
    inset -1px -1px #ffffff;
	letter-spacing: 0.5px;
}

.cd-time-row {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #000;
	font-size: 12px;
	margin: 8px 0 8px;
}

.cd-progress {
	flex: 1;
    width:95%;
	height: 4px;
	appearance: none;
	-webkit-appearance: none;
	background: #c0c0c0;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #404040,
    inset -1px -1px #ffffff;
}

.cd-progress::-webkit-slider-thumb {
	appearance: none;
	-webkit-appearance: none;
	width: 8px;
	height: 18px;
	background: #c0c0c0;
	border: 1px solid #000;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #808080;
	cursor: pointer;
}

.cd-progress::-moz-range-thumb {
	width: 8px;
	height: 18px;
	background: #c0c0c0;
	border: 1px solid #000;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #808080;
	cursor: pointer;
	border-radius: 0;
}

.cd-buttons {
	display: flex;
	gap: 10px;
	margin-top: auto;
}

.cd-btn {
	width: 48px;
	height: 28px;
	border: 1px solid #808080;
	background: #c0c0c0;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040;
	font-size: 14px;
	line-height: 1;
	cursor: pointer;
	color: #000;
}

.cd-btn:active {
	box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #404040;
}

.cd-btn.playing {
	font-size: 13px;
}
  
  
  
  


/* TASKBAR */
#taskbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: var(--taskbar-total);
	background: #c0c0c0;
	border-top: 1px solid #ffffff;
	box-shadow: inset 0 1px #808080;
	display: flex;
	align-items: center;
	padding: 0 5px env(safe-area-inset-bottom, 0px) 5px;
	gap: 4px;
	z-index: 1000;
}
  
/* Clock */
#taskbar-clock {
	font-size: 12px;
	padding: 2px 6px;
	background: #c0c0c0;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040;
	color: #000;
}
  
  
/* Taskbar windows */
#taskbar-windows {
	flex: 1;
	display: flex;
	gap: 4px;
	margin-left: 6px;
	min-width: 0;
}


/* Taskbar buttons */
.taskbar-btn {
	font-size: 13px;
	letter-spacing: 1px;
	background: #c0c0c0;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040;
	color: #000;
	padding: 2px 6px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 150px;
}

.taskbar-btn:hover {
	background: #d4d0c8;
}

.taskbar-btn:active {
	transform: translateY(1px);
}

.taskbar-btn.active {
	background: linear-gradient(90deg, #a0a0a0, #c8c8c8);
	color: black;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #808080;
} 
  
  
  

  

/* START BUTTON */
#start-btn {
	background: #c0c0c0;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040;
	color: #000;
	padding: 2px 6px;
	cursor: pointer;
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 2px;
}

#start-btn.active {
	box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #404040;
}






/* START MENU */
#start-menu {
	position: fixed;
	bottom: var(--taskbar-total);
	left: 0;
	width: 220px;
	background: #c0c0c0;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040,
    2px 2px 6px rgba(0,0,0,0.4);
	padding: 3px;
	padding-left: 30px;
	display: none;
	z-index: 1001;
	font-size: 13px;
}

#start-menu .sm-list,
#start-menu .sm-sub {
	list-style: none;
	margin: 0;
	padding: 2px;
}

#start-menu .sm-item {
	position: relative;
	margin: 0;
	padding: 0;
}

#start-menu .sm-link {
	display: grid;
	grid-template-columns: 26px 1fr 14px;
	align-items: center;
	column-gap: 6px;
	padding: 6px 6px;
	color: #000;
	text-decoration: none;
	white-space: nowrap;
	user-select: none;
}

#start-menu .sm-ico {
	height: 22px;
	width: 22px;
	filter: grayscale(100%);
	opacity: 0.7;
}

#start-menu .sm-text {
	line-height: 1;
}

#start-menu .sm-arrow {
	justify-self: end;
	font-size: 10px;
	line-height: 1;
	margin-top: 1px;
	opacity: 0.9;
}

#start-menu .sm-sep {
	height: 1px;
	margin: 4px 2px;
	background: #808080;
	box-shadow: 0 1px #ffffff;
}

#start-menu .sm-link:hover,
#start-menu .sm-item:hover > .sm-link {
	background: linear-gradient(#808080,#404040);
	color: #ffffff;
	filter: grayscale(100%);
}

#start-menu .sm-link:hover .sm-ico,
#start-menu .sm-item:hover > .sm-link .sm-ico {
	filter: none;
}

#start-menu .has-sub > .sm-sub {
	position: absolute;
	left: calc(100% - 3px);
	top: -3px;
	min-width: 220px;
	background: #c0c0c0;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040,
    2px 2px 6px rgba(0,0,0,0.35);
	display: none;
	z-index: 1002;
}

/* Flyout on hover only on devices that actually hover (desktop). */
@media (hover: hover) and (min-width: 701px) {
	#start-menu .has-sub:hover > .sm-sub {
		display: block;
	}
}

/* Tap/click toggle (works on touch and desktop). */
#start-menu .has-sub.open > .sm-sub {
	display: block;
}

  
  
/* Vertical Title on the Start menu */
.start-sidebar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 28px;
	background: linear-gradient(#808080,#404040);
	border-right: 1px solid #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	padding-bottom: 8px;
}


.start-sidebar span {
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	font-size: 13px;
	color: #ffffff;
	font-weight: bold;
	letter-spacing: 1px;
}

  
  
  
  
/* CUSTOM RETRO SCROLLBAR
   Added by script.js to every window whose content overflows.
   Works with mouse AND touch, and keeps the 98 look on mobile
   (where native styled scrollbars don't render). */
.retro-scroll {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: var(--retro-scroll-w);
	display: none;
	flex-direction: column;
	touch-action: none;
	user-select: none;
	-webkit-user-select: none;
	z-index: 2;
}

.retro-scroll.visible {
	display: flex;
}

.retro-scroll-btn {
	flex: 0 0 auto;
	width: 100%;
	height: var(--retro-scroll-w);
	padding: 0;
	border: none;
	border-radius: 0;
	background-color: #cccccc;
	box-shadow: inset -1px -1px #0a0a0a,
    inset 1px 1px #ffffff,
    inset -2px -2px grey,
    inset 2px 2px #dfdfdf;
	background-repeat: no-repeat;
	background-position: center;
	image-rendering: pixelated;
	cursor: pointer;
}

.retro-scroll-btn:active {
	box-shadow: inset -1px -1px #ffffff,
    inset 1px 1px #0a0a0a;
	background-position: calc(50% + 1px) calc(50% + 1px);
}

.retro-scroll-btn.up {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGklEQVR4AWMYxuA/SYphmETFhDX9x4mHGQAAcL4P8dQiMq8AAAAASUVORK5CYII=");
}

.retro-scroll-btn.down {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAF0lEQVQY02NgoBf4jwJxSOHQhcNAOgMAWWAP8Rv2U3UAAAAASUVORK5CYII=");
}

.retro-scroll-track {
	position: relative;
	flex: 1;
	min-height: 20px;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAAFElEQVQIW2M4fPz0////GYAYyAIASnoKpV3w4kgAAAAASUVORK5CYII=");
	image-rendering: pixelated;
	filter: grayscale(100%);
}

.retro-scroll-thumb {
	position: absolute;
	left: 0;
	width: 100%;
	min-height: 24px;
	background-color: #cccccc;
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	box-shadow: inset 1px 1px 0 0 white,
    inset -1px -1px 0 0 #868a8e;
	cursor: grab;
}




/* BLOG */
.blog-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.blog-list a {
	display: block;
	padding: 6px 8px;
	background: #f3f3f3;
	border: 1px solid #b7b7b7;
	box-shadow: inset 1px 1px #fff,
    inset -1px -1px #d0d0d0;
	color: #666;
}

.blog-list a:hover {
	background: #e4e4e4;
	color: #333;
}

.blog-link-date {
	display: block;
	margin-bottom: 2px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #a0a0a0;
}

.blog-link-title {
	font-size: 13px;
}

.blog-post-title {
	margin: 0 0 2px 0;
	font-size: 15px;
	letter-spacing: 1px;
	color: #777;
	text-shadow: 1px 1px #fff;
}

.blog-post-date {
	display: block;
	margin-bottom: 8px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #a0a0a0;
}

.blog-post p {
	margin: 0 0 10px 0;
}

/* A window whose content is a separate page shown in an <iframe>
   (e.g. every blog post). script.js sizes the frame to its content so the
   window's own scrollbar scrolls it. */
.content-box.has-iframe {
	padding: 0;
	overflow-y: auto;
}

.window-frame {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
	background: #ffffff;
}

/* Shown if a framed page fails to load. */
.window-error {
	padding: 14px 10px;
	text-align: center;
	color: #999;
	font-size: 12px;
}

.window-error small {
	color: #b0b0b0;
	word-break: break-word;
}

/* Blog post pages in /blog load this same stylesheet, so they look right both
   on their own AND inside a window's frame. This makes each post a clean white
   sheet and opts out of the desktop's mobile scroll-lock (below) so the post
   can size and scroll normally inside its frame. */
html.blog-doc,
html.blog-doc body {
	height: auto !important;
	min-height: 0 !important;
	overflow: visible !important;
}

body.blog-page {
	background: #ffffff;
	padding: 12px;
}




/* This will appear when pressing SHUT DOWN */
#shutdown-screen {
	position: fixed;
	inset: 0;
	background: #000;
	color: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	z-index: 9999;
}

.shutdown-text {
	text-align: center;
}


  
  

/* SCROLLBARS */
::-webkit-scrollbar {
	width: 16px;
	height: 16px;
}

::-webkit-scrollbar-track {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAAFElEQVQIW2M4fPz0////GYAYyAIASnoKpV3w4kgAAAAASUVORK5CYII=");
	image-rendering: pixelated;
	filter: grayscale(100%);
}

::-webkit-scrollbar-track:active {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAIAAAD91JpzAAAAEElEQVQIW2No6+pjgAAgCwAWogM9VKrgGQAAAABJRU5ErkJggg==");
	filter: grayscale(100%);
}

::-webkit-scrollbar-thumb {
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	box-shadow: inset 1px 1px 0 0 white, inset -1px -1px 0 0 #868a8e;
	width: 16px;
	height: 16px;
	background-color: #cccccc;
	z-index: 1;
}

::-webkit-scrollbar-corner {
	background-color: #cccccc;
}

::-webkit-resizer {
	width: 16px;
	height: 16px;
	background-color: #cccccc;
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAN0lEQVR4Ae3MgQUAMBRDwU5fFF05lb/CARTBw2Ulof0DxPtcwp3hNuEYnjbcEW4TjuFpwx3h9gMWGgZ2Y/PT2gAAAABJRU5ErkJggg==");
	background-position: bottom right;
	background-repeat: no-repeat;
	image-rendering: pixelated;
}

::-webkit-scrollbar-button,
.scroll::-webkit-scrollbar-button {
	border-top: 1px solid #cccccc;
	border-left: 1px solid #cccccc;
	border-right: 1px solid black;
	border-bottom: 1px solid black;
	box-shadow: inset 1px 1px 0 0 white, inset -1px -1px 0 0 #868a8e;
	display: block;
	width: 16px;
	height: 16px;
	background-color: #cccccc;
	image-rendering: pixelated;
	background-repeat: no-repeat;
	background-position: center center;
}

::-webkit-scrollbar-button:active,
.scroll::-webkit-scrollbar-button:active {
	background-position: 2px 2px;
}

::-webkit-scrollbar-button:horizontal:decrement,
.scroll::-webkit-scrollbar-button:horizontal:decrement {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAHklEQVQY02NgoBT8xyX8H5fwf1zCpOjAYwceV1EEAAO2D/HsQ4vsAAAAAElFTkSuQmCC");
}

::-webkit-scrollbar-button:horizontal:increment,
.scroll::-webkit-scrollbar-button:horizontal:increment {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAHUlEQVQY02NgIB/8xy3xH7fEf9wS/0nUQZqrKAYAK44P8ZRmzLQAAAAASUVORK5CYII=");
}

::-webkit-scrollbar-button:vertical:decrement,
.scroll::-webkit-scrollbar-button:vertical:decrement {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGklEQVR4AWMYxuA/SYphmETFhDX9x4mHGQAAcL4P8dQiMq8AAAAASUVORK5CYII=");
}

::-webkit-scrollbar-button:vertical:increment,
.scroll::-webkit-scrollbar-button:vertical:increment {
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAQAAAD8fJRsAAAAF0lEQVQY02NgoBf4jwJxSOHQhcNAOgMAWWAP8Rv2U3UAAAAASUVORK5CYII=");
}

::-webkit-scrollbar-button:horizontal:increment:start,
.scroll::-webkit-scrollbar-button:horizontal:increment:start,
::-webkit-scrollbar-button:horizontal:decrement:end,
.scroll::-webkit-scrollbar-button:horizontal:decrement:end,
::-webkit-scrollbar-button:vertical:increment:start,
.scroll::-webkit-scrollbar-button:vertical:increment:start,
::-webkit-scrollbar-button:vertical:decrement:end,
.scroll::-webkit-scrollbar-button:vertical:decrement:end {
	display: none;
}

::-webkit-scrollbar-button:active,
.scroll::-webkit-scrollbar-button:active {
	border-top: 1px solid #868a8e;
	border-left: 1px solid #868a8e;
	border-bottom: 1px solid #868a8e;
	border-right: 1px solid #868a8e;
	box-shadow: none;
}


/* ============================================================
   MOBILE (700px and below)
   The desktop becomes app-like: icons in a grid at the top,
   windows stacked and clamped to the screen, and a taller
   taskbar + start menu that behave like a mobile nav bar.
   ============================================================ */
@media (max-width: 700px) {
	:root {
		--taskbar-h: 54px;
		--retro-scroll-w: 22px;
	}

	html,
	body {
		height: 100%;
		overflow: hidden;
	}

	body {
		padding: 0;
	}

	.desktop-note {
		display: none;
	}

	/* Icon grid along the top, like a phone home screen */
	.desktop-icons {
		top: 0;
		left: 0;
		right: 0;
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		gap: 16px 4px;
		padding: 14px 6px 10px 6px;
	}

	.desktop-icon {
		font-size: 11px;
		letter-spacing: 0.5px;
	}

	.desktop-icon img {
		height: 28px;
		margin-bottom: 6px;
	}

	/* Bigger titlebar + touch-sized window buttons */
	.window-header {
		height: 30px;
		padding: 3px;
	}

	.window-title {
		font-size: 14px;
		line-height: 22px;
	}

	.window-buttons button {
		min-width: 30px;
		min-height: 24px;
		width: 30px;
		height: 24px;
	}

	.btn-min,
	.btn-max,
	.btn-close {
		background-position: center;
	}

	/* CD player squeezes onto small screens */
	.cd-cover {
		width: 84px;
		height: 84px;
	}

	.cd-btn {
		height: 34px;
	}

	/* Embedded pages (like Paint) fill their window. Blog posts use
	   .window-frame, which script.js sizes to its content, so exclude it. */
	.content-box iframe:not(.window-frame) {
		width: 100% !important;
		height: 100% !important;
	}

	/* Taskbar as a mobile nav bar */
	#taskbar {
		gap: 6px;
		padding-left: 6px;
		padding-right: 6px;
	}

	#start-btn {
		font-size: 15px;
		padding: 9px 14px;
	}

	#taskbar-windows {
		overflow-x: auto;
		overflow-y: hidden;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	#taskbar-windows::-webkit-scrollbar {
		width: 0;
		height: 0;
		display: none;
	}

	.taskbar-btn {
		flex: 0 0 auto;
		font-size: 14px;
		padding: 9px 10px;
		max-width: 120px;
	}

	#taskbar-clock {
		font-size: 14px;
		padding: 9px 8px;
	}

	/* Start menu as a full-width sheet */
	#start-menu {
		left: 0;
		right: 0;
		width: auto;
		font-size: 16px;
		padding-left: 38px;
		max-height: calc(100vh - var(--taskbar-total) - 40px);
		overflow-y: auto;
	}

	.start-sidebar {
		width: 34px;
	}

	.start-sidebar span {
		font-size: 15px;
	}

	#start-menu .sm-link {
		grid-template-columns: 34px 1fr 18px;
		column-gap: 8px;
		padding: 12px 8px;
	}

	#start-menu .sm-ico {
		width: 26px;
		height: 26px;
	}

	/* Submenus open in place (accordion) instead of flying out
	   to the side, so they never leave the screen. */
	#start-menu .has-sub > .sm-sub {
		position: static;
		min-width: 0;
		margin: 0 4px 4px 30px;
		box-shadow: inset 1px 1px #ffffff,
    inset -1px -1px #404040;
	}
}




/* ============================================================
   THEMES
   Start > Themes sets data-theme on <html>. "Light mode" is the
   default look above (no data-theme needed). The blocks below
   restyle the whole page — desktop, windows, taskbar, Start menu,
   CD player and blog posts — for the other three themes. Blog posts
   load in iframes that share this stylesheet, so script.js copies
   data-theme onto them too.
   ============================================================ */

/* Swatches + active tick in the Themes submenu */
.sm-swatch {
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border: 1px solid #808080;
	box-shadow: inset 1px 1px #ffffff, inset -1px -1px #404040;
}
.swatch-dark      { background: linear-gradient(135deg, #4a4a52 50%, #16161c 50%); }
.swatch-calm      { background: linear-gradient(135deg, #eef1ea 50%, #a6c1b3 50%); }
.swatch-hyperneon { background: linear-gradient(135deg, #ff2bd6 50%, #12f6ff 50%); }

.sm-check {
	justify-self: end;
	font-size: 12px;
	line-height: 1;
}
.theme-option.active-theme .sm-text { font-weight: bold; }


/* ============================================================
   DARK MODE
   ============================================================ */
html[data-theme="dark"] body {
	background: #24242b;
	color: #c6c6cc;
	text-shadow: none;
}
html[data-theme="dark"] a:link,
html[data-theme="dark"] a:visited,
html[data-theme="dark"] a:active { color: #9db8dd; }
html[data-theme="dark"] a:hover { color: #cfe2ff; }

html[data-theme="dark"] .desktop-icon { color: #bdbdc4; text-shadow: 0 0 1px #000; }
html[data-theme="dark"] .desktop-icon img { filter: grayscale(100%) invert(0.86); opacity: 0.75; }
html[data-theme="dark"] .desktop-icon:hover { color: #f0f0f5; }

html[data-theme="dark"] .desktop-note {
	background: rgba(38,38,46,0.92); border-color: #55555f; color: #b8b8c0;
	box-shadow: inset 1px 1px #3a3a44, inset -1px -1px #101015;
}
html[data-theme="dark"] .desktop-note-welcome,
html[data-theme="dark"] .desktop-note-text { color: #a8a8b2; }
html[data-theme="dark"] .desktop-note-title { color: #e2e2ea; text-shadow: 1px 1px #000; }
html[data-theme="dark"] .desktop-note-refresh {
	background: #34343d; border-color: #55555f; color: #c0c0c8;
	box-shadow: inset 1px 1px #4a4a55, inset -1px -1px #17171c;
}

html[data-theme="dark"] .app-window {
	background: #3a3a43;
	box-shadow: inset -1px -1px #0e0e12, inset 1px 1px #5c5c68,
	  inset -2px -2px #1b1b20, inset 2px 2px #4a4a54;
}
html[data-theme="dark"] .app-window.active {
	box-shadow: inset -1px -1px #0e0e12, inset 1px 1px #6a6a78,
	  inset -2px -2px #1b1b20, inset 2px 2px #55555f,
	  2px 2px 8px rgba(0,0,0,0.55);
}
html[data-theme="dark"] .app-window .window-header {
	background: linear-gradient(90deg, #3d3d47, #56565f);
	border-bottom-color: #5c5c66;
}
html[data-theme="dark"] .app-window.active .window-header {
	background: linear-gradient(90deg, #26304a, #46689e);
}
html[data-theme="dark"] .window-title { color: #ececf2; }

html[data-theme="dark"] .content-box,
html[data-theme="dark"] body.blog-page {
	background: #1e1e24; color: #c6c6cc; border-color: #55555f;
	box-shadow: inset 1px 1px #2a2a32, inset -1px -1px #2a2a32;
}
html[data-theme="dark"] .window-frame { background: #1e1e24; }
html[data-theme="dark"] .blog-post-title,
html[data-theme="dark"] .profile-name { color: #e4e4ec; text-shadow: 1px 1px #000; }
html[data-theme="dark"] .blog-post-date { color: #8a8a95; }
html[data-theme="dark"] .blog-list a,
html[data-theme="dark"] .profile-status,
html[data-theme="dark"] .profile-links a {
	background: #2a2a32; border-color: #4a4a55; color: #c2c2ca;
	box-shadow: inset 1px 1px #383843, inset -1px -1px #14141a;
}

html[data-theme="dark"] #taskbar {
	background: #2c2c34; border-top-color: #55555f; box-shadow: inset 0 1px #17171c;
}
html[data-theme="dark"] .taskbar-btn,
html[data-theme="dark"] #taskbar-clock,
html[data-theme="dark"] #start-btn {
	background: #3a3a43; color: #d2d2da; border-color: #55555f;
	box-shadow: inset 1px 1px #56565f, inset -1px -1px #17171c;
}
html[data-theme="dark"] .taskbar-btn.active {
	background: linear-gradient(90deg, #46689e, #6a86b8); color: #fff;
}
html[data-theme="dark"] #start-btn.active {
	box-shadow: inset -1px -1px #56565f, inset 1px 1px #17171c;
}

html[data-theme="dark"] #start-menu {
	background: #2c2c34; border-color: #55555f;
	box-shadow: inset 1px 1px #4a4a55, inset -1px -1px #17171c, 2px 2px 6px rgba(0,0,0,0.6);
}
html[data-theme="dark"] #start-menu .sm-link { color: #d2d2da; }
html[data-theme="dark"] #start-menu .sm-ico { filter: grayscale(100%) invert(0.86); }
html[data-theme="dark"] #start-menu .sm-link:hover,
html[data-theme="dark"] #start-menu .sm-item:hover > .sm-link {
	background: linear-gradient(#46689e, #26304a); color: #fff;
}
html[data-theme="dark"] #start-menu .has-sub > .sm-sub { background: #2c2c34; border-color: #55555f; }
html[data-theme="dark"] #start-menu .sm-sep { background: #17171c; box-shadow: 0 1px #4a4a55; }
html[data-theme="dark"] .start-sidebar { background: linear-gradient(#46689e, #1b2438); }

html[data-theme="dark"] .cd-player-wrap {
	background: #2a2a32; border-color: #17171c;
	box-shadow: inset 1px 1px #4a4a55, inset -1px -1px #0e0e12;
}
html[data-theme="dark"] .cd-cover { border-color: #17171c; }
html[data-theme="dark"] .cd-select {
	background: #1e1e24; color: #c6c6cc; border-color: #17171c;
	box-shadow: inset 1px 1px #17171c, inset -1px -1px #4a4a55;
}
html[data-theme="dark"] .cd-time-row { color: #c6c6cc; }
html[data-theme="dark"] .cd-btn {
	background: #3a3a43; color: #d2d2da; border-color: #17171c;
	box-shadow: inset 1px 1px #56565f, inset -1px -1px #0e0e12;
}
html[data-theme="dark"] .cd-progress { background: #17171c; border-color: #4a4a55; }

html[data-theme="dark"] .retro-scroll-btn {
	background-color: #46464f;
	box-shadow: inset -1px -1px #0e0e12, inset 1px 1px #6a6a75, inset -2px -2px #1b1b20, inset 2px 2px #55555f;
}
html[data-theme="dark"] .retro-scroll-btn.up,
html[data-theme="dark"] .retro-scroll-btn.down { filter: invert(0.9); }
html[data-theme="dark"] .retro-scroll-track { background-image: none; background-color: #17171c; }
html[data-theme="dark"] .retro-scroll-thumb {
	background-color: #46464f; border-color: #6a6a75 #0e0e12 #0e0e12 #6a6a75;
	box-shadow: inset 1px 1px 0 0 #6a6a75, inset -1px -1px 0 0 #101014;
}
html[data-theme="dark"] ::-webkit-scrollbar-track { background-image: none; background-color: #17171c; }
html[data-theme="dark"] ::-webkit-scrollbar-thumb,
html[data-theme="dark"] ::-webkit-scrollbar-button,
html[data-theme="dark"] ::-webkit-scrollbar-corner { background-color: #46464f; border-color: #6a6a75 #0e0e12 #0e0e12 #6a6a75; }
html[data-theme="dark"] ::-webkit-scrollbar-button { filter: invert(0.9); }


/* ============================================================
   CALM
   ============================================================ */
html[data-theme="calm"] body {
	background: #dde3da;
	color: #6f7d72;
	text-shadow: 0 0 1px #eef2ec;
}
html[data-theme="calm"] a:link,
html[data-theme="calm"] a:visited,
html[data-theme="calm"] a:active { color: #5f8377; }
html[data-theme="calm"] a:hover { color: #3f5f54; }

html[data-theme="calm"] .desktop-icon { color: #6f7d72; }
html[data-theme="calm"] .desktop-icon img { filter: grayscale(85%) sepia(12%); opacity: 0.5; }
html[data-theme="calm"] .desktop-icon:hover { color: #46564b; }

html[data-theme="calm"] .desktop-note {
	background: rgba(250,251,247,0.9); border-color: #bfccc0; color: #6f7d72;
	box-shadow: inset 1px 1px #ffffff, inset -1px -1px #cbd6cc;
}
html[data-theme="calm"] .desktop-note-title { color: #5c6f62; text-shadow: 1px 1px #fff; }

html[data-theme="calm"] .app-window {
	background: #e7ece3;
	box-shadow: inset -1px -1px #9aa89c, inset 1px 1px #ffffff, inset -2px -2px #bccabb, inset 2px 2px #fafdf8;
}
html[data-theme="calm"] .app-window.active {
	box-shadow: inset -1px -1px #9aa89c, inset 1px 1px #ffffff, inset -2px -2px #b0c0af, inset 2px 2px #ffffff, 2px 2px 6px rgba(90,110,95,0.28);
}
html[data-theme="calm"] .app-window .window-header { background: linear-gradient(90deg, #bfcdbd, #e2e9df); }
html[data-theme="calm"] .app-window.active .window-header { background: linear-gradient(90deg, #8fae9e, #c4d7ca); }
html[data-theme="calm"] .window-title { color: #ffffff; text-shadow: 0 1px 1px rgba(90,110,95,0.4); }

html[data-theme="calm"] .content-box,
html[data-theme="calm"] body.blog-page { background: #fbfdf8; color: #5f6d63; border-color: #b6c3b6; }
html[data-theme="calm"] .window-frame { background: #fbfdf8; }
html[data-theme="calm"] .blog-post-title,
html[data-theme="calm"] .profile-name { color: #5c6f62; }
html[data-theme="calm"] .blog-post-date { color: #9aa89c; }
html[data-theme="calm"] .blog-list a,
html[data-theme="calm"] .profile-status,
html[data-theme="calm"] .profile-links a { background: #eef2ea; border-color: #b6c3b6; color: #5f6d63; }

html[data-theme="calm"] #taskbar { background: #cdd6cb; border-top-color: #eef2ec; }
html[data-theme="calm"] .taskbar-btn,
html[data-theme="calm"] #taskbar-clock,
html[data-theme="calm"] #start-btn {
	background: #dbe2d7; color: #4f5d52; border-color: #a7b6a8;
	box-shadow: inset 1px 1px #ffffff, inset -1px -1px #a7b6a8;
}
html[data-theme="calm"] .taskbar-btn.active { background: linear-gradient(90deg, #8fae9e, #b8ccbd); color: #2e3d33; }

html[data-theme="calm"] #start-menu {
	background: #d5ded1; border-color: #a7b6a8;
	box-shadow: inset 1px 1px #ffffff, inset -1px -1px #a7b6a8, 2px 2px 6px rgba(90,110,95,0.3);
}
html[data-theme="calm"] #start-menu .sm-link { color: #4f5d52; }
html[data-theme="calm"] #start-menu .sm-link:hover,
html[data-theme="calm"] #start-menu .sm-item:hover > .sm-link { background: linear-gradient(#8fae9e, #5f7d6e); color: #ffffff; }
html[data-theme="calm"] #start-menu .has-sub > .sm-sub { background: #d5ded1; border-color: #a7b6a8; }
html[data-theme="calm"] .start-sidebar { background: linear-gradient(#8fae9e, #5f7d6e); }


/* ============================================================
   HYPERNEON
   ============================================================ */
html[data-theme="hyperneon"] body {
	background: radial-gradient(circle at 50% -10%, #1a1146 0%, #08060f 60%) fixed, #08060f;
	color: #cdf4ff;
	text-shadow: 0 0 2px rgba(18,246,255,0.4);
}
html[data-theme="hyperneon"] a:link,
html[data-theme="hyperneon"] a:visited,
html[data-theme="hyperneon"] a:active { color: #d6d12d; text-shadow: 0 0 4px rgba(220, 43, 255, 0.7); }
html[data-theme="hyperneon"] a:hover { color: #5cf9ff; text-shadow: 0 0 6px rgba(255, 109, 18, 0.9); }

html[data-theme="hyperneon"] .desktop-icon { color: #7ff3ff; text-shadow: 0 0 5px rgba(18,246,255,0.7); }
html[data-theme="hyperneon"] .desktop-icon img { filter: grayscale(100%) invert(1) brightness(1.15) drop-shadow(0 0 3px #12f6ff); opacity: 0.9; }
html[data-theme="hyperneon"] .desktop-icon:hover { color:  rgba(255, 109, 18, 0.9); text-shadow: 0 0 8px rgba(255,43,214,0.9); }

html[data-theme="hyperneon"] .desktop-note {
	background: rgba(12,8,26,0.85); border-color: #d6d12d; color: #bfefff;
	box-shadow: 0 0 10px rgba(255,43,214,0.4), inset 0 0 8px rgba(18,246,255,0.15);
}
html[data-theme="hyperneon"] .desktop-note-welcome { color: #ff5ce0; }
html[data-theme="hyperneon"] .desktop-note-title { color: #7ff3ff; text-shadow: 0 0 8px rgba(255, 109, 18, 0.9); }
html[data-theme="hyperneon"] .desktop-note-refresh {
	background: #1a1140; border-color: #12f6ff; color: rgba(255, 109, 18, 0.9); box-shadow: 0 0 6px rgba(18,246,255,0.4);
}

html[data-theme="hyperneon"] .app-window {
	background: #0f0b20;
	box-shadow: inset -1px -1px #05040a, inset 1px 1px #3a2f6b, inset -2px -2px #08060f, inset 2px 2px #241a4a, 0 0 10px rgba(18,246,255,0.18);
}
html[data-theme="hyperneon"] .app-window.active {
	box-shadow: inset -1px -1px #05040a, inset 1px 1px #6d4e0f, inset -2px -2px #08060f, inset 2px 2px #34246a, 0 0 16px rgba(255,43,214,0.5);
}
html[data-theme="hyperneon"] .app-window .window-header {
	background: linear-gradient(90deg, #1a1140, #2c1a5e); border-bottom-color: #3a2f6b;
}
html[data-theme="hyperneon"] .app-window.active .window-header { background: linear-gradient(90deg, #0effaf, #1298ff); }
html[data-theme="hyperneon"] .window-title { color: #c9b8ff; }
html[data-theme="hyperneon"] .app-window.active .window-title { color: #0a0714; text-shadow: 0 0 2px rgba(255,255,255,0.6); }

html[data-theme="hyperneon"] .content-box,
html[data-theme="hyperneon"] body.blog-page {
	background: #0a0816; color: #c9f4ff; border-color: #ff2bd6;
	box-shadow: inset 0 0 10px rgba(18,246,255,0.15);
}
html[data-theme="hyperneon"] .window-frame { background: #0a0816; }
html[data-theme="hyperneon"] .blog-post-title,
html[data-theme="hyperneon"] .profile-name { color: #7ff3ff; text-shadow: 0 0 6px rgba(18,246,255,0.8); }
html[data-theme="hyperneon"] .blog-post-date { color: #ff5ce0; }
html[data-theme="hyperneon"] .blog-list a,
html[data-theme="hyperneon"] .profile-status,
html[data-theme="hyperneon"] .profile-links a {
	background: #140f2e; border-color: #2bff44; color: #c9f4ff; box-shadow: 0 0 6px rgba(255,43,214,0.25);
}

html[data-theme="hyperneon"] #taskbar { background: #0f0b20; border-top-color: #12f6ff; box-shadow: 0 0 10px rgba(18,246,255,0.4); }
html[data-theme="hyperneon"] .taskbar-btn,
html[data-theme="hyperneon"] #taskbar-clock,
html[data-theme="hyperneon"] #start-btn {
	background: #17123a; color: #2fff20; border-color: #12f6ff;
	box-shadow: 0 0 6px rgba(18,246,255,0.3), inset 1px 1px #3a2f6b, inset -1px -1px #05040a;
}
html[data-theme="hyperneon"] .taskbar-btn.active { background: linear-gradient(90deg, #ff2bd6, #12ff49); color: #0a0714; }

html[data-theme="hyperneon"] #start-menu {
	background: #0f0b20; border-color: #f8ff2e;
	box-shadow: 0 0 14px rgba(255,43,214,0.45), inset 0 0 8px rgba(30, 240, 248, 0.12);
}
html[data-theme="hyperneon"] #start-menu .sm-link { color: #c9f4ff; }
html[data-theme="hyperneon"] #start-menu .sm-ico { filter: grayscale(100%) invert(1) brightness(1.15) drop-shadow(0 0 2px #12f6ff); }
html[data-theme="hyperneon"] #start-menu .sm-link:hover,
html[data-theme="hyperneon"] #start-menu .sm-item:hover > .sm-link { background: linear-gradient(90deg, #e3ff2b, #12f6ff); color: #0a0714; }
html[data-theme="hyperneon"] #start-menu .sm-item:hover > .sm-link .sm-ico { filter: grayscale(100%) invert(1); }
html[data-theme="hyperneon"] #start-menu .has-sub > .sm-sub { background: #0f0b20; border-color: #ff2bd6; }
html[data-theme="hyperneon"] #start-menu .sm-sep { background: #ffa710; box-shadow: 0 1px #12f6ff; }
html[data-theme="hyperneon"] .start-sidebar { background: linear-gradient(#2bff59, #12f6ff); }
html[data-theme="hyperneon"] .start-sidebar span { color: #0a0714; }

html[data-theme="hyperneon"] .cd-player-wrap { background: #140f2e; border-color: #12f6ff; box-shadow: 0 0 8px rgba(18,246,255,0.3); }
html[data-theme="hyperneon"] .cd-cover { border-color: #ff2bd6; }
html[data-theme="hyperneon"] .cd-select { background: #0a0816; color: #26ff4e; border-color: #2bff32; }
html[data-theme="hyperneon"] .cd-time-row { color: #ffad31; }
html[data-theme="hyperneon"] .cd-btn { background: #17123a; color: #7ff3ff; border-color: #12f6ff; box-shadow: 0 0 5px rgba(18,246,255,0.3); }
html[data-theme="hyperneon"] .cd-progress { background: #0a0816; border-color: #2bffa7; }

html[data-theme="hyperneon"] .retro-scroll-btn { background-color: #17123a; box-shadow: inset -1px -1px #05040a, inset 1px 1px #3a2f6b; }
html[data-theme="hyperneon"] .retro-scroll-btn.up,
html[data-theme="hyperneon"] .retro-scroll-btn.down { filter: invert(1) hue-rotate(150deg) brightness(1.3); }
html[data-theme="hyperneon"] .retro-scroll-track { background-image: none; background-color: #0a0816; }
html[data-theme="hyperneon"] .retro-scroll-thumb { background-color: #2a1a5e; border-color: #ff2bd6; box-shadow: 0 0 6px rgba(255,43,214,0.5); }
html[data-theme="hyperneon"] ::-webkit-scrollbar-track { background-image: none; background-color: #0a0816; }
html[data-theme="hyperneon"] ::-webkit-scrollbar-thumb,
html[data-theme="hyperneon"] ::-webkit-scrollbar-button,
html[data-theme="hyperneon"] ::-webkit-scrollbar-corner { background-color: #2a1a5e; border-color: #29ff37; }