body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e0e0e0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
}

.search-bar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.search-bar {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.search-bar input {
    background: transparent;
    border: none;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    padding: 10px;
    flex-grow: 1;
    outline: none;
}

.search-bar button {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #1d4ed8;
}

.tools-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tool-btn {
    background: #1f2937;
    color: #9ca3af;
    border: 1px solid #374151;
    border-radius: 5px;
    padding: 8px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.tool-btn:hover {
    background: #374151;
    color: #fff;
}

.tool-btn.active {
    background: #10b981;
    color: #fff;
    border-color: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.terminal-window {
    background: #0f1115;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 500px;
    border: 1px solid #333;
}

.terminal-header {
    background: #1a1c23;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #333;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    color: #666;
    font-size: 12px;
}

.terminal-body {
    padding: 20px;
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    white-space: pre-wrap;
    overflow-y: auto;
    max-height: 600px;
}

.prompt {
    color: #10b981;
    font-weight: bold;
}

.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.output-section {
    margin-bottom: 20px;
}

.output-header {
    color: #fbbf24;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 5px;
}

.output-info {
    color: #3b82f6;
}

.output-success {
    color: #10b981;
}

.output-error {
    color: #ef4444;
}

.footer {
    margin-top: auto;
    padding-top: 20px;
    color: #6b7280;
    font-size: 12px;
    text-align: center;
}
