* {
    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: #FFFFFF;
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
    font-size: 11px;
}

/* CRT Screen Effect */
.crt-screen {
    position: relative;
    min-height: 100vh;
    background: #FFFFFF;
    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,
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: 2px outset #E0E0E0;
    background: #E8E8E8;
    margin-bottom: 30px;
    position: relative;
    border-radius: 16px;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.8),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 20px;
    overflow: visible;
    z-index: 100;
}


.header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.header-right {
    display: flex;
    gap: 10px;
    align-items: center;
    position: relative;
    z-index: 102;
    overflow: visible;
}

header h1,
.main-header h1 {
    margin-bottom: 5px;
}

header .subtitle,
.main-header .subtitle {
    margin: 0;
}

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

.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;
}

@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 #E0E0E0;
    padding: 24px;
    background: #E8E8E8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.8),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


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

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

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

/* 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 #E0E0E0;
    background: #E8E8E8;
    padding: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.8),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.08);
}

.home-gallery-item:hover {
    background: #F0F0F0;
    border: 2px outset #E8E8E8;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.9),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.home-gallery-item:active {
    border: 2px inset #E0E0E0;
    background: #E0E0E0;
    transform: translateY(0);
    box-shadow: 
        inset 1px 1px 0px rgba(0, 0, 0, 0.15),
        inset -1px -1px 0px rgba(255, 255, 255, 0.6),
        inset 2px 2px 0px rgba(0, 0, 0, 0.1),
        inset -2px -2px 0px rgba(255, 255, 255, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.home-gallery-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: #F5F5F5;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.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;
    border-radius: 8px;
}

.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;
    border-radius: 8px;
}

.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;
    position: relative;
    z-index: 1;
    transition: none;
}

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

/* Buttons */
.retro-button {
    padding: 10px 24px;
    border: 2px outset #E0E0E0;
    background: #E8E8E8;
    color: #000000;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-shadow: none;
    position: relative;
    border-radius: 12px;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.8),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.6),
        0 2px 6px rgba(0, 0, 0, 0.08);
    text-transform: none;
    min-width: 100px;
    min-height: 36px;
}

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

.retro-button:hover {
    border: 2px outset #E8E8E8;
    background: #F0F0F0;
    color: #000000;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.9),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.retro-button:active {
    border: 2px inset #E0E0E0;
    background: #E0E0E0;
    transform: translateY(0);
    box-shadow: 
        inset 1px 1px 0px rgba(0, 0, 0, 0.15),
        inset -1px -1px 0px rgba(255, 255, 255, 0.6),
        inset 2px 2px 0px rgba(0, 0, 0, 0.1),
        inset -2px -2px 0px rgba(255, 255, 255, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.1);
}

/* 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;
}

/* About & Contact Boxes */
.about-box,
.contact-box,
.display-box {
    border: 2px outset #E0E0E0;
    padding: 28px;
    background: #E8E8E8;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.8),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


.contact-box > *,
.display-box > * {
    position: relative;
    z-index: 1;
}

.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: 10px 12px;
    border: 2px inset #D0D0D0;
    background: #FFFFFF;
    color: var(--text-color);
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    font-size: 11px;
    outline: none;
    transition: all 0.2s ease;
    border-radius: 8px;
    box-shadow: 
        inset 1px 1px 0px rgba(0, 0, 0, 0.1),
        inset -1px -1px 0px rgba(255, 255, 255, 0.6);
}

.retro-input:focus {
    border: 2px inset #B0B0B0;
    background: #FAFAFA;
    box-shadow: 
        inset 1px 1px 0px rgba(0, 0, 0, 0.15),
        inset -1px -1px 0px rgba(255, 255, 255, 0.7),
        0 0 0 2px rgba(0, 0, 0, 0.05);
}

.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: 20px 24px;
    margin-top: 40px;
    border: 2px outset #E0E0E0;
    font-size: 11px;
    color: var(--text-color);
    opacity: 1;
    background: #E8E8E8;
    border-radius: 16px;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.8),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}


footer > * {
    position: relative;
    z-index: 1;
}

.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: 1024px) {
    .content {
        max-width: 100%;
        padding: 0 10px;
    }
    
    header,
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .header-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .windows-folder-container {
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 1.2;
        word-spacing: 0px;
        text-shadow: none;
    }
    
    header,
    .main-header {
        padding: 16px;
        margin-bottom: 20px;
    }
    
    .header-left h1 {
        font-size: 20px;
    }
    
    .header-left .subtitle {
        font-size: 10px;
    }
    
    .header-nav .windows-folder {
        padding: 4px 6px;
    }
    
    .header-nav .folder-icon {
        width: 32px;
        height: 32px;
    }
    
    .header-nav .folder-label {
        font-size: 10px;
        max-width: 70px;
    }
    
    .dropdown-menu {
        min-width: 120px;
        font-size: 10px;
    }
    
    h3 {
        text-shadow: none;
    }
    
    h4 {
        text-shadow: none;
    }
    
    .subtitle {
        font-size: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .home-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .retro-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
    
    .welcome-box,
    .contact-box,
    .display-box {
        padding: 16px;
        margin: 0 10px;
    }
    
    .crt-screen {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    header,
    .main-header {
        padding: 12px;
    }
    
    .header-left h1 {
        font-size: 16px;
    }
    
    .header-nav .folder-icon {
        width: 28px;
        height: 28px;
    }
    
    .header-nav .folder-label {
        font-size: 9px;
        max-width: 60px;
    }
    
    .windows-folder {
        padding: 4px;
    }
    
    .folder-icon {
        width: 40px;
        height: 40px;
    }
    
    .home-gallery-item {
        padding: 8px;
    }
    
    .artwork-item {
        padding: 8px;
    }
}

/* Windows 95 Folder Style */
.windows-folder-container {
    margin: 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
    z-index: 102;
    overflow: visible;
}

.windows-folder-container.header-nav {
    flex: 1;
    justify-content: flex-end;
}

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

.header-nav .windows-folder {
    padding: 6px 8px;
}

.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;
}

.header-nav .folder-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 3px;
}

.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;
}

/* Dropdown Menu Styles */
.dropdown-folder {
    position: relative;
    z-index: 101;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 5px;
    background: #E8E8E8;
    border: 2px outset #E0E0E0;
    border-radius: 8px;
    min-width: 150px;
    z-index: 10000;
    box-shadow: 
        inset -1px -1px 0px rgba(0, 0, 0, 0.1),
        inset 1px 1px 0px rgba(255, 255, 255, 0.8),
        inset -2px -2px 0px rgba(0, 0, 0, 0.05),
        inset 2px 2px 0px rgba(255, 255, 255, 0.6),
        0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 4px;
    overflow: visible;
}

.header-nav .dropdown-menu {
    top: calc(100% + 5px);
}

.dropdown-folder.active .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 8px 12px;
    font-size: 11px;
    color: #000;
    cursor: pointer;
    border-radius: 4px;
    text-decoration: none;
    display: block;
    font-family: 'MS Sans Serif', 'Arial', sans-serif;
    transition: background 0.2s ease;
}

.dropdown-item:hover {
    background: #F0F0F0;
}

.dropdown-item:active {
    background: #E0E0E0;
}

.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;
}

