@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
.command-card {
    transition: all 0.3s ease;
}
.command-card:hover {
    transform: translateY(-4px);
}
.tag-button {
    transition: all 0.2s ease;
}
.tag-button:hover {
    transform: scale(1.05);
}
.tag-button.active {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    color: white;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal.show {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    margin: auto;
    padding: 0;
    border: 1px solid #334155;
    border-radius: 16px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}
.modal.show .modal-content {
    transform: scale(1);
}
.close-modal {
    cursor: pointer;
    transition: all 0.2s ease;
}
.close-modal:hover {
    transform: rotate(90deg);
}