/* Slow Social - 90s Website Stylesheet */
/* Best viewed in Netscape Navigator 3.0 */

@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

body {
    background-color: #008080;
    margin: 0;
    padding: 0;
    font-family: 'Comic Sans MS', 'VT323', cursive, sans-serif;
    cursor: default;
}

/* Win95 Window Chrome */
.win95-window {
    background-color: #C0C0C0;
    border-top: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    box-shadow: inset 1px 1px 0 #DFDFDF, 1px 1px 0 #000000;
}

.title-bar {
    background: linear-gradient(90deg, #000080, #1084D0);
    padding: 3px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title-text {
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: bold;
    color: #FFFFFF;
}

.title-buttons {
    display: flex;
    gap: 2px;
}

.title-btn {
    display: inline-block;
    width: 16px;
    height: 14px;
    background-color: #C0C0C0;
    border-top: 1px solid #FFFFFF;
    border-left: 1px solid #FFFFFF;
    border-right: 1px solid #808080;
    border-bottom: 1px solid #808080;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    text-align: center;
    line-height: 14px;
    cursor: pointer;
}

.menu-bar {
    background-color: #C0C0C0;
    padding: 2px 4px;
    border-bottom: 1px solid #808080;
    font-family: 'Courier New', monospace;
    font-size: 12px;
}

.menu-item {
    padding: 0 8px;
    cursor: pointer;
}

.menu-item:hover {
    background-color: #000080;
    color: #FFFFFF;
}

.address-bar {
    background-color: #C0C0C0;
    padding: 3px 6px;
    border-bottom: 1px solid #808080;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.address-text {
    background-color: #FFFFFF;
    padding: 1px 4px;
    border: 1px inset #808080;
    font-size: 11px;
}

.window-body {
    background-color: #FFFFFF;
    padding: 0;
    min-height: 400px;
    background-image: url("data:image/svg+xml,%3Csvg width='4' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='4' height='4' fill='%23FFFFFF'/%3E%3C/svg%3E");
}

.status-bar {
    background-color: #C0C0C0;
    padding: 2px 6px;
    border-top: 1px solid #808080;
    display: flex;
    justify-content: space-between;
    font-family: 'Courier New', monospace;
    font-size: 11px;
}

.status-text {
    border: 1px inset #808080;
    padding: 1px 6px;
    flex: 1;
}

.status-zone {
    border: 1px inset #808080;
    padding: 1px 6px;
    margin-left: 4px;
}

/* Main Content Styles */
.main-title {
    font-family: 'VT323', 'Courier New', monospace;
    font-size: 36px;
    color: #000080;
    text-shadow: 2px 2px #C0C0C0;
    margin: 10px 0;
    letter-spacing: 3px;
}

.subtitle {
    font-family: 'Comic Sans MS', cursive;
    font-size: 16px;
    color: #808080;
    margin: 5px 0;
}

.tagline {
    font-family: 'Comic Sans MS', cursive;
    font-size: 14px;
}

/* Marquee */
.marquee-banner {
    background-color: #000080;
    color: #FFFF00;
    padding: 6px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #808080;
}

/* Download Box */
.download-box {
    border-color: #808080;
}

.download-btn {
    text-decoration: none;
    color: #000000;
}

.win95-button {
    border-top: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    cursor: pointer;
}

.win95-button:hover {
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
}

.win95-button:active {
    border-top: 2px solid #808080;
    border-left: 2px solid #808080;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    background-color: #C0C0C0;
}

/* Links - 90s style */
a:link {
    color: #0000FF;
    text-decoration: underline;
}

a:visited {
    color: #800080;
    text-decoration: underline;
}

a:hover {
    color: #FF0000;
    text-decoration: underline;
}

/* Blink tag polyfill */
@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

blink {
    animation: blink 1s step-end infinite;
}

/* Scrollbar styling for that authentic feel */
::-webkit-scrollbar {
    width: 16px;
    background-color: #C0C0C0;
}

::-webkit-scrollbar-thumb {
    background-color: #C0C0C0;
    border-top: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
}

::-webkit-scrollbar-track {
    background: repeating-conic-gradient(#C0C0C0 0% 25%, #FFFFFF 0% 50%) 50% / 2px 2px;
}

/* Responsive - but keeping it janky */
@media (max-width: 660px) {
    table[width="640"] {
        width: 100% !important;
    }

    .main-title {
        font-size: 24px !important;
    }

    .marquee-banner {
        font-size: 11px;
    }
}
