/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    background: #1a1c1e;
    color: #e4e4e4;
    font-family: "Manifold CF", monospace;
    line-height: 1.6;
    padding: 2rem;
}

/* Terminal Container */
.terminal {
    background: #232527;
    border: 1px solid #2d3436;
    border-radius: 6px;
    margin: 0 auto;
    max-width: 900px;
    box-shadow: 0 4px 6px #000000;
}

/* Terminal Header */
.terminal-header {
    background: #2d3436;
    padding: 8px 16px;
    border-bottom: 1px solid #2d3436;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.terminal-title {
    font-size: 14px;
    color: #8b8d8f;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8b8d8f;
}

/* Terminal Content */
.terminal-content {
    padding: 32px;
}

.entry {
    margin-bottom: 32px;
}

.timestamp {
    color: #00b894;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Typography */
h2, h3 {
    color: #00b894;
    margin: 24px 0 16px 0;
}

/* Lists */
ul {
    list-style: none;
    padding-left: 16px;
}

li {
    margin-bottom: 8px;
    position: relative;
    color: #8b8d8f;
}

li:before {
    content: ">";
    color: #00b894;
    position: absolute;
    left: -16px;
}

/* Media Queries */
@media screen and (max-width: 768px) {
    body {
        padding: 16px;
    }
    
    .terminal-content {
        padding: 16px;
    }
}