/* Terminal Theme CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    background-color: #0a0a0a;
    color: #00ff00;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.terminal {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #000;
    border: 2px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.terminal-header {
    background: linear-gradient(90deg, #001100 0%, #002200 100%);
    padding: 10px 20px;
    border-bottom: 1px solid #00ff00;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-header::before {
    content: "●";
    color: #ff0000;
}

.terminal-header::after {
    content: "●";
    color: #ffff00;
}

.terminal-content {
    padding: 30px;
}

.prompt {
    color: #00ff00;
    margin-bottom: 10px;
}

.prompt::before {
    content: "$ ";
    color: #ffff00;
}

.title-section {
    margin: 10px 0 30px 0;
}

.intro {
    margin: 30px 0;
    padding: 15px;
    border-left: 3px solid #00ff00;
    padding-left: 20px;
    color: #aaffaa;
}

.section-header {
    margin: 40px 0 20px;
    font-size: 16px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.tool-card {
    background-color: #001100;
    border: 1px solid #00ff00;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff00, transparent);
    transition: left 0.5s ease;
}

.tool-card:hover::before {
    left: 100%;
}

.tool-card:hover {
    background-color: #002200;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
}

.tool-name {
    color: #ffff00;
    font-size: 18px;
    margin-bottom: 10px;
}

.tool-name::before {
    content: "> ";
    color: #00ff00;
}

.tool-description {
    color: #aaaaaa;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    border-top: 1px solid #00ff00;
    color: #888;
    font-size: 12px;
}

.status-bar {
    background-color: #001100;
    padding: 10px 20px;
    border-top: 1px solid #00ff00;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #00ff00;
}

.loading-text {
    color: #00ff00;
    display: none;
}

.spinner {
    display: inline-block;
    margin-left: 5px;
    font-family: 'Courier New', monospace;
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .title {
        font-size: 24px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
    }
}