body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #1a1a1a;
    color: #fff;
}

/* Sidebars */
.terminal-left, .agi-system-right {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 250px;
    padding: 20px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    z-index: 2;
}

.terminal-left {
    left: 0;
    background: #000;
    color: #0f0;
    border-right: 2px solid #0f0;
}

.agi-system-right {
    right: 0;
    background: #111;
    color: #f00;
}

/* Sidebar Headers */
.terminal-left h2, .agi-system-right h2 {
    font-family: 'Press Start 2P', cursive;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Terminal Input */
#input {
    width: 100%;
    background: #000;
    color: #0f0;
    border: none;
    outline: none;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

/* Output Areas */
#output, #agi-output {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Main Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.logo {
    font-family: 'Press Start 2P', cursive;
    font-size: 2rem;
}

.tagline {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal-left, .agi-system-right {
        display: none;
    }
}