        :root {
            --bg-color: #f9f9f9;
            --text-color: #4f4f4f;
            --heading-color: #222;
            --link-color: #0d8dd4;
            --link-hover: #FF607B;
            --border-color: #eaeaea;
            --sidebar-width: 180px;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        .page-container {
    display: flex;
    position: relative;
    min-height: 100vh;
}


        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 20px 40px;
            width: calc(100% - var(--sidebar-width));
        }

.sidebar {
    position: sticky;
    top: 20px;
    width: var(--sidebar-width);
    padding: 20px;
    margin-top: 100px;
    /* Change height from fit-content to a fixed height with max-height */
    
    border-left: 1px solid var(--border-color);
    /* Add overflow properties for scrolling */
    overflow-y: auto;
    overflow-x: hidden;
    /* Improve scrollbar appearance */
    scrollbar-width: none;
    scrollbar-color: var(--border-color) transparent;
}

/* Add custom scrollbar styling for WebKit browsers (Chrome, Safari, etc.) */
.sidebar::-webkit-scrollbar {
    width: 0 px;
}

.sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 0px;
}


        .sidebar h4 {
            margin-top: 0;
            margin-bottom: 15px;
            color: var(--heading-color);
        }

        .sidebar ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .sidebar li {
            padding: 4px 0;
            font-size: 0.9em;
        }

        .sidebar li:before {
            content: none;
        }

        img {
            max-width: 400px;
        }

        h2 {
            color: var(--heading-color);
        }


        .subcat {
            color: #7b7b7b;
            margin-bottom: 10px;
            padding-top: 10px;
            font-weight: normal;

        }

        .discord {
            font-style: italic;
            color: gray;
            padding-top: 5px;
        }

        h1 {
            margin-bottom: 0px;
            font-size: 2.5rem;
            background: linear-gradient(90deg, hsla(10, 89%, 70%, 1) 0%, hsla(350, 100%, 69%, 1) 100%);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
                display:inline-flex;
        }

        h2 {
            margin-top: 30px;
            margin-bottom: 15px;
            border-bottom: none;
            font-size: 1.5rem;
            scroll-margin-top: 20px;
        }

        .subtitle  {
            color: #7b7b7b;
            margin-top: 0px;
            color: #7b7b7b;
            padding-top: 10px;
        }

        .separator {
            height: 1px;
            background-color: var(--border-color);
            margin: 30px 0;
        }

        ul {
            list-style-type: none;
            padding: 0;
        }

        ul li {
            padding: 5px 0;
            border-bottom: none;
            margin-bottom: 5px;
          
            align-items: baseline;
        }

        ul li::before {
            content: "•";
            margin-right: 10px;
            color: slategray;
        }

        .star::before {
            content: "⭐️" !important;
        }

        .rain::before {
            content: "" !important;
            background-image: url('img/rain.png');
            background-size: 16px 16px;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 10px;
            vertical-align: text-bottom;
            top: 0px; /* Adjust this value as needed */
            position: relative;
        }

        .rain2::before {
            content: "" !important;
            background-image: url('img/rain2.png');
            background-size: 16px 16px;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 10px;
            vertical-align: text-bottom;
            position: relative;
            top: 0px;
        }

        .wiz::before {
            content: "" !important;
            background-image: url('img/wiz.png');
            background-size: 16px 16px;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 10px;
            vertical-align: text-bottom;
            position: relative;
            top: 0px;
        }

        .zi8g::before {
            content: "" !important;
            background-image: url('img/zi8g.png');
            background-size: 16px 16px;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 10px;
            vertical-align: text-bottom;
            position: relative;
            top: 0px;
        }

        .peter::before {
            content: "" !important;
            background-image: url('img/peter.png');
            background-size: 16px 16px;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 10px;
            vertical-align: text-bottom;
            position: relative;
            top: 0px;
        }

        .chic::before {
            content: "" !important;
            background-image: url('img/chic.png');
            background-size: 16px 16px;
            background-repeat: no-repeat;
            background-position: center;
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-right: 10px;
            vertical-align: text-bottom;
            position: relative;
            top: 0px;
        }
        
        a {
            color: var(--link-color);
            text-decoration: none;
            transition: color 0.2s;
        }

        a:hover {
            color: var(--link-hover);
            text-decoration: underline;
        }

        .footer {
            text-align: center;
            padding: 10px;
            margin-top: 50px;
            border-top: 1px solid var(--border-color);
            font-size: 0.9rem;
            color: slategray;
        }

/* Add these styles to your existing CSS */

/* Hide mobile nav by default */
/* Adjust these styles for mobile navigation */

/* Hide mobile nav by default */
.mobile-nav {
    display: none;
}


.separator-mob {
    display: none;
}

/* Show desktop nav by default */
.desktop-nav {
    display: block;
}

@media (max-width: 1000px) {
    .page-container {
        flex-direction: column;
    }
    
        .container {
        padding: 20px;
        width: 90%;
    }

    .mobile-nav {
        display: block;
        margin: 0px 0px;
        width: auto;
        padding-left: 0;
    }
    

    
    .mobile-nav .sidebar {
        position: relative;
        width: auto;
        margin: 0;
        padding-left: 0px;
        padding-top: 0px;
        border-left: none;
    }


    .separator {
        margin: 20px 0px;
    }

    
    /* Hide desktop nav on small screens */
    .desktop-nav {
        display: none;
    }

    h2 {
        margin: 0px;
    }
    
    /* Style mobile sidebar */


    img {
        width: 100%;
    }
}

        @media (prefers-color-scheme: dark) {
            :root {
                --bg-color: #2c2c2c;
                --text-color: #e0e0e0;
                --heading-color: #ffffff;
                --link-color: #26b1ff;
                --link-hover: #f52da5;
                --border-color: #333;
            }

            h3 {
                color: lightgray;
            }
        }