body {
    font-family: "Tahoma", "Verdana", sans-serif; /* Windows 95-like font */
    text-align: center;
    background-color: #fdfd96; /* Light yellow for the notepad background */
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px); /* Gray horizontal lines */
    background-size: 100% 30px; /* Gray lines spaced 30px apart */
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    background-color: #fdfd96; /* Match the yellow background */
    color: #333; /* Darker text for contrast */
    padding: 20px 0;
    border-bottom: 2px solid #ccc; /* Optional: Add a border for a clean header separation */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Add spacing between the logo and title */
}

header img {
    width: 50px; /* Adjust the size of the Clippy logo */
    height: auto;
}

/* Windows 95-style taskbar navigation */
nav {
    background-color: #c0c0c0; /* Classic Windows 95 grey */
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    padding: 5px;
    border-top: 2px solid white;
    border-left: 2px solid white;
    border-bottom: 2px solid #808080;
    border-right: 2px solid #808080;
    box-shadow: inset 1px 1px 0px #ffffff, inset -1px -1px 0px #808080; /* Inner shadow for depth */
}

nav a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    padding: 5px 15px;
    margin: 2px;
    background: #c0c0c0; /* Match taskbar background */
    border: 2px outset white; /* 3D effect */
    cursor: pointer;
    text-align: center;
    box-shadow: 1px 1px 0px #808080; /* Subtle shadow for depth */
    transition: all 0.2s ease;
}

nav a:hover {
    background: #d9d9d9; /* Slightly lighter grey on hover */
}

nav a:active {
    border: 2px inset white; /* Inset border for pressed effect */
    background: #a9a9a9; /* Darker grey when pressed */
    box-shadow: none; /* Remove shadow when pressed */
}

/* Active tab styling */
nav a.active {
    border: 2px inset white; /* Inset border for active tab */
    background: #a9a9a9; /* Darker grey for active tab */
    box-shadow: none; /* Remove shadow for active tab */
}

/* Content styling */
.clippy-image {
    margin: 20px auto;
    width: 300px;
}

.content {
    padding: 20px;
}

/* Updated Windows 95-style buttons */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 15px;
    background: #c0c0c0; /* Classic Windows 95 grey */
    border: 2px outset white; /* 3D effect */
    color: black;
    text-decoration: none;
    font-size: 14px;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    cursor: pointer;
    text-align: center;
    box-shadow: 1px 1px 0px #808080; /* Subtle shadow for depth */
}

.cta-button:hover {
    background: #d9d9d9; /* Slightly lighter grey on hover */
}

.cta-button:active {
    border: 2px inset white; /* Inset border for pressed effect */
    background: #a9a9a9; /* Darker grey when pressed */
    box-shadow: none; /* Remove shadow when pressed */
}

footer {
    margin-top: 30px;
    padding: 10px 0;
    background-color: #fdfd96; /* Match the yellow background */
    color: black;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    nav {
        flex-direction: column; /* Stack navigation links vertically on smaller screens */
    }
    nav a {
        font-size: 16px; /* Reduce font size for smaller screens */
        padding: 8px 15px;
    }
    .clippy-image {
        width: 120px; /* Reduce image size for smaller screens */
    }
    .cta-button {
        font-size: 14px; /* Adjust button font size */
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 20px; /* Reduce header font size for very small screens */
    }
    nav a {
        font-size: 14px; /* Further reduce font size for very small screens */
        padding: 6px 10px;
    }
    .clippy-image {
        width: 100px; /* Further reduce image size */
    }
    .cta-button {
        font-size: 12px; /* Adjust button font size */
        padding: 6px 10px;
    }
}

/* Dexscreener Embed Styles */
#dexscreener-embed {
    position: relative;
    width: 100%;
    padding-bottom: 125%;
}

@media (min-width: 1400px) {
    #dexscreener-embed {
        padding-bottom: 65%;
    }
}

#dexscreener-embed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0;
}

/* New styles for Windows 95-like windows */
.window-95 {
    width: 80%; /* Adjust width as needed */
    max-width: 600px; /* Optional: Set a max width */
    margin: 20px auto; /* Center the window */
    border: 2px solid;
    border-color: #dfdfdf #000 #000 #dfdfdf; /* Beveled border for 3D effect */
    background-color: #c0c0c0; /* Light gray background */
    box-shadow: 2px 2px 5px rgba(0,0,0,0.5); /* Shadow for depth */
    font-family: 'MS Sans Serif', Arial, sans-serif; /* Match nav and buttons */
}

.title-bar {
    background-color: #000080; /* Navy blue, typical for active windows */
    color: #fff; /* White text */
    padding: 2px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
}

.close-button {
    background-color: #c0c0c0; /* Light gray */
    border-top: 1px solid #fff; /* Top/left borders for raised effect */
    border-left: 1px solid #fff;
    border-bottom: 1px solid #000; /* Bottom/right borders for depth */
    border-right: 1px solid #000;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    cursor: pointer;
}

.window-content {
    background-color: #fff; /* White background for content */
    padding: 10px;
    border-top: 1px solid #000; /* Separates content from title bar */
}

.window-content ul {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.window-content li {
    padding: 5px;
    border-bottom: 1px solid #ccc; /* Subtle line between items */
}