body {
    font-family: Sans-serif;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
    background-image: url('hell on Earth cute 90s.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}
.construction {
    margin-top: 20px;
    border: 2px solid #000;
}

#fumo {
    position: fixed;
    top: 8px;
    right: 8px;
    width: 120px;
    height: auto;
    z-index: 200;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    cursor: grab;
}

.ascii-title {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 9px;
    line-height: 1;
    letter-spacing: 0;
    color: #ffffff;
    text-shadow:
        1px 1px 0 #000,
       -1px 1px 0 #000,
        1px -1px 0 #000,
       -1px -1px 0 #000,
        0 0 6px rgba(0,0,0,0.9);
    margin: 0 auto 16px;
    padding: 10px 12px;
    display: inline-block;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 4px;
    white-space: pre;
    overflow-x: auto;
    max-width: calc(100vw - 24px);
    text-align: left;
}

.main-box {
    width: 640px;
    max-width: calc(100vw - 32px);
    margin: 0 auto 24px;
    background: #ece9d8;
    border: 1px solid #0831d9;
    border-radius: 8px 8px 3px 3px;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.5);
    font-family: Tahoma, Verdana, sans-serif;
    overflow: hidden;
    text-align: left;
}
.main-box-titlebar {
    height: 24px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 2px 6px;
    background: linear-gradient(180deg, #0058e0 0%, #3d94ff 8%, #1567e6 40%, #0850d8 88%, #003bcb 100%);
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
}
.main-box-icon { font-size: 13px; }
.main-box-body {
    padding: 16px 20px 14px;
    background: #ffffff;
    border-top: 1px solid #aca899;
}
.intro-quote {
    margin: 0 0 14px;
    padding: 8px 12px;
    border-left: 3px solid #0831d9;
    background: #f4f6fb;
    font-style: italic;
    font-size: 13px;
    line-height: 1.5;
    color: #222;
}
.intro-quote cite {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    font-style: normal;
    color: #666;
    text-align: right;
}
.intro-text {
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #222;
}
.link-columns {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed #aca899;
}
.link-cell {
    flex: 1;
    min-width: 0;
    display: block;
    padding: 8px 6px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    color: #1a3a6a;
    background: linear-gradient(180deg, #ffffff 0%, #d9e4f5 45%, #b7cbe8 55%, #d9e4f5 100%);
    border: 1px solid #7a9cc6;
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 1px 1px 2px rgba(0,0,0,0.2);
    transition: filter 0.1s;
}
.link-cell:hover {
    filter: brightness(1.15);
    color: #0831d9;
}
.link-cell:active {
    box-shadow: inset 1px 1px 3px rgba(0,0,0,0.3);
}

.xp-window {
    position: fixed;
    bottom: 38px;
    right: 16px;
    width: 320px;
    display: flex;
    flex-direction: column;
    background: #ece9d8;
    border: 1px solid #0831d9;
    border-radius: 8px 8px 3px 3px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.4);
    font-family: Tahoma, Verdana, sans-serif;
    overflow: hidden;
    z-index: 100;
    user-select: none;
    text-align: left;
}
.xp-window.dragging {
    box-shadow: 4px 4px 14px rgba(0,0,0,0.5);
    cursor: grabbing;
}
.xp-window.closed { display: none !important; }

.xp-titlebar {
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 3px 2px 6px;
    background: linear-gradient(180deg, #0058e0 0%, #3d94ff 8%, #1567e6 40%, #0850d8 88%, #003bcb 100%);
    color: white;
    font-weight: bold;
    font-size: 12px;
    cursor: move;
}
.xp-titlebar-title {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    flex: 1;
    min-width: 0;
}
.xp-titlebar-title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.xp-titlebar-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}
.xp-titlebar-buttons {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}
.xp-btn {
    width: 20px;
    height: 18px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 3px;
    background: linear-gradient(180deg, #4488ff 0%, #1650d0 100%);
    color: white;
    font-size: 11px;
    font-weight: bold;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.xp-btn:hover { filter: brightness(1.2); }
.xp-btn.close { background: linear-gradient(180deg, #ff6a5a 0%, #d4281a 100%); }

.xp-body {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.xp-window.minimized .xp-body { display: none; }

.xp-artwork {
    align-self: stretch;
    width: 70px;
    flex-shrink: 0;
    box-sizing: border-box;
    border: 1px solid #000;
    background: #b7cbe8 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%231a3a6a" d="M12 3v10.55A4 4 0 1 0 14 17V7h4V3h-6z"/></svg>') center/40% no-repeat;
    background-size: cover;
    background-position: center;
}

.xp-right {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 6px;
    justify-content: center;
}

.xp-track-info {
    min-width: 0;
}
.xp-track-title {
    font-size: 11px;
    font-weight: bold;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.xp-track-artist {
    font-size: 10px;
    color: #555;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xp-transport {
    display: flex;
    align-items: center;
    gap: 6px;
}
.xp-icon-btn {
    width: 26px;
    height: 26px;
    border-radius: 4px;
    border: 1px solid #7a9cc6;
    background: linear-gradient(180deg, #ffffff 0%, #d9e4f5 45%, #b7cbe8 55%, #d9e4f5 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 1px 1px 2px rgba(0,0,0,0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.xp-icon-btn:active { box-shadow: inset 1px 1px 3px rgba(0,0,0,0.3); }
.xp-play {
    width: 34px;
    height: 34px;
}

.xp-icon-prev, .xp-icon-next {
    width: 0; height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.xp-icon-prev { border-right: 9px solid #1a3a6a; margin-right: 2px; }
.xp-icon-next { border-left: 9px solid #1a3a6a; margin-left: 2px; }

.xp-play .icon-play {
    width: 0; height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 13px solid #1a3a6a;
    margin-left: 3px;
}
.xp-play .icon-pause {
    display: none;
    width: 14px;
    height: 16px;
    position: relative;
}
.xp-play .icon-pause::before,
.xp-play .icon-pause::after {
    content: "";
    position: absolute;
    top: 0;
    width: 5px;
    height: 16px;
    background: #1a3a6a;
}
.xp-play .icon-pause::before { left: 0; }
.xp-play .icon-pause::after { left: 9px; }
.xp-play.playing .icon-play { display: none; }
.xp-play.playing .icon-pause { display: block; }

.xp-scrubber {
    flex: 1;
    height: 10px;
    background: repeating-linear-gradient(90deg, #4488ff 0 2px, transparent 2px 4px);
    border: 1px solid #7a9cc6;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}
.xp-scrubber-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0058e0, #3d94ff);
    width: 0%;
    transition: width 0.2s linear;
}

.xp-volume {
    display: flex;
    align-items: center;
    gap: 6px;
}
.xp-volume-icon {
    width: 14px;
    flex-shrink: 0;
    font-size: 11px;
    text-align: center;
    color: #1a3a6a;
}
.xp-volume-slider {
    flex: 1;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: repeating-linear-gradient(90deg, #4488ff 0 2px, transparent 2px 4px);
    border: 1px solid #7a9cc6;
    border-radius: 2px;
    cursor: pointer;
    accent-color: #0058e0;
}
.xp-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #d9e4f5 45%, #b7cbe8 55%, #d9e4f5 100%);
    border: 1px solid #7a9cc6;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
.xp-volume-slider::-moz-range-thumb {
    width: 10px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #d9e4f5 45%, #b7cbe8 55%, #d9e4f5 100%);
    border: 1px solid #7a9cc6;
}

.sc-hidden-player {
    position: absolute;
    width: 300px;
    height: 166px;
    left: -9999px;
    top: -9999px;
    border: 0;
}

.xp-window-left {
    position: fixed;
    left: 10px;
    right: auto;
    top: 110px;
    bottom: auto;
    width: 420px;
    z-index: 100;
}

.xp-body-shoyan {
    padding: 6px;
    display: block;
}
.xp-window.minimized .xp-body-shoyan { display: none; }

.shoyan-link {
    display: block;
    line-height: 0;
    outline: none;
}
.shoyan-link:focus-visible {
    outline: 2px solid #0058e0;
    outline-offset: 1px;
}
.shoyan-link .construction {
    margin-top: 0;
    border: 1px solid #000;
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}
.shoyan-link:hover .construction {
    filter: brightness(1.08) saturate(1.1);
}

.xp-window-mc {
    position: fixed;
    left: 96px;
    bottom: 38px;
    width: 260px;
    z-index: 100;
}
.xp-body-mc {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
}
.xp-window.minimized .xp-body-mc { display: none; }

.mc-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid #000;
    background: #b7cbe8 center/cover no-repeat;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}
.mc-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.mc-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 6px;
    font-size: 11px;
    line-height: 1.5;
}
.mc-label {
    color: #555;
    flex-shrink: 0;
}
.mc-value {
    color: #222;
    font-weight: bold;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}
.mc-online  { color: #1a7a1a; }
.mc-offline { color: #c4281a; }
.mc-motd {
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid #b7cbe8;
    font-size: 10px;
    color: #333;
    line-height: 1.3;
    white-space: pre-wrap;
    word-break: break-word;
    min-height: 1.3em;
}
.mc-motd:empty::before {
    content: "(no MOTD)";
    color: #999;
    font-style: italic;
}

#taskbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    height: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px 0 0;
    background: linear-gradient(180deg, #2387f0 0%, #2c8cf5 3%, #1e6fd6 8%, #1a66c8 92%, #154bb0 100%);
    border-top: 1px solid #0a3a8c;
    box-shadow: 0 -1px 0 rgba(255,255,255,0.3) inset;
    font-family: Tahoma, Verdana, sans-serif;
    z-index: 100000;
    user-select: none;
}

.tb-start {
    flex-shrink: 0;
    height: 30px;
    padding: 0 12px 0 8px;
    margin-right: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(0,0,0,0.3);
    border-top: none;
    border-bottom: none;
    border-radius: 0;
    background: linear-gradient(180deg, #5fb836 0%, #4a9e26 50%, #3c8a1d 100%);
    color: white;
    font-style: italic;
    font-weight: bold;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
    cursor: pointer;
}
.tb-start:hover { filter: brightness(1.08); }
.tb-start:active { filter: brightness(0.95); }
.tb-start-flag {
    font-size: 10px;
    transform: skewX(-12deg);
    display: inline-block;
}

.tb-tray {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 3px;
    min-width: 0;
    overflow: hidden;
}

.tb-item {
    min-width: 100px;
    max-width: 180px;
    height: 22px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(0,0,0,0.25);
    border-radius: 3px;
    background: linear-gradient(180deg, #4d93f0 0%, #2f6fc8 50%, #2157a8 100%);
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    cursor: pointer;
    overflow: hidden;
}
.tb-item:hover {
    background: linear-gradient(180deg, #6aa8ff 0%, #3d7fd8 50%, #2f64b8 100%);
}
.tb-item:active {
    background: linear-gradient(180deg, #1a4a8a 0%, #2c6dc8 100%);
}
.tb-item-icon {
    flex-shrink: 0;
    font-size: 12px;
}
.tb-item-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.tb-clock {
    flex-shrink: 0;
    height: 22px;
    margin-left: 4px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.35);
    border-radius: 3px;
    background: linear-gradient(180deg, #1c5fbf 0%, #11429a 100%);
    color: white;
    font-size: 11px;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    box-shadow: inset 1px 1px 2px rgba(0,0,0,0.3);
}

#startOverlay {
    position: fixed;
    inset: 0;
    background: #008000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 36px;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 999999;
    pointer-events: none;
}
#startOverlay.visible {
    opacity: 1;
}

/* ===== AI Testimonials Window ===== */
.xp-window-testimonials {
    position: fixed;
    top: 95px;
    right: 20px;
    bottom: auto;
    left: auto;
    width: 340px;
    max-height: calc(100vh - 150px - 50px);
    z-index: 100;
}

.xp-body-testimonials {
    padding: 0;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    overflow: hidden;
}
.xp-window.minimized .xp-body-testimonials { display: none; }

.testimonials-marquee {
    flex-shrink: 0;
    background: #000080;
    color: #ffff00;
    font-family: 'Courier New', Consolas, monospace;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 6px;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid #aca899;
}
.testimonials-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: testimonials-marquee 22s linear infinite;
}
@keyframes testimonials-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.testimonials-list {
    flex: 1;
    overflow-y: auto;
    padding: 8px 10px;
    max-height: 360px;
    scrollbar-width: thin;
    scrollbar-color: #7a9cc6 #ece9d8;
}
.testimonials-list::-webkit-scrollbar { width: 12px; }
.testimonials-list::-webkit-scrollbar-track {
    background: #ece9d8;
    border-left: 1px solid #aca899;
}
.testimonials-list::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4d93f0 0%, #2f6fc8 50%, #2157a8 100%);
    border: 1px solid #1a3a6a;
    border-radius: 2px;
}

.testimonial {
    margin: 0 0 10px;
    padding: 8px 10px;
    background: #f4f6fb;
    border-left: 3px solid #0831d9;
    border-top: 1px solid #d9e4f5;
    border-right: 1px solid #d9e4f5;
    border-bottom: 1px solid #d9e4f5;
    font-family: Tahoma, Verdana, sans-serif;
}
.testimonial:last-child { margin-bottom: 0; }
.testimonial p {
    margin: 0 0 6px;
    font-size: 11px;
    line-height: 1.5;
    color: #222;
}
.testimonial cite {
    display: block;
    font-size: 10px;
    font-style: normal;
    font-weight: bold;
    color: #0831d9;
    text-align: right;
}

.testimonials-footer {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding: 4px 10px;
    background: #ece9d8;
    border-top: 1px solid #aca899;
    font-family: Tahoma, Verdana, sans-serif;
}
.testimonials-stars {
    color: #d4a017;
    font-size: 12px;
    letter-spacing: 1px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
}
.testimonials-footer-text {
    font-size: 10px;
    color: #333;
    font-weight: bold;
}
