@import url('/fonts.css');
* {
    box-sizing: border-box;
}

body {
    font-family: 'Space Mono', monospace;
    background:  #000f03;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
    position: relative;
}


.sidebar {
    width: 270px;
    display: flex;
    flex-direction: column;
    border-right: 1px dashed #8b4513;
    position: relative;
    z-index: 2;
}

.sidebar-header {
    padding: 10px;
    border-bottom: 1px solid #8b4513;
    flex-shrink: 0;
    text-align: center;
}

.sidebar-menu {
    flex: 1;
    overflow-y: auto;
    padding: 7px;
}

.sidebar-footer {
    padding: 7px;
    border-top: 1px solid #8b4513;
    text-align: center;
    flex-shrink: 0;
}

.sidebar-footer p {
    color: #8b4513;
    font-size: 0.8em;
    margin: 0;
}

.sidebar-header h2 {
    color: #d4a574;
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 3px;
}



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

.sidebar li {
    margin-bottom: 5px;
}

.sidebar a {
    color: #d4a574;
    text-decoration: none;
    display: block;
    padding: 4px 8px;
    border: 1px solid #8b4513;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    font-size: 0.85em;
    letter-spacing: 1px;
}

.sidebar a:hover {
    background-color: rgba(201, 156, 92, 0.08);
    border-color: #d4a574;
    transform: translateX(5px);
}

.sidebar a:hover::before {
    left: 100%;
}

/* Menu category styling */
.menu-category {
    margin-bottom: 5px;
}

.category-title {
    color: #ff8c00;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9em;
    margin: 7px 0 10px 0;
    padding: 3px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #8b4513;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-items li {
    margin-bottom: 5px;
}

.content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.content-header {
    padding: 10px;
    border-bottom: 1px solid #8b4513;
    flex-shrink: 0;
    text-align: right;
}

.content-header h1 {
    color: #d4a574;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4em;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    
}

.content {
    flex: 1;
    padding: 7px 20px;
    overflow-y: auto;
    position: relative;
}

.content-footer {
    padding: 7px;
    border-top: 1px solid #8b4513;
    text-align: right;
    flex-shrink: 0;
}

.content-footer p {
    color: #8b4513;
    font-size: 0.8em;
    margin: 0;
}

.content h1 {
    color: #d4a574;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid #8b4513;
    padding-bottom: 15px;
}

.content h2 {
    color: #ff8c00;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1em;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border-left: 4px solid #8b4513;
    padding-left: 15px;
}

.content h3 {
    color: #c99c5c;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3em;
    letter-spacing: 1px;
}

.content p {
    line-height: 1.2;
    color: #d4a574;
    font-size: 1em;
}

.content a {
    color: #ff8c00;
    text-decoration: none;
    border-bottom: 1px solid #8b4513;
    transition: all 0.3s;
}

.content a:hover {
    color: #d4a574;
    border-bottom: 1px solid #d4a574;
}

.content pre {
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #8b4513;
    overflow-x: auto;
    overflow-y: auto;
    margin: 20px 0;
    max-width: 100%;
    word-wrap: break-word;
    white-space: pre-wrap;
}

.content code {
    background-color: rgba(201, 156, 92, 0.08);
    padding: 0px 3px;
    border-radius: 3px;
    color: #d4a574;
    border: 1px solid rgba(139, 69, 19, 0.4);
    font-family: 'Space Mono', monospace;
}

.content pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
}

.content blockquote {
    border-left: 4px solid #8b4513;
    padding-left: 20px;
    margin-left: 0;
    margin-right: 0;
    color: #ff8c00;
    font-style: italic;
    background: rgba(139, 69, 19, 0.08);
    padding: 15px 15px 15px 20px;
    border-radius: 3px;
}

.content ul, .content ol {
    color: #d4a574;
    line-height: 1.8;
}

.content li {
    margin-bottom: 8px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(201, 156, 92, 0.05);
}

::-webkit-scrollbar-thumb {
    background: #8b4513;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c99c5c;
}
