body {
    margin-left: 200px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 200px;
    background: #15110d;
    color: white;
    padding: 20px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    box-sizing: border-box;
    /* border: 2px solid red; */
    z-index: 50;
}

.nav-links {
    list-style: none;
    padding: 12px 8px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

a.nav-item {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 14px;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-item[aria-current="page"] {
    color: #FFD166;
    font-weight: 700;
    border-left: 4px solid #FFD166;
    border-radius: 0 6px 6px 0;
    padding-left: 10px;
    background: rgba(255, 209, 102, 0.06);
}

.nav-toggle {
    display: none;
}

@media (max-width: 768px) {

    body {
    margin-left: 0;
    padding-top: 60px
}

    .main-nav {
        background: #15110d;
        width: auto;
        height: auto;
        border-right: none;
    }

    .nav-links {
        display: none;
        color: white;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
        min-width: 48px;
        min-height: 48px;
        font-size: 1.5rem;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }
}