* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --windows-gray: #C0C0C0;
    --windows-dark-gray: #808080;
    --windows-light-gray: #DFDFDF;
    --windows-blue: #000080;
    --windows-light-blue: #0080FF;
    --windows-dark-blue: #0055AA;
    --windows-border: #000000;
    --windows-bg: #C0C0C0;
    --text-color: #000000;
}

body {
    font-family: 'MS Sans Serif', 'MS Sans Serif', 'Arial', sans-serif;
    background: #008080;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 11px;
}

/* CRT Screen Effect */
.crt-screen {
    position: relative;
    min-height: 100vh;
    background: #008080;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
    padding: 20px;
}

.scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        transparent 50%,
        rgba(0, 0, 0, 0.03) 50%
    );
    background-size: 100% 2px;
    pointer-events: none;
    z-index: 1000;
    animation: scanline 8s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(2px); }
}

.content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    margin-bottom: 30px;
    position: relative;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

h1 {
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    text-shadow: none;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 12px;
    color: #000000;
    text-shadow: none;
    letter-spacing: 2px;
}

/* Navigation */
.retro-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.nav-link {
    padding: 15px 30px;
    border: 2px outset #C0C0C0;
    background: #C0C0C0;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.1s;
    position: relative;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF;
    font-weight: 500;
}

.nav-link::before {
    display: none;
}

.nav-link:hover {
    border: 2px outset #C0C0C0;
    background: #C0C0C0;
    color: #000000;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF;
    transform: none;
}

.nav-link.active {
    border: 2px inset #C0C0C0;
    background: #C0C0C0;
    color: #000000;
    box-shadow: 
        inset 1px 1px 0px #000000,
        inset -1px -1px 0px #FFFFFF,
        inset 2px 2px 0px #808080,
        inset -2px -2px 0px #DFDFDF;
}

.nav-link:active {
    border: 2px inset #C0C0C0;
    background: #C0C0C0;
    box-shadow: 
        inset 1px 1px 0px #000000,
        inset -1px -1px 0px #FFFFFF,
        inset 2px 2px 0px #808080,
        inset -2px -2px 0px #DFDFDF;
}

/* Sections */
.section {
    display: none;
    padding: 20px;
    min-height: 60vh;
}

.section.active {
    display: block;
    animation: none;
}

.section#sats {
    padding: 0;
    min-height: calc(100vh - 200px);
    display: none;
}

.section#sats.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

h2 {
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    text-shadow: none;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 0px;
}

h3 {
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    text-shadow: none;
    margin-top: 20px;
    margin-bottom: 15px;
    letter-spacing: 0px;
}

h4 {
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    text-shadow: none;
    margin-top: 15px;
    margin-bottom: 10px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/* Welcome Box */
.welcome-box {
    border: 2px outset var(--windows-gray);
    padding: 20px;
    background: var(--windows-gray);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.welcome-box p {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text-color);
}

.blinking-cursor {
    animation: blink 1s infinite;
    color: #000000;
    font-weight: bold;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Videos Container */
.videos-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.video-item {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    padding: 10px;
    transition: all 0.1s;
    position: relative;
    width: 300px;
    aspect-ratio: 9 / 16;
    flex-shrink: 0;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.video-item:hover {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
    transform: none;
}

.video-item:active {
    border: 2px inset var(--windows-gray);
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray),
        inset 2px 2px 0px var(--windows-dark-gray),
        inset -2px -2px 0px #FFFFFF;
}

.retro-video {
    width: 100%;
    height: 100%;
    display: block;
    border: 1px inset var(--windows-gray);
    background: #000;
    object-fit: contain;
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
}

.retro-video::-webkit-media-controls-panel {
    background-color: var(--windows-gray);
}

.retro-video::-webkit-media-controls-play-button {
    background-color: var(--windows-gray);
}

/* Home Gallery */
.home-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.home-gallery-item {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    padding: 10px;
    transition: all 0.1s;
    cursor: pointer;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.home-gallery-item:hover {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
    transform: none;
}

.home-gallery-item:active {
    border: 2px inset var(--windows-gray);
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray),
        inset 2px 2px 0px var(--windows-dark-gray),
        inset -2px -2px 0px #FFFFFF;
}

.home-gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--windows-gray);
    border: 1px inset var(--windows-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-gallery-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
    animation: diagonalMove 3s linear infinite;
}

.home-gallery-placeholder:has(img)::before {
    display: none;
}

.home-gallery-placeholder:has(img) {
    background: transparent;
    border: none;
}

.home-gallery-placeholder span {
    font-size: 11px;
    color: #000000;
    text-shadow: none;
    z-index: 1;
}

.home-gallery-placeholder img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-gallery-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-gallery-link:hover {
    text-decoration: none;
}

.home-gallery-caption {
    text-align: center;
    margin-top: 8px;
    font-size: 11px;
    color: var(--text-color);
    text-transform: none;
    letter-spacing: 0px;
    transition: none;
}

.home-gallery-link:hover .home-gallery-caption {
    color: var(--text-color);
    text-shadow: none;
}

/* Buttons */
.retro-button {
    padding: 4px 20px;
    border: 2px outset #C0C0C0;
    background: #C0C0C0;
    color: #000000;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 11px;
    font-weight: normal;
    letter-spacing: 0px;
    cursor: pointer;
    transition: none;
    text-shadow: none;
    position: relative;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF;
    text-transform: none;
    min-width: 75px;
    min-height: 23px;
}

.retro-button::before {
    display: none;
}

.retro-button:hover {
    border: 2px outset #C0C0C0;
    background: #C0C0C0;
    color: #000000;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF;
    transform: none;
}

.retro-button:active {
    border: 2px inset #C0C0C0;
    background: #C0C0C0;
    box-shadow: 
        inset 1px 1px 0px #000000,
        inset -1px -1px 0px #FFFFFF,
        inset 2px 2px 0px #808080,
        inset -2px -2px 0px #DFDFDF;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.artwork-item {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    padding: 10px;
    transition: all 0.1s;
    cursor: pointer;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.artwork-item:hover {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
    transform: none;
}

.artwork-item:active {
    border: 2px inset var(--windows-gray);
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray),
        inset 2px 2px 0px var(--windows-dark-gray),
        inset -2px -2px 0px #FFFFFF;
}

.artwork-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--windows-gray);
    border: 1px inset var(--windows-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.artwork-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
    /* animation: diagonalMove 3s linear infinite; */
    animation: none;
}

@keyframes diagonalMove {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.artwork-placeholder span {
    font-size: 11px;
    color: #000000;
    text-shadow: none;
    z-index: 1;
}

.artwork-placeholder img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
}

.artwork-title {
    font-size: 11px;
    text-align: center;
    color: var(--text-color);
    text-transform: none;
    letter-spacing: 0px;
}

.artwork-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.artwork-link:hover {
    text-decoration: none;
}

.artwork-link:hover .artwork-title {
    color: var(--text-color);
    text-shadow: none;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.image-modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border: 2px outset var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF,
        4px 4px 8px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    background: var(--windows-gray);
    border: 2px outset var(--windows-gray);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray);
    transition: none;
}

.modal-close:hover {
    background: #FF0000;
    color: #FFFFFF;
    border: 2px outset #FF0000;
}

.modal-close:active {
    border: 2px inset var(--windows-gray);
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-modal.active {
    display: flex;
}

.video-modal .modal-content {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    border: 2px outset var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF,
        4px 4px 8px rgba(0, 0, 0, 0.5);
}

/* Home Image Container */
.home-image-container {
    display: flex;
    justify-content: center;
    margin: 30px auto;
    max-width: 600px;
    padding: 0 20px;
}

.home-image-container .artwork-item {
    width: 100%;
    max-width: 600px;
}

.home-image-container .artwork-placeholder {
    aspect-ratio: auto;
}

.home-image-container .artwork-placeholder img {
    width: 100%;
    height: auto;
    object-fit: contain;
    cursor: pointer;
}

.home-image-container .artwork-item:hover {
    transform: none;
}

/* Home Image Link Container */
.home-image-link-container {
    display: flex;
    justify-content: center;
    margin: 15px auto;
    padding: 0 20px;
}

.home-image-link {
    display: inline-block;
    padding: 8px 16px;
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    color: #0000FF;
    text-decoration: underline;
    font-size: 11px;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    cursor: pointer;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
    transition: none;
}

.home-image-link:hover {
    background: var(--windows-gray);
    color: #0000FF;
    text-decoration: underline;
    border: 2px outset var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.home-image-link:active {
    border: 2px inset var(--windows-gray);
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray),
        inset 2px 2px 0px var(--windows-dark-gray),
        inset -2px -2px 0px #FFFFFF;
}

.home-image-link:visited {
    color: #800080;
}

/* Video Buttons Container */
.video-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.video-button {
    min-width: 150px;
}

/* About & Contact Boxes */
.about-box,
.contact-box,
.display-box {
    border: 2px outset var(--windows-gray);
    padding: 20px;
    background: var(--windows-gray);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.about-box p {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 10px;
}

.about-box strong {
    color: #000000;
    font-weight: bold;
}

/* Display List */
.display-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.display-list li {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-color);
    padding: 3px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.display-list li:last-child {
    border-bottom: none;
}

.display-list a {
    color: #0000FF;
    text-decoration: underline;
    transition: none;
    word-break: break-all;
}

.display-list a:hover {
    color: #0000FF;
    text-shadow: none;
}

.display-list a:visited {
    color: #800080;
}

/* Form */
.retro-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 11px;
    color: #000000;
    text-shadow: none;
    letter-spacing: 0px;
    font-weight: bold;
}

.retro-input {
    padding: 4px;
    border: 2px inset var(--windows-gray);
    background: #FFFFFF;
    color: var(--text-color);
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 11px;
    outline: none;
    transition: none;
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray);
}

.retro-input:focus {
    border: 2px inset var(--windows-gray);
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray);
}

.retro-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

textarea.retro-input {
    resize: vertical;
    min-height: 100px;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px 20px;
    margin-top: 30px;
    border-top: 2px outset var(--windows-gray);
    font-size: 11px;
    color: var(--text-color);
    opacity: 1;
    background: var(--windows-gray);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #0000FF;
    text-decoration: underline;
    font-size: 11px;
    padding: 5px;
    border: none;
    background: transparent;
    transition: none;
}

.social-link:hover {
    color: #0000FF;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.social-link:visited {
    color: #800080;
}

.social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: none;
}

.social-link:hover .social-icon {
    color: #0000FF;
    filter: none;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1.2;
        word-spacing: 0px;
        text-shadow: none;
    }
    
    h3 {
        text-shadow: none;
    }
    
    h4 {
        text-shadow: none;
    }
    
    .subtitle {
        font-size: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .home-gallery {
        grid-template-columns: 1fr;
    }
    
    .sats-gallery {
        grid-template-columns: 1fr;
    }
    
    .videos-container {
        flex-direction: column;
        align-items: center;
    }
    
    .video-item {
        width: 100%;
        max-width: 300px;
    }
    
    .retro-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
}

/* Windows 95 Folder Style */
.windows-folder-container {
    margin: 30px auto;
    max-width: 1200px;
    padding: 0 20px;
    position: relative;
}

.windows-folder {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    transition: all 0.1s;
    user-select: none;
}

.windows-folder:hover {
    background: rgba(0, 0, 0, 0.05);
}

.windows-folder:active {
    background: rgba(0, 0, 0, 0.1);
}

.folder-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 5px;
}

.folder-label {
    font-size: 11px;
    color: #000;
    text-align: center;
    max-width: 80px;
    word-wrap: break-word;
    line-height: 1.2;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
}

.folder-window {
    display: none;
    position: absolute;
    top: 80px;
    left: 20px;
    width: 400px;
    background: #C0C0C0;
    border: 2px outset #C0C0C0;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF,
        4px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

#projectsWindow {
    left: 120px; /* Position next to home button */
}

.folder-window.open {
    display: block;
}

.window-titlebar {
    background: linear-gradient(to bottom, #0080FF, #0055AA);
    color: #FFFFFF;
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    cursor: move;
    user-select: none;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
}

.window-title {
    flex: 1;
}

.window-close {
    background: #C0C0C0;
    border: 1px outset #C0C0C0;
    color: #000;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF;
}

.window-close:hover {
    background: #FF0000;
    color: #FFFFFF;
}

.window-close:active {
    border: 1px inset #C0C0C0;
    box-shadow: 
        inset 1px 1px 0px #000000,
        inset -1px -1px 0px #FFFFFF;
}

.window-content {
    padding: 10px;
    background: #C0C0C0;
    min-height: 200px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 15px;
}

.folder-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    transition: all 0.1s;
    user-select: none;
}

.folder-item:hover {
    background: rgba(0, 0, 120, 0.1);
}

.folder-item:active {
    background: rgba(0, 0, 120, 0.2);
}

.folder-icon-small {
    width: 32px;
    height: 32px;
    margin-bottom: 5px;
}

.folder-item-label {
    font-size: 11px;
    color: #000;
    text-align: center;
    max-width: 80px;
    word-wrap: break-word;
    line-height: 1.2;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
}

.folder-item-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 8px;
    cursor: pointer;
    transition: all 0.1s;
    user-select: none;
    text-decoration: none;
    color: inherit;
}

.folder-item-link:hover {
    background: rgba(0, 0, 120, 0.1);
}

.folder-item-link:active {
    background: rgba(0, 0, 120, 0.2);
}

/* Windows 95/98 cursor - using default arrow */
body {
    cursor: default;
}

/* Windows Alert/Popup Style */
.windows-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: #C0C0C0;
    border: 2px outset #C0C0C0;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF,
        4px 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
}

.alert-titlebar {
    background: linear-gradient(to bottom, #0080FF, #0055AA);
    color: #FFFFFF;
    padding: 3px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    font-weight: bold;
    user-select: none;
}

.alert-title {
    flex: 1;
}

.alert-close {
    background: #C0C0C0;
    border: 1px outset #C0C0C0;
    color: #000;
    width: 20px;
    height: 20px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF;
}

.alert-close:hover {
    background: #FF0000;
    color: #FFFFFF;
}

.alert-close:active {
    border: 1px inset #C0C0C0;
    box-shadow: 
        inset 1px 1px 0px #000000,
        inset -1px -1px 0px #FFFFFF;
}

.alert-content {
    padding: 15px;
    background: #C0C0C0;
    font-size: 11px;
    color: #000;
}

.alert-content p {
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.alert-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.social-popup-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.social-popup-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: #C0C0C0;
    border: 2px outset #C0C0C0;
    color: #0000FF;
    text-decoration: underline;
    font-size: 11px;
    cursor: pointer;
    transition: none;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF;
}

.social-popup-link:hover {
    border: 2px outset #C0C0C0;
    background: #C0C0C0;
    box-shadow: 
        inset -1px -1px 0px #000000,
        inset 1px 1px 0px #FFFFFF,
        inset -2px -2px 0px #808080,
        inset 2px 2px 0px #DFDFDF;
}

.social-popup-link:active {
    border: 2px inset #C0C0C0;
    box-shadow: 
        inset 1px 1px 0px #000000,
        inset -1px -1px 0px #FFFFFF,
        inset 2px 2px 0px #808080,
        inset -2px -2px 0px #DFDFDF;
}

.social-popup-link .social-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* SATS Container */
.sats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sats-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

/* SATS Gallery Items - using same styles as artwork-item */
.sats-gallery .artwork-item {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    padding: 10px;
    transition: all 0.1s;
    cursor: pointer;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.sats-gallery .artwork-item:hover {
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
    transform: none;
}

.sats-gallery .artwork-item:active {
    border: 2px inset var(--windows-gray);
    box-shadow: 
        inset 1px 1px 0px var(--windows-border),
        inset -1px -1px 0px var(--windows-light-gray),
        inset 2px 2px 0px var(--windows-dark-gray),
        inset -2px -2px 0px #FFFFFF;
}

.sats-gallery .artwork-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--windows-gray);
    border: 1px inset var(--windows-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.sats-gallery .artwork-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(0, 0, 0, 0.05) 10px,
        rgba(0, 0, 0, 0.05) 20px
    );
    animation: none;
}

.sats-gallery .artwork-placeholder:has(img)::before {
    display: none;
}

.sats-gallery .artwork-placeholder:has(img) {
    background: transparent;
    border: none;
}

.sats-gallery .artwork-placeholder span {
    font-size: 11px;
    color: #000000;
    text-shadow: none;
    z-index: 1;
}

.sats-gallery .artwork-placeholder img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Links Container */
.links-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.links-list {
    margin-top: 20px;
    border: 2px outset var(--windows-gray);
    background: var(--windows-gray);
    padding: 10px;
    max-height: 70vh;
    overflow-y: auto;
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-size: 11px;
}

.link-item:last-child {
    border-bottom: none;
}

.link-number {
    min-width: 30px;
    font-weight: bold;
    color: var(--text-color);
}

.link-name {
    min-width: 120px;
    font-weight: bold;
    color: var(--text-color);
}

.link-url {
    flex: 1;
    color: #0000FF;
    text-decoration: underline;
    word-break: break-all;
    font-family: 'Courier New', monospace;
    font-size: 10px;
}

.link-url:hover {
    color: #0000FF;
    text-decoration: underline;
}

.link-url:visited {
    color: #800080;
}

/* Scrollbar for links list */
.links-list::-webkit-scrollbar {
    width: 16px;
}

.links-list::-webkit-scrollbar-track {
    background: var(--windows-gray);
    border: 1px inset #808080;
}

.links-list::-webkit-scrollbar-thumb {
    background: var(--windows-gray);
    border: 1px outset #808080;
}

.links-list::-webkit-scrollbar-button {
    background: var(--windows-gray);
    border: 1px outset #808080;
    height: 16px;
}

/* SATS Explorer Styles */
.explorer-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
    min-height: 600px;
    background: #C0C0C0;
    border: 2px outset var(--windows-gray);
    box-shadow: 
        inset -1px -1px 0px var(--windows-border),
        inset 1px 1px 0px var(--windows-light-gray),
        inset -2px -2px 0px var(--windows-dark-gray),
        inset 2px 2px 0px #FFFFFF;
}

.explorer-titlebar {
    background: linear-gradient(to bottom, #0054E3, #0044C7);
    color: white;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
}

.titlebar-controls {
    display: flex;
    gap: 2px;
}

.titlebar-button {
    width: 16px;
    height: 14px;
    border: 1px solid #000;
    background: #C0C0C0;
    font-size: 9px;
    line-height: 12px;
    text-align: center;
    cursor: pointer;
    padding: 0;
    font-weight: bold;
}

.titlebar-button:hover {
    background: #D4D0C8;
}

.titlebar-button:active {
    border: 1px inset #000;
}

.explorer-toolbar {
    background: #C0C0C0;
    border-bottom: 1px solid #808080;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
}

.toolbar-button {
    padding: 2px 8px;
    border: 1px outset #C0C0C0;
    background: #C0C0C0;
    cursor: pointer;
    font-size: 11px;
}

.toolbar-button:hover {
    background: #D4D0C8;
}

.toolbar-button:active {
    border: 1px inset #C0C0C0;
}

.search-box {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
}

.search-box label {
    font-size: 11px;
}

.search-input {
    width: 200px;
    padding: 2px 4px;
    border: 1px inset #808080;
    background: white;
    font-size: 11px;
    font-family: 'MS Sans Serif', sans-serif;
}

.explorer-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.file-list-panel {
    min-width: 150px;
    max-width: 80%;
    width: 300px;
    background: white;
    border-right: 1px solid #808080;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
}

.resizer {
    width: 4px;
    background: #C0C0C0;
    cursor: col-resize;
    border-left: 1px solid #808080;
    border-right: 1px solid #808080;
    flex-shrink: 0;
    position: relative;
    user-select: none;
    touch-action: none;
}

.resizer:hover {
    background: #000080;
}

.resizer.active {
    background: #000080;
}

.file-list-header {
    background: #C0C0C0;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #808080;
}

.file-list {
    flex: 1;
    overflow-y: auto;
    padding: 2px;
    font-size: 11px;
}

.file-item {
    padding: 2px 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid transparent;
    user-select: none;
}

.file-item:hover {
    background: #000080;
    color: white;
}

.file-item.selected {
    background: #000080;
    color: white;
}

.file-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16"><rect width="16" height="16" fill="%23FFC649" stroke="%23000" stroke-width="1"/><rect x="0" y="0" width="16" height="4" fill="%23FFD700"/></svg>') no-repeat;
    flex-shrink: 0;
}

.file-name {
    font-size: 11px;
}

.viewer-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    overflow: hidden;
}

.viewer-header {
    background: #C0C0C0;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    border-bottom: 1px solid #808080;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.viewer-header-title {
    flex: 1;
}

.viewer-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.viewer-controls .toolbar-button {
    padding: 2px 8px;
    border: 1px outset #C0C0C0;
    background: #C0C0C0;
    cursor: pointer;
    font-size: 11px;
}

.viewer-controls .toolbar-button:hover {
    background: #D4D0C8;
}

.viewer-controls .toolbar-button:active {
    border: 1px inset #C0C0C0;
}

.viewer-zoom-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.zoom-button {
    width: 20px;
    height: 20px;
    border: 1px outset #C0C0C0;
    background: #C0C0C0;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-button:active {
    border: 1px inset #C0C0C0;
}

.zoom-slider {
    width: 100px;
    height: 16px;
}

.viewer-content {
    flex: 1;
    overflow: auto;
    padding: 8px;
    background: #C0C0C0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-content img {
    border: 1px inset #808080;
    background: white;
    transition: transform 0.1s;
    cursor: grab;
    user-select: none;
    display: block;
}

.viewer-content img.dragging {
    cursor: grabbing;
    transition: none;
}

.empty-viewer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #808080;
    font-size: 12px;
}

.back-link-container {
    padding: 8px;
    background: #C0C0C0;
    border-bottom: 1px solid #808080;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.back-link {
    padding: 4px 12px;
    border: 2px outset #C0C0C0;
    background: #C0C0C0;
    color: #000000;
    text-decoration: none;
    font-size: 11px;
    display: inline-block;
    cursor: pointer;
    font-family: 'MS Sans Serif', sans-serif;
    text-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.back-link:hover {
    background: #D4D0C8;
    text-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.back-link:active {
    border: 2px inset #C0C0C0;
    text-shadow: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Scrollbar styling for Windows 95 look */
.file-list::-webkit-scrollbar {
    width: 16px;
}

.file-list::-webkit-scrollbar-track {
    background: #C0C0C0;
    border: 1px inset #808080;
}

.file-list::-webkit-scrollbar-thumb {
    background: #C0C0C0;
    border: 1px outset #808080;
}

.file-list::-webkit-scrollbar-button {
    background: #C0C0C0;
    border: 1px outset #808080;
    height: 16px;
}

/* Mobile responsive for explorer */
@media (max-width: 768px) {
    .explorer-container {
        height: calc(100vh - 150px);
        min-height: 500px;
    }
    
    .explorer-content {
        flex-direction: column;
    }
    
    .file-list-panel {
        width: 100% !important;
        min-width: 100px;
        max-width: 100%;
        height: 40vh;
        border-right: none;
        border-bottom: 1px solid #808080;
    }
    
    .resizer {
        width: 100%;
        height: 4px;
        cursor: row-resize;
        border-left: none;
        border-right: none;
        border-top: 1px solid #808080;
        border-bottom: 1px solid #808080;
    }
    
    .resizer:hover {
        background: #000080;
    }
    
    .viewer-panel {
        height: 60vh;
        flex: 1;
        min-height: 100px;
    }
    
    .explorer-toolbar {
        flex-wrap: wrap;
    }
    
    .viewer-zoom-controls {
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .zoom-slider {
        width: 80px;
    }
    
    .search-input {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .file-list-panel {
        height: 35vh;
    }
    
    .viewer-panel {
        height: 65vh;
    }
    
    .explorer-titlebar {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .file-item {
        padding: 4px;
        font-size: 12px;
    }
    
    .viewer-header {
        flex-direction: column;
        gap: 4px;
        padding: 6px;
    }
    
    .viewer-zoom-controls {
        width: 100%;
        justify-content: center;
    }
    
    .search-input {
        width: 120px;
    }
}
