
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #000000;
    --accent: #a78bfa;
    --light: #f8fafc;
}

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

body {
    font-family: 'JetBrains Mono', monospace;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #000000 100%);
    color: var(--light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Terminal Styles */
.terminal {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 6px;
    padding: 16px;
    height: 250px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.4;
}

.terminal-line {
    margin-bottom: 6px;
}

.prompt {
    color: var(--primary);
    font-weight: bold;
}

.command {
    color: var(--light);
}

.response {
    color: var(--accent);
}
/* Progress Bars */
.progress-bar {
    width: 0%;
    transition: width 0.5s ease;
}

/* Enhanced Master Execute Button */
.master-execute-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 50px;
    padding: 20px 60px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.master-execute-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
}

.master-execute-btn:active {
    transform: scale(0.98);
}

.master-execute-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.master-execute-btn:hover::before {
    left: 100%;
}
/* Master Execute Button */
.master-execute-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 40px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.master-execute-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 25px rgba(139, 92, 246, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.6);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(139, 92, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(139, 92, 246, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal {
        height: 180px;
        font-size: 11px;
        padding: 12px;
    }
    
    .quick-action-btn {
        padding: 12px;
    }
    
    .quick-action-btn i {
        width: 18px;
        height: 18px;
    }
    
    .master-execute-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Scrollbar Styling */
.terminal::-webkit-scrollbar {
    width: 4px;
}

.terminal::-webkit-scrollbar-track {
    background: rgba(139, 92, 246, 0.08);
}

.terminal::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

/* Enhanced Grid Layouts */
.grid {
    display: grid;
}

/* Improved Button States */
button:active {
    transform: scale(0.98);
}

/* Better Mobile Touch Targets */
@media (max-width: 480px) {
    .quick-action-btn {
        padding: 14px 10px;
    }
    
    .quick-action-btn span {
        font-size: 10px;
    }
}

/* Optimized Container */
.container {
    width: 100%;
    margin: 0 auto;
}

/* Improved Typography */
.text-sm {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

/* Enhanced Border Effects */
.border-violet-500\/30 {
    border-color: rgba(139, 92, 246, 0.3);
}

/* Better Color Contrast */
.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}
