@font-face {
    font-family: 'IBM Plex Mono';
    src: url('../fonts/IBMPlexMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('../fonts/IBMPlexMono-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

body {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    background-color: #1a0f00;
    color: #ffbf00;
    line-height: 1.4;
    padding: 20px;
    font-size: 16px;
}

.terminal {
    max-width: none;
    width: 100%;
    margin: 0;
    background-color: #1a0f00;
    padding: 20px;
    min-height: 90vh;
}

.terminal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 191, 0, 0.03) 2px,
            rgba(255, 191, 0, 0.03) 4px
        );
    pointer-events: none;
}

.cursor {
    color: #ffbf00;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

h1, h2, h3, h4, h5, h6 {
    color: #ffbf00;
    text-transform: uppercase;
    margin-bottom: 10px;
    border-bottom: 1px solid #ffbf00;
    padding-bottom: 5px;
}

h1 {
    font-size: 26px;
    text-align: left;
    margin-bottom: 30px;
}

h2 {
    font-size: 20px;
}

h3 {
    font-size: 18px;
}

a {
    color: #ffbf00;
    text-decoration: underline;
}

a:hover {
    background-color: #ffbf00;
    color: #000000;
}

.menu {
    border: 1px solid #ffbf00;
    padding: 10px;
    margin: 20px 0;
}

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

.menu-item:hover {
    background-color: #ffbf00;
    color: #000000;
}

.content {
    margin: 20px 0;
}

.article-meta {
    border-top: 1px solid #ffbf00;
    border-bottom: 1px solid #ffbf00;
    padding: 10px 0;
    margin: 20px 0;
    text-align: center;
}

.prompt {
    color: #ffbf00;
}

.prompt::before {
    content: "> ";
}

pre, code {
    background-color: #1a1a1a;
    border: 1px solid #ffbf00;
    padding: 10px;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    overflow-x: auto;
}

code {
    padding: 2px 4px;
    display: inline;
}

blockquote {
    border-left: 3px solid #ffbf00;
    padding-left: 10px;
    margin: 10px 0;
    font-style: italic;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ffbf00;
}

ul, ol {
    margin-left: 20px;
    margin-bottom: 10px;
}

li {
    margin-bottom: 5px;
}

.status-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffbf00;
    color: #000000;
    padding: 5px 20px;
    font-size: 14px;
    text-align: center;
}

/* Shell-like interface styles */
.shell-session {
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
}

.command-history {
    margin-bottom: 30px;
}

.command-line {
    margin-bottom: 5px;
}

.prompt-user {
    color: #ffbf00;
    font-weight: bold;
}

.command {
    color: #ffbf00;
    margin-left: 5px;
}

.neofetch-output, .help-output, .man-output {
    margin: 10px 0 20px 0;
    color: #ffbf00;
    overflow: hidden;
}


.neofetch-output pre, .help-output pre, .man-output pre {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
}

.current-prompt {
    margin-top: 20px;
    font-weight: bold;
}

.recent-activity {
    margin-top: 40px;
    border-top: 1px solid #ffbf00;
    padding-top: 20px;
}

.section-header {
    color: #ffbf00;
    margin-bottom: 15px;
    font-weight: bold;
}

.activity-item {
    margin-bottom: 8px;
    line-height: 1.4;
}

.timestamp {
    color: #cc9900;
    font-size: 14px;
}

.activity-item a {
    color: #ffbf00;
    text-decoration: none;
}

.activity-item a:hover {
    background-color: #ffbf00;
    color: #1a0f00;
}

.menu-link {
    color: #ffbf00 !important;
    text-decoration: none !important;
    font-weight: bold;
}

.menu-link:hover {
    background-color: #ffbf00 !important;
    color: #1a0f00 !important;
}

@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 12px;
    }
    
    .terminal {
        padding: 10px;
        border: 1px solid #ffbf00;
    }
    
    h1 {
        font-size: 18px;
    }
}